diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 82c7ba73de..899642b43b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,6 +32,13 @@ env: SIGNING_KEY_ID: ${{ secrets.JAVA_SIGNING_KEY_ID }} SIGNING_KEY: ${{ secrets.JAVA_SIGNING_KEY }} SIGNING_PASSWORD: ${{ secrets.JAVA_SIGNING_PASSWORD }} + GOVERSION: 1.21.x + NODEVERSION: 20.x + PYTHONVERSION: "3.11" + DOTNETVERSION: | + 6.0.x + 3.1.301 + JAVAVERSION: "11" GOOGLE_CI_SERVICE_ACCOUNT_EMAIL: pulumi-ci@pulumi-ci-gcp-provider.iam.gserviceaccount.com GOOGLE_CI_WORKLOAD_IDENTITY_POOL: pulumi-ci GOOGLE_CI_WORKLOAD_IDENTITY_PROVIDER: pulumi-ci @@ -46,27 +53,28 @@ jobs: name: prerequisites steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true - - name: Checkout Scripts Repo - uses: actions/checkout@v3 + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 with: - path: ci-scripts - repository: pulumi/scripts - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install + set-env: PROVIDER_VERSION + - name: Install Go + uses: actions/setup-go@v5 with: - skip_dotnet_and_java: "true" + go-version: ${{ env.GOVERSION }} + cache-dependency-path: "**/*.sum" - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl + - name: Install Pulumi CLI + uses: pulumi/actions@v5 - if: github.event_name == 'pull_request' name: Install Schema Tools - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/schema-tools - name: Initialize submodules @@ -80,15 +88,18 @@ jobs: run: >- echo 'SCHEMA_CHANGES<> $GITHUB_ENV - schema-tools compare -p ${{ env.PROVIDER }} -o master -n --local-path=provider/cmd/pulumi-resource-${{ env.PROVIDER }}/schema.json >> $GITHUB_ENV + schema-tools compare -p ${{ env.PROVIDER }} -o ${{ github.event.repository.default_branch }} -n --local-path=provider/cmd/pulumi-resource-${{ env.PROVIDER }}/schema.json >> $GITHUB_ENV echo 'EOF' >> $GITHUB_ENV + env: + GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - if: github.event_name == 'pull_request' name: Comment on PR with Details of Schema Check - uses: thollander/actions-comment-pull-request@v1 + uses: thollander/actions-comment-pull-request@v2 with: message: | ${{ env.SCHEMA_CHANGES }} + comment_tag: schemaCheck GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - if: contains(env.SCHEMA_CHANGES, 'Looking good! No breaking changes found.') && github.actor == 'pulumi-bot' @@ -101,21 +112,28 @@ jobs: - name: Build Provider run: make provider - name: Check worktree clean - run: ./ci-scripts/ci/check-worktree-is-clean + uses: pulumi/git-status-check-action@v1 + with: + allowed-changes: |- + sdk/**/pulumi-plugin.json + sdk/dotnet/Pulumi.*.csproj + sdk/go/**/pulumiUtilities.go + sdk/nodejs/package.json + sdk/python/pyproject.toml - run: git status --porcelain - name: Tar provider binaries run: tar -zcf ${{ github.workspace }}/bin/provider.tar.gz -C ${{ github.workspace}}/bin/ pulumi-resource-${{ env.PROVIDER }} pulumi-gen-${{ env.PROVIDER}} - name: Upload artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: pulumi-${{ env.PROVIDER }}-provider.tar.gz path: ${{ github.workspace }}/bin/provider.tar.gz - name: Test Provider Library run: make test_provider - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - if: failure() && github.event_name == 'push' @@ -140,24 +158,50 @@ jobs: name: build_sdks steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true - - name: Checkout Scripts Repo - uses: actions/checkout@v3 + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 with: - path: ci-scripts - repository: pulumi/scripts - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install + set-env: PROVIDER_VERSION + - name: Install Go + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GOVERSION }} + cache-dependency-path: "**/*.sum" - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl + - name: Install Pulumi CLI + uses: pulumi/actions@v5 + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: ${{ env.NODEVERSION }} + registry-url: https://registry.npmjs.org + - name: Setup DotNet + uses: actions/setup-dotnet@v4 + with: + dotnet-version: ${{ env.DOTNETVERSION }} + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: ${{ env.PYTHONVERSION }} + - name: Setup Java + uses: actions/setup-java@v4 + with: + java-version: ${{ env.JAVAVERSION }} + distribution: temurin + cache: gradle + - name: Setup Gradle + uses: gradle/gradle-build-action@v3 + with: + gradle-version: "7.6" - name: Download provider + tfgen binaries - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: pulumi-${{ env.PROVIDER }}-provider.tar.gz path: ${{ github.workspace }}/bin @@ -174,15 +218,23 @@ jobs: - name: Build SDK run: make build_${{ matrix.language }} - name: Check worktree clean - run: ./ci-scripts/ci/check-worktree-is-clean + uses: pulumi/git-status-check-action@v1 + with: + allowed-changes: |- + sdk/**/pulumi-plugin.json + sdk/dotnet/Pulumi.*.csproj + sdk/go/**/pulumiUtilities.go + sdk/nodejs/package.json + sdk/python/pyproject.toml - run: git status --porcelain - name: Tar SDK folder run: tar -zcf sdk/${{ matrix.language }}.tar.gz -C sdk/${{ matrix.language }} . - name: Upload artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.language }}-sdk.tar.gz path: ${{ github.workspace}}/sdk/${{ matrix.language }}.tar.gz + retention-days: 30 - if: failure() && github.event_name == 'push' name: Notify Slack uses: 8398a7/action-slack@v3 @@ -191,7 +243,7 @@ jobs: fields: repo,commit,author,action status: ${{ job.status }} test: - runs-on: ubuntu-latest + runs-on: pulumi-ubuntu-8core needs: - build_sdks strategy: @@ -209,24 +261,50 @@ jobs: id-token: write steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true - - name: Checkout Scripts Repo - uses: actions/checkout@v3 + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 with: - path: ci-scripts - repository: pulumi/scripts - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install + set-env: PROVIDER_VERSION + - name: Install Go + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GOVERSION }} + cache-dependency-path: "**/*.sum" - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl + - name: Install Pulumi CLI + uses: pulumi/actions@v5 + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: ${{ env.NODEVERSION }} + registry-url: https://registry.npmjs.org + - name: Setup DotNet + uses: actions/setup-dotnet@v4 + with: + dotnet-version: ${{ env.DOTNETVERSION }} + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: ${{ env.PYTHONVERSION }} + - name: Setup Java + uses: actions/setup-java@v4 + with: + java-version: ${{ env.JAVAVERSION }} + distribution: temurin + cache: gradle + - name: Setup Gradle + uses: gradle/gradle-build-action@v3 + with: + gradle-version: "7.6" - name: Download provider + tfgen binaries - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: pulumi-${{ env.PROVIDER }}-provider.tar.gz path: ${{ github.workspace }}/bin @@ -237,7 +315,7 @@ jobs: run: find ${{ github.workspace }} -name "pulumi-*-${{ env.PROVIDER }}" -print -exec chmod +x {} \; - name: Download SDK - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: ${{ matrix.language }}-sdk.tar.gz path: ${{ github.workspace}}/sdk/ @@ -264,13 +342,13 @@ jobs: env.GOOGLE_CI_WORKLOAD_IDENTITY_PROVIDER }} service_account: ${{ env.GOOGLE_CI_SERVICE_ACCOUNT_EMAIL }} - name: Setup gcloud auth - uses: google-github-actions/setup-gcloud@v0 + uses: google-github-actions/setup-gcloud@v2 with: install_components: gke-gcloud-auth-plugin - name: Install gotestfmt uses: GoTestTools/gotestfmt-action@v2 with: - version: v2.4.0 + version: v2.5.0 token: ${{ secrets.GITHUB_TOKEN }} - name: Run tests run: >- @@ -290,21 +368,36 @@ jobs: name: publish steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install - with: - skip_dotnet_and_java: "true" + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 + with: + set-env: PROVIDER_VERSION + - name: Install Go + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GOVERSION }} + cache-dependency-path: "**/*.sum" + - name: Clear GitHub Actions Ubuntu runner disk space + uses: jlumbroso/free-disk-space@v1.3.1 + with: + tool-cache: false + dotnet: false + android: true + haskell: true + swap-storage: true + large-packages: false - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl + - name: Install Pulumi CLI + uses: pulumi/actions@v5 - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@v1 + uses: aws-actions/configure-aws-credentials@v4 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-region: us-east-2 @@ -313,14 +406,12 @@ jobs: role-session-name: ${{ env.PROVIDER }}@githubActions role-external-id: upload-pulumi-release role-to-assume: ${{ secrets.AWS_UPLOAD_ROLE_ARN }} - - name: Set PreRelease Version - run: echo "GORELEASER_CURRENT_TAG=v$(pulumictl get version --language generic)" - >> $GITHUB_ENV - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v2 + uses: goreleaser/goreleaser-action@v5 + env: + GORELEASER_CURRENT_TAG: v${{ steps.version.outputs.version }} with: - args: -p 3 -f .goreleaser.prerelease.yml --rm-dist --skip-validate --timeout - 60m0s + args: -p 3 -f .goreleaser.prerelease.yml --clean --skip=validate --timeout 60m0s version: latest - if: failure() && github.event_name == 'push' name: Notify Slack @@ -335,24 +426,46 @@ jobs: name: publish_sdk steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 + with: + set-env: PROVIDER_VERSION - name: Checkout Scripts Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: ci-scripts repository: pulumi/scripts - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install + - run: echo "ci-scripts" >> .git/info/exclude + - name: Install Go + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GOVERSION }} + cache-dependency-path: "**/*.sum" - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl + - name: Install Pulumi CLI + uses: pulumi/actions@v5 + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: ${{ env.NODEVERSION }} + registry-url: https://registry.npmjs.org + - name: Setup DotNet + uses: actions/setup-dotnet@v4 + with: + dotnet-version: ${{ env.DOTNETVERSION }} + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: ${{ env.PYTHONVERSION }} - name: Download python SDK - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: python-sdk.tar.gz path: ${{ github.workspace}}/sdk/ @@ -360,7 +473,7 @@ jobs: run: tar -zxf ${{github.workspace}}/sdk/python.tar.gz -C ${{github.workspace}}/sdk/python - name: Download dotnet SDK - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: dotnet-sdk.tar.gz path: ${{ github.workspace}}/sdk/ @@ -368,7 +481,7 @@ jobs: run: tar -zxf ${{github.workspace}}/sdk/dotnet.tar.gz -C ${{github.workspace}}/sdk/dotnet - name: Download nodejs SDK - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: nodejs-sdk.tar.gz path: ${{ github.workspace}}/sdk/ @@ -376,14 +489,12 @@ jobs: run: tar -zxf ${{github.workspace}}/sdk/nodejs.tar.gz -C ${{github.workspace}}/sdk/nodejs - name: Install Twine - run: python -m pip install pip twine + run: python -m pip install twine==5.0.0 - name: Publish SDKs run: ./ci-scripts/ci/publish-tfgen-package ${{ github.workspace }} env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - # See https://github.com/pulumi/scripts/pull/138/files - # Possible values: "all", "wheel". - PYPI_PUBLISH_ARTIFACTS: all + PYPI_PUBLISH_ARTIFACTS: all - if: failure() && github.event_name == 'push' name: Notify Slack uses: 8398a7/action-slack@v3 @@ -398,35 +509,47 @@ jobs: name: publish_java_sdk steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true - - name: Checkout Scripts Repo - uses: actions/checkout@v3 + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 with: - path: ci-scripts - repository: pulumi/scripts - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install + set-env: PROVIDER_VERSION + - name: Install Go + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GOVERSION }} + cache-dependency-path: "**/*.sum" - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl + - name: Install Pulumi CLI + uses: pulumi/actions@v5 + - name: Setup Java + uses: actions/setup-java@v4 + with: + java-version: ${{ env.JAVAVERSION }} + distribution: temurin + cache: gradle + - name: Setup Gradle + uses: gradle/gradle-build-action@v3 + with: + gradle-version: "7.6" - name: Download java SDK - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: java-sdk.tar.gz path: ${{ github.workspace}}/sdk/ - name: Uncompress java SDK run: tar -zxf ${{github.workspace}}/sdk/java.tar.gz -C ${{github.workspace}}/sdk/java - - name: Set PACKAGE_VERSION to Env - run: echo "PACKAGE_VERSION=$(pulumictl get version --language generic)" >> - $GITHUB_ENV - name: Publish Java SDK - uses: gradle/gradle-build-action@9b814496b50909128c6a52622b416c5ffa04db49 + uses: gradle/gradle-build-action@v3 + env: + PACKAGE_VERSION: ${{ env.PROVIDER_VERSION }} with: arguments: publishToSonatype closeAndReleaseSonatypeStagingRepository build-root-directory: ./sdk/java diff --git a/.github/workflows/command-dispatch.yml b/.github/workflows/command-dispatch.yml index d7b6ca4bc8..96d4a7870d 100644 --- a/.github/workflows/command-dispatch.yml +++ b/.github/workflows/command-dispatch.yml @@ -24,6 +24,13 @@ env: SIGNING_KEY_ID: ${{ secrets.JAVA_SIGNING_KEY_ID }} SIGNING_KEY: ${{ secrets.JAVA_SIGNING_KEY }} SIGNING_PASSWORD: ${{ secrets.JAVA_SIGNING_PASSWORD }} + GOVERSION: 1.21.x + NODEVERSION: 20.x + PYTHONVERSION: "3.11" + DOTNETVERSION: | + 6.0.x + 3.1.301 + JAVAVERSION: "11" GOOGLE_CI_SERVICE_ACCOUNT_EMAIL: pulumi-ci@pulumi-ci-gcp-provider.iam.gserviceaccount.com GOOGLE_CI_WORKLOAD_IDENTITY_POOL: pulumi-ci GOOGLE_CI_WORKLOAD_IDENTITY_PROVIDER: pulumi-ci @@ -38,7 +45,7 @@ jobs: name: command-dispatch-for-testing steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true - uses: peter-evans/slash-command-dispatch@v2 diff --git a/.github/workflows/nightly-sdk-generation.yml b/.github/workflows/nightly-sdk-generation.yml index 81670907b0..d6df91d90c 100644 --- a/.github/workflows/nightly-sdk-generation.yml +++ b/.github/workflows/nightly-sdk-generation.yml @@ -23,6 +23,13 @@ env: SIGNING_KEY_ID: ${{ secrets.JAVA_SIGNING_KEY_ID }} SIGNING_KEY: ${{ secrets.JAVA_SIGNING_KEY }} SIGNING_PASSWORD: ${{ secrets.JAVA_SIGNING_PASSWORD }} + GOVERSION: 1.21.x + NODEVERSION: 20.x + PYTHONVERSION: "3.11" + DOTNETVERSION: | + 6.0.x + 3.1.301 + JAVAVERSION: "11" GOOGLE_CI_SERVICE_ACCOUNT_EMAIL: pulumi-ci@pulumi-ci-gcp-provider.iam.gserviceaccount.com GOOGLE_CI_WORKLOAD_IDENTITY_POOL: pulumi-ci GOOGLE_CI_WORKLOAD_IDENTITY_PROVIDER: pulumi-ci @@ -37,19 +44,20 @@ jobs: name: generate-sdk steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install + - name: Install Go + uses: actions/setup-go@v5 with: - skip_dotnet_and_java: "true" + go-version: 1.21.x + cache-dependency-path: "**/*.sum" - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl + - name: Install Pulumi CLI + uses: pulumi/actions@v5 - name: Cleanup SDK Folder run: make clean - name: Preparing Git Branch diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 2dd14172e4..5ac25cfa24 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -23,6 +23,13 @@ env: SIGNING_KEY_ID: ${{ secrets.JAVA_SIGNING_KEY_ID }} SIGNING_KEY: ${{ secrets.JAVA_SIGNING_KEY }} SIGNING_PASSWORD: ${{ secrets.JAVA_SIGNING_PASSWORD }} + GOVERSION: 1.21.x + NODEVERSION: 20.x + PYTHONVERSION: "3.11" + DOTNETVERSION: | + 6.0.x + 3.1.301 + JAVAVERSION: "11" GOOGLE_CI_SERVICE_ACCOUNT_EMAIL: pulumi-ci@pulumi-ci-gcp-provider.iam.gserviceaccount.com GOOGLE_CI_WORKLOAD_IDENTITY_POOL: pulumi-ci GOOGLE_CI_WORKLOAD_IDENTITY_PROVIDER: pulumi-ci @@ -38,27 +45,28 @@ jobs: name: prerequisites steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true - - name: Checkout Scripts Repo - uses: actions/checkout@v3 + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 with: - path: ci-scripts - repository: pulumi/scripts - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install + set-env: PROVIDER_VERSION + - name: Install Go + uses: actions/setup-go@v5 with: - skip_dotnet_and_java: "true" + go-version: ${{ env.GOVERSION }} + cache-dependency-path: "**/*.sum" - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl + - name: Install Pulumi CLI + uses: pulumi/actions@v5 - if: github.event_name == 'pull_request' name: Install Schema Tools - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/schema-tools - name: Initialize submodules @@ -72,15 +80,18 @@ jobs: run: >- echo 'SCHEMA_CHANGES<> $GITHUB_ENV - schema-tools compare -p ${{ env.PROVIDER }} -o master -n --local-path=provider/cmd/pulumi-resource-${{ env.PROVIDER }}/schema.json >> $GITHUB_ENV + schema-tools compare -p ${{ env.PROVIDER }} -o ${{ github.event.repository.default_branch }} -n --local-path=provider/cmd/pulumi-resource-${{ env.PROVIDER }}/schema.json >> $GITHUB_ENV echo 'EOF' >> $GITHUB_ENV + env: + GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - if: github.event_name == 'pull_request' name: Comment on PR with Details of Schema Check - uses: thollander/actions-comment-pull-request@v1 + uses: thollander/actions-comment-pull-request@v2 with: message: | ${{ env.SCHEMA_CHANGES }} + comment_tag: schemaCheck GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - if: contains(env.SCHEMA_CHANGES, 'Looking good! No breaking changes found.') && github.actor == 'pulumi-bot' @@ -93,19 +104,30 @@ jobs: - name: Build Provider run: make provider - name: Check worktree clean - run: ./ci-scripts/ci/check-worktree-is-clean + uses: pulumi/git-status-check-action@v1 + with: + allowed-changes: |- + sdk/**/pulumi-plugin.json + sdk/dotnet/Pulumi.*.csproj + sdk/go/**/pulumiUtilities.go + sdk/nodejs/package.json + sdk/python/pyproject.toml - run: git status --porcelain - name: Tar provider binaries run: tar -zcf ${{ github.workspace }}/bin/provider.tar.gz -C ${{ github.workspace}}/bin/ pulumi-resource-${{ env.PROVIDER }} pulumi-gen-${{ env.PROVIDER}} - name: Upload artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: pulumi-${{ env.PROVIDER }}-provider.tar.gz path: ${{ github.workspace }}/bin/provider.tar.gz - name: Test Provider Library run: make test_provider + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - if: failure() && github.event_name == 'push' name: Notify Slack uses: 8398a7/action-slack@v3 @@ -128,24 +150,50 @@ jobs: name: build_sdks steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true - - name: Checkout Scripts Repo - uses: actions/checkout@v3 + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 with: - path: ci-scripts - repository: pulumi/scripts - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install + set-env: PROVIDER_VERSION + - name: Install Go + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GOVERSION }} + cache-dependency-path: "**/*.sum" - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl + - name: Install Pulumi CLI + uses: pulumi/actions@v5 + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: ${{ env.NODEVERSION }} + registry-url: https://registry.npmjs.org + - name: Setup DotNet + uses: actions/setup-dotnet@v4 + with: + dotnet-version: ${{ env.DOTNETVERSION }} + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: ${{ env.PYTHONVERSION }} + - name: Setup Java + uses: actions/setup-java@v4 + with: + java-version: ${{ env.JAVAVERSION }} + distribution: temurin + cache: gradle + - name: Setup Gradle + uses: gradle/gradle-build-action@v3 + with: + gradle-version: "7.6" - name: Download provider + tfgen binaries - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: pulumi-${{ env.PROVIDER }}-provider.tar.gz path: ${{ github.workspace }}/bin @@ -162,12 +210,19 @@ jobs: - name: Build SDK run: make build_${{ matrix.language }} - name: Check worktree clean - run: ./ci-scripts/ci/check-worktree-is-clean + uses: pulumi/git-status-check-action@v1 + with: + allowed-changes: |- + sdk/**/pulumi-plugin.json + sdk/dotnet/Pulumi.*.csproj + sdk/go/**/pulumiUtilities.go + sdk/nodejs/package.json + sdk/python/pyproject.toml - run: git status --porcelain - name: Tar SDK folder run: tar -zcf sdk/${{ matrix.language }}.tar.gz -C sdk/${{ matrix.language }} . - name: Upload artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.language }}-sdk.tar.gz path: ${{ github.workspace}}/sdk/${{ matrix.language }}.tar.gz @@ -179,7 +234,7 @@ jobs: fields: repo,commit,author,action status: ${{ job.status }} test: - runs-on: ubuntu-latest + runs-on: pulumi-ubuntu-8core needs: - build_sdks strategy: @@ -197,24 +252,50 @@ jobs: id-token: write steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true - - name: Checkout Scripts Repo - uses: actions/checkout@v3 + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 with: - path: ci-scripts - repository: pulumi/scripts - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install + set-env: PROVIDER_VERSION + - name: Install Go + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GOVERSION }} + cache-dependency-path: "**/*.sum" - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl + - name: Install Pulumi CLI + uses: pulumi/actions@v5 + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: ${{ env.NODEVERSION }} + registry-url: https://registry.npmjs.org + - name: Setup DotNet + uses: actions/setup-dotnet@v4 + with: + dotnet-version: ${{ env.DOTNETVERSION }} + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: ${{ env.PYTHONVERSION }} + - name: Setup Java + uses: actions/setup-java@v4 + with: + java-version: ${{ env.JAVAVERSION }} + distribution: temurin + cache: gradle + - name: Setup Gradle + uses: gradle/gradle-build-action@v3 + with: + gradle-version: "7.6" - name: Download provider + tfgen binaries - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: pulumi-${{ env.PROVIDER }}-provider.tar.gz path: ${{ github.workspace }}/bin @@ -225,7 +306,7 @@ jobs: run: find ${{ github.workspace }} -name "pulumi-*-${{ env.PROVIDER }}" -print -exec chmod +x {} \; - name: Download SDK - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: ${{ matrix.language }}-sdk.tar.gz path: ${{ github.workspace}}/sdk/ @@ -252,13 +333,13 @@ jobs: env.GOOGLE_CI_WORKLOAD_IDENTITY_PROVIDER }} service_account: ${{ env.GOOGLE_CI_SERVICE_ACCOUNT_EMAIL }} - name: Setup gcloud auth - uses: google-github-actions/setup-gcloud@v0 + uses: google-github-actions/setup-gcloud@v2 with: install_components: gke-gcloud-auth-plugin - name: Install gotestfmt uses: GoTestTools/gotestfmt-action@v2 with: - version: v2.4.0 + version: v2.5.0 token: ${{ secrets.GITHUB_TOKEN }} - name: Run tests run: >- @@ -278,21 +359,36 @@ jobs: name: publish steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install - with: - skip_dotnet_and_java: "true" + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 + with: + set-env: PROVIDER_VERSION + - name: Install Go + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GOVERSION }} + cache-dependency-path: "**/*.sum" + - name: Clear GitHub Actions Ubuntu runner disk space + uses: jlumbroso/free-disk-space@v1.3.1 + with: + tool-cache: false + dotnet: false + android: true + haskell: true + swap-storage: true + large-packages: false - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl + - name: Install Pulumi CLI + uses: pulumi/actions@v5 - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@v1 + uses: aws-actions/configure-aws-credentials@v4 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-region: us-east-2 @@ -301,14 +397,12 @@ jobs: role-session-name: ${{ env.PROVIDER }}@githubActions role-external-id: upload-pulumi-release role-to-assume: ${{ secrets.AWS_UPLOAD_ROLE_ARN }} - - name: Set PreRelease Version - run: echo "GORELEASER_CURRENT_TAG=v$(pulumictl get version --language generic)" - >> $GITHUB_ENV - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v2 + uses: goreleaser/goreleaser-action@v5 + env: + GORELEASER_CURRENT_TAG: v${{ steps.version.outputs.version }} with: - args: -p 3 -f .goreleaser.prerelease.yml --rm-dist --skip-validate --timeout - 60m0s + args: -p 3 -f .goreleaser.prerelease.yml --clean --skip=validate --timeout 60m0s version: latest - if: failure() && github.event_name == 'push' name: Notify Slack @@ -323,24 +417,46 @@ jobs: name: publish_sdk steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 + with: + set-env: PROVIDER_VERSION - name: Checkout Scripts Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: ci-scripts repository: pulumi/scripts - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install + - run: echo "ci-scripts" >> .git/info/exclude + - name: Install Go + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GOVERSION }} + cache-dependency-path: "**/*.sum" - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl + - name: Install Pulumi CLI + uses: pulumi/actions@v5 + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: ${{ env.NODEVERSION }} + registry-url: https://registry.npmjs.org + - name: Setup DotNet + uses: actions/setup-dotnet@v4 + with: + dotnet-version: ${{ env.DOTNETVERSION }} + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: ${{ env.PYTHONVERSION }} - name: Download python SDK - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: python-sdk.tar.gz path: ${{ github.workspace}}/sdk/ @@ -348,7 +464,7 @@ jobs: run: tar -zxf ${{github.workspace}}/sdk/python.tar.gz -C ${{github.workspace}}/sdk/python - name: Download dotnet SDK - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: dotnet-sdk.tar.gz path: ${{ github.workspace}}/sdk/ @@ -356,7 +472,7 @@ jobs: run: tar -zxf ${{github.workspace}}/sdk/dotnet.tar.gz -C ${{github.workspace}}/sdk/dotnet - name: Download nodejs SDK - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: nodejs-sdk.tar.gz path: ${{ github.workspace}}/sdk/ @@ -364,14 +480,12 @@ jobs: run: tar -zxf ${{github.workspace}}/sdk/nodejs.tar.gz -C ${{github.workspace}}/sdk/nodejs - name: Install Twine - run: python -m pip install pip twine + run: python -m pip install twine==5.0.0 - name: Publish SDKs run: ./ci-scripts/ci/publish-tfgen-package ${{ github.workspace }} env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - # See https://github.com/pulumi/scripts/pull/138/files - # Possible values: "all", "wheel". - PYPI_PUBLISH_ARTIFACTS: all + PYPI_PUBLISH_ARTIFACTS: all - if: failure() && github.event_name == 'push' name: Notify Slack uses: 8398a7/action-slack@v3 @@ -386,38 +500,83 @@ jobs: name: publish_java_sdk steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true - - name: Checkout Scripts Repo - uses: actions/checkout@v3 + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 with: - path: ci-scripts - repository: pulumi/scripts - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install + set-env: PROVIDER_VERSION + - name: Install Go + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GOVERSION }} + cache-dependency-path: "**/*.sum" - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl - name: Install Pulumi CLI - uses: pulumi/action-install-pulumi-cli@v2 + uses: pulumi/actions@v5 + - name: Setup Java + uses: actions/setup-java@v4 + with: + java-version: ${{ env.JAVAVERSION }} + distribution: temurin + cache: gradle + - name: Setup Gradle + uses: gradle/gradle-build-action@v3 + with: + gradle-version: "7.6" - name: Download java SDK - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: java-sdk.tar.gz path: ${{ github.workspace}}/sdk/ - name: Uncompress java SDK run: tar -zxf ${{github.workspace}}/sdk/java.tar.gz -C ${{github.workspace}}/sdk/java - - name: Set PACKAGE_VERSION to Env - run: echo "PACKAGE_VERSION=$(pulumictl get version --language generic)" >> - $GITHUB_ENV - name: Publish Java SDK - uses: gradle/gradle-build-action@9b814496b50909128c6a52622b416c5ffa04db49 + uses: gradle/gradle-build-action@v3 + env: + PACKAGE_VERSION: ${{ env.PROVIDER_VERSION }} with: arguments: publishToSonatype closeAndReleaseSonatypeStagingRepository build-root-directory: ./sdk/java gradle-version: 7.4.1 + publish_go_sdk: + runs-on: ubuntu-latest + name: publish-go-sdk + needs: publish_sdk + steps: + - name: Checkout Repo + uses: actions/checkout@v4 + with: + lfs: true + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 + with: + set-env: PROVIDER_VERSION + - name: Download go SDK + uses: actions/download-artifact@v4 + with: + name: go-sdk.tar.gz + path: ${{ github.workspace}}/sdk/ + - name: Uncompress go SDK + run: tar -zxf ${{github.workspace}}/sdk/go.tar.gz -C + ${{github.workspace}}/sdk/go + - name: Publish Go SDK + uses: pulumi/publish-go-sdk-action@v1 + with: + repository: ${{ github.repository }} + base-ref: ${{ github.sha }} + source: sdk + path: sdk + version: ${{ steps.version.outputs.version }} + additive: false + files: |- + go.* + go/** + !*.tar.gz diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index c5ef175ff2..ff21334182 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -21,6 +21,13 @@ env: SIGNING_KEY_ID: ${{ secrets.JAVA_SIGNING_KEY_ID }} SIGNING_KEY: ${{ secrets.JAVA_SIGNING_KEY }} SIGNING_PASSWORD: ${{ secrets.JAVA_SIGNING_PASSWORD }} + GOVERSION: 1.21.x + NODEVERSION: 20.x + PYTHONVERSION: "3.11" + DOTNETVERSION: | + 6.0.x + 3.1.301 + JAVAVERSION: "11" GOOGLE_CI_SERVICE_ACCOUNT_EMAIL: pulumi-ci@pulumi-ci-gcp-provider.iam.gserviceaccount.com GOOGLE_CI_WORKLOAD_IDENTITY_POOL: pulumi-ci GOOGLE_CI_WORKLOAD_IDENTITY_PROVIDER: pulumi-ci @@ -35,11 +42,11 @@ jobs: name: comment-on-pr steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true - name: Comment PR - uses: thollander/actions-comment-pull-request@v1 + uses: thollander/actions-comment-pull-request@v2 with: message: > PR is now waiting for a maintainer to run the acceptance tests. diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 12f388d773..1ce0a7e33c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,6 +24,13 @@ env: SIGNING_KEY_ID: ${{ secrets.JAVA_SIGNING_KEY_ID }} SIGNING_KEY: ${{ secrets.JAVA_SIGNING_KEY }} SIGNING_PASSWORD: ${{ secrets.JAVA_SIGNING_PASSWORD }} + GOVERSION: 1.21.x + NODEVERSION: 20.x + PYTHONVERSION: "3.11" + DOTNETVERSION: | + 6.0.x + 3.1.301 + JAVAVERSION: "11" GOOGLE_CI_SERVICE_ACCOUNT_EMAIL: pulumi-ci@pulumi-ci-gcp-provider.iam.gserviceaccount.com GOOGLE_CI_WORKLOAD_IDENTITY_POOL: pulumi-ci GOOGLE_CI_WORKLOAD_IDENTITY_PROVIDER: pulumi-ci @@ -38,27 +45,28 @@ jobs: name: prerequisites steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true - - name: Checkout Scripts Repo - uses: actions/checkout@v3 + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 with: - path: ci-scripts - repository: pulumi/scripts - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install + set-env: PROVIDER_VERSION + - name: Install Go + uses: actions/setup-go@v5 with: - skip_dotnet_and_java: "true" + go-version: ${{ env.GOVERSION }} + cache-dependency-path: "**/*.sum" - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl + - name: Install Pulumi CLI + uses: pulumi/actions@v5 - if: github.event_name == 'pull_request' name: Install Schema Tools - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/schema-tools - name: Initialize submodules @@ -72,15 +80,18 @@ jobs: run: >- echo 'SCHEMA_CHANGES<> $GITHUB_ENV - schema-tools compare -p ${{ env.PROVIDER }} -o master -n --local-path=provider/cmd/pulumi-resource-${{ env.PROVIDER }}/schema.json >> $GITHUB_ENV + schema-tools compare -p ${{ env.PROVIDER }} -o ${{ github.event.repository.default_branch }} -n --local-path=provider/cmd/pulumi-resource-${{ env.PROVIDER }}/schema.json >> $GITHUB_ENV echo 'EOF' >> $GITHUB_ENV + env: + GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - if: github.event_name == 'pull_request' name: Comment on PR with Details of Schema Check - uses: thollander/actions-comment-pull-request@v1 + uses: thollander/actions-comment-pull-request@v2 with: message: | ${{ env.SCHEMA_CHANGES }} + comment_tag: schemaCheck GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - if: contains(env.SCHEMA_CHANGES, 'Looking good! No breaking changes found.') && github.actor == 'pulumi-bot' @@ -93,19 +104,30 @@ jobs: - name: Build Provider run: make provider - name: Check worktree clean - run: ./ci-scripts/ci/check-worktree-is-clean + uses: pulumi/git-status-check-action@v1 + with: + allowed-changes: |- + sdk/**/pulumi-plugin.json + sdk/dotnet/Pulumi.*.csproj + sdk/go/**/pulumiUtilities.go + sdk/nodejs/package.json + sdk/python/pyproject.toml - run: git status --porcelain - name: Tar provider binaries run: tar -zcf ${{ github.workspace }}/bin/provider.tar.gz -C ${{ github.workspace}}/bin/ pulumi-resource-${{ env.PROVIDER }} pulumi-gen-${{ env.PROVIDER}} - name: Upload artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: pulumi-${{ env.PROVIDER }}-provider.tar.gz path: ${{ github.workspace }}/bin/provider.tar.gz - name: Test Provider Library run: make test_provider + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - if: failure() && github.event_name == 'push' name: Notify Slack uses: 8398a7/action-slack@v3 @@ -128,24 +150,50 @@ jobs: name: build_sdks steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true - - name: Checkout Scripts Repo - uses: actions/checkout@v3 + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 with: - path: ci-scripts - repository: pulumi/scripts - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install + set-env: PROVIDER_VERSION + - name: Install Go + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GOVERSION }} + cache-dependency-path: "**/*.sum" - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl + - name: Install Pulumi CLI + uses: pulumi/actions@v5 + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: ${{ env.NODEVERSION }} + registry-url: https://registry.npmjs.org + - name: Setup DotNet + uses: actions/setup-dotnet@v4 + with: + dotnet-version: ${{ env.DOTNETVERSION }} + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: ${{ env.PYTHONVERSION }} + - name: Setup Java + uses: actions/setup-java@v4 + with: + java-version: ${{ env.JAVAVERSION }} + distribution: temurin + cache: gradle + - name: Setup Gradle + uses: gradle/gradle-build-action@v3 + with: + gradle-version: "7.6" - name: Download provider + tfgen binaries - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: pulumi-${{ env.PROVIDER }}-provider.tar.gz path: ${{ github.workspace }}/bin @@ -162,12 +210,19 @@ jobs: - name: Build SDK run: make build_${{ matrix.language }} - name: Check worktree clean - run: ./ci-scripts/ci/check-worktree-is-clean + uses: pulumi/git-status-check-action@v1 + with: + allowed-changes: |- + sdk/**/pulumi-plugin.json + sdk/dotnet/Pulumi.*.csproj + sdk/go/**/pulumiUtilities.go + sdk/nodejs/package.json + sdk/python/pyproject.toml - run: git status --porcelain - name: Tar SDK folder run: tar -zcf sdk/${{ matrix.language }}.tar.gz -C sdk/${{ matrix.language }} . - name: Upload artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.language }}-sdk.tar.gz path: ${{ github.workspace}}/sdk/${{ matrix.language }}.tar.gz @@ -179,7 +234,7 @@ jobs: fields: repo,commit,author,action status: ${{ job.status }} test: - runs-on: ubuntu-latest + runs-on: pulumi-ubuntu-8core needs: - build_sdks strategy: @@ -197,24 +252,50 @@ jobs: id-token: write steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true - - name: Checkout Scripts Repo - uses: actions/checkout@v3 + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 with: - path: ci-scripts - repository: pulumi/scripts - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install + set-env: PROVIDER_VERSION + - name: Install Go + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GOVERSION }} + cache-dependency-path: "**/*.sum" - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl + - name: Install Pulumi CLI + uses: pulumi/actions@v5 + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: ${{ env.NODEVERSION }} + registry-url: https://registry.npmjs.org + - name: Setup DotNet + uses: actions/setup-dotnet@v4 + with: + dotnet-version: ${{ env.DOTNETVERSION }} + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: ${{ env.PYTHONVERSION }} + - name: Setup Java + uses: actions/setup-java@v4 + with: + java-version: ${{ env.JAVAVERSION }} + distribution: temurin + cache: gradle + - name: Setup Gradle + uses: gradle/gradle-build-action@v3 + with: + gradle-version: "7.6" - name: Download provider + tfgen binaries - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: pulumi-${{ env.PROVIDER }}-provider.tar.gz path: ${{ github.workspace }}/bin @@ -225,7 +306,7 @@ jobs: run: find ${{ github.workspace }} -name "pulumi-*-${{ env.PROVIDER }}" -print -exec chmod +x {} \; - name: Download SDK - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: ${{ matrix.language }}-sdk.tar.gz path: ${{ github.workspace}}/sdk/ @@ -252,13 +333,13 @@ jobs: env.GOOGLE_CI_WORKLOAD_IDENTITY_PROVIDER }} service_account: ${{ env.GOOGLE_CI_SERVICE_ACCOUNT_EMAIL }} - name: Setup gcloud auth - uses: google-github-actions/setup-gcloud@v0 + uses: google-github-actions/setup-gcloud@v2 with: install_components: gke-gcloud-auth-plugin - name: Install gotestfmt uses: GoTestTools/gotestfmt-action@v2 with: - version: v2.4.0 + version: v2.5.0 token: ${{ secrets.GITHUB_TOKEN }} - name: Run tests run: >- @@ -278,21 +359,36 @@ jobs: name: publish steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install - with: - skip_dotnet_and_java: "true" + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 + with: + set-env: PROVIDER_VERSION + - name: Install Go + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GOVERSION }} + cache-dependency-path: "**/*.sum" + - name: Clear GitHub Actions Ubuntu runner disk space + uses: jlumbroso/free-disk-space@v1.3.1 + with: + tool-cache: false + dotnet: false + android: true + haskell: true + swap-storage: true + large-packages: false - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl + - name: Install Pulumi CLI + uses: pulumi/actions@v5 - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@v1 + uses: aws-actions/configure-aws-credentials@v4 with: aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} aws-region: us-east-2 @@ -301,13 +397,12 @@ jobs: role-session-name: ${{ env.PROVIDER }}@githubActions role-external-id: upload-pulumi-release role-to-assume: ${{ secrets.AWS_UPLOAD_ROLE_ARN }} - - name: Set PreRelease Version - run: echo "GORELEASER_CURRENT_TAG=v$(pulumictl get version --language generic)" - >> $GITHUB_ENV - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v2 + uses: goreleaser/goreleaser-action@v5 + env: + GORELEASER_CURRENT_TAG: v${{ steps.version.outputs.version }} with: - args: -p 3 release --rm-dist --timeout 60m0s + args: -p 3 release --clean --timeout 60m0s version: latest - if: failure() && github.event_name == 'push' name: Notify Slack @@ -322,24 +417,46 @@ jobs: name: publish_sdks steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 + with: + set-env: PROVIDER_VERSION - name: Checkout Scripts Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: ci-scripts repository: pulumi/scripts - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install + - run: echo "ci-scripts" >> .git/info/exclude + - name: Install Go + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GOVERSION }} + cache-dependency-path: "**/*.sum" - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl + - name: Install Pulumi CLI + uses: pulumi/actions@v5 + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: ${{ env.NODEVERSION }} + registry-url: https://registry.npmjs.org + - name: Setup DotNet + uses: actions/setup-dotnet@v4 + with: + dotnet-version: ${{ env.DOTNETVERSION }} + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: ${{ env.PYTHONVERSION }} - name: Download python SDK - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: python-sdk.tar.gz path: ${{ github.workspace}}/sdk/ @@ -347,7 +464,7 @@ jobs: run: tar -zxf ${{github.workspace}}/sdk/python.tar.gz -C ${{github.workspace}}/sdk/python - name: Download dotnet SDK - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: dotnet-sdk.tar.gz path: ${{ github.workspace}}/sdk/ @@ -355,7 +472,7 @@ jobs: run: tar -zxf ${{github.workspace}}/sdk/dotnet.tar.gz -C ${{github.workspace}}/sdk/dotnet - name: Download nodejs SDK - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: nodejs-sdk.tar.gz path: ${{ github.workspace}}/sdk/ @@ -363,14 +480,12 @@ jobs: run: tar -zxf ${{github.workspace}}/sdk/nodejs.tar.gz -C ${{github.workspace}}/sdk/nodejs - name: Install Twine - run: python -m pip install pip twine + run: python -m pip install twine==5.0.0 - name: Publish SDKs run: ./ci-scripts/ci/publish-tfgen-package ${{ github.workspace }} env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - # See https://github.com/pulumi/scripts/pull/138/files - # Possible values: "all", "wheel". - PYPI_PUBLISH_ARTIFACTS: all + PYPI_PUBLISH_ARTIFACTS: all - if: failure() && github.event_name == 'push' name: Notify Slack uses: 8398a7/action-slack@v3 @@ -385,61 +500,92 @@ jobs: name: publish_java_sdk steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true - - name: Checkout Scripts Repo - uses: actions/checkout@v3 + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 with: - path: ci-scripts - repository: pulumi/scripts - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install + set-env: PROVIDER_VERSION + - name: Install Go + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GOVERSION }} + cache-dependency-path: "**/*.sum" - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl + - name: Install Pulumi CLI + uses: pulumi/actions@v5 + - name: Setup Java + uses: actions/setup-java@v4 + with: + java-version: ${{ env.JAVAVERSION }} + distribution: temurin + cache: gradle + - name: Setup Gradle + uses: gradle/gradle-build-action@v3 + with: + gradle-version: "7.6" - name: Download java SDK - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: java-sdk.tar.gz path: ${{ github.workspace}}/sdk/ - name: Uncompress java SDK run: tar -zxf ${{github.workspace}}/sdk/java.tar.gz -C ${{github.workspace}}/sdk/java - - name: Set PACKAGE_VERSION to Env - run: echo "PACKAGE_VERSION=$(pulumictl get version --language generic)" >> - $GITHUB_ENV - name: Publish Java SDK - uses: gradle/gradle-build-action@9b814496b50909128c6a52622b416c5ffa04db49 + uses: gradle/gradle-build-action@v3 + env: + PACKAGE_VERSION: ${{ env.PROVIDER_VERSION }} with: arguments: publishToSonatype closeAndReleaseSonatypeStagingRepository build-root-directory: ./sdk/java gradle-version: 7.4.1 - tag_sdk: + publish_go_sdk: runs-on: ubuntu-latest + name: publish-go-sdk needs: publish_sdk steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true - - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 with: - repo: pulumi/pulumictl - - name: Add SDK version tag - run: git tag sdk/v$(pulumictl get version --language generic) && git push origin - sdk/v$(pulumictl get version --language generic) - name: tag_sdk + set-env: PROVIDER_VERSION + - name: Download go SDK + uses: actions/download-artifact@v4 + with: + name: go-sdk.tar.gz + path: ${{ github.workspace}}/sdk/ + - name: Uncompress go SDK + run: tar -zxf ${{github.workspace}}/sdk/go.tar.gz -C + ${{github.workspace}}/sdk/go + - name: Publish Go SDK + uses: pulumi/publish-go-sdk-action@v1 + with: + repository: ${{ github.repository }} + base-ref: ${{ github.sha }} + source: sdk + path: sdk + version: ${{ steps.version.outputs.version }} + additive: false + files: |- + go.* + go/** + !*.tar.gz dispatch_docs_build: runs-on: ubuntu-latest - needs: tag_sdk + needs: publish_go_sdk steps: - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl - name: Dispatch Event diff --git a/.github/workflows/run-acceptance-tests.yml b/.github/workflows/run-acceptance-tests.yml index 4dc2aa7474..11635a5fc6 100644 --- a/.github/workflows/run-acceptance-tests.yml +++ b/.github/workflows/run-acceptance-tests.yml @@ -30,6 +30,13 @@ env: SIGNING_KEY_ID: ${{ secrets.JAVA_SIGNING_KEY_ID }} SIGNING_KEY: ${{ secrets.JAVA_SIGNING_KEY }} SIGNING_PASSWORD: ${{ secrets.JAVA_SIGNING_PASSWORD }} + GOVERSION: 1.21.x + NODEVERSION: 20.x + PYTHONVERSION: "3.11" + DOTNETVERSION: | + 6.0.x + 3.1.301 + JAVAVERSION: "11" GOOGLE_CI_SERVICE_ACCOUNT_EMAIL: pulumi-ci@pulumi-ci-gcp-provider.iam.gserviceaccount.com GOOGLE_CI_WORKLOAD_IDENTITY_POOL: pulumi-ci GOOGLE_CI_WORKLOAD_IDENTITY_PROVIDER: pulumi-ci @@ -46,8 +53,9 @@ jobs: steps: - name: Create URL to the run output id: vars - run: echo ::set-output - name=run-url::https://github.com/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID + run: echo + run-url=https://github.com/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID + >> "$GITHUB_OUTPUT" - name: Update with Result uses: peter-evans/create-or-update-comment@v1 with: @@ -61,28 +69,29 @@ jobs: name: prerequisites steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true ref: ${{ env.PR_COMMIT_SHA }} - - name: Checkout Scripts Repo - uses: actions/checkout@v3 + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 with: - path: ci-scripts - repository: pulumi/scripts - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install + set-env: PROVIDER_VERSION + - name: Install Go + uses: actions/setup-go@v5 with: - skip_dotnet_and_java: "true" + go-version: ${{ env.GOVERSION }} + cache-dependency-path: "**/*.sum" - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl + - name: Install Pulumi CLI + uses: pulumi/actions@v5 - if: github.event_name == 'pull_request' name: Install Schema Tools - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/schema-tools - name: Initialize submodules @@ -96,15 +105,18 @@ jobs: run: >- echo 'SCHEMA_CHANGES<> $GITHUB_ENV - schema-tools compare -p ${{ env.PROVIDER }} -o master -n --local-path=provider/cmd/pulumi-resource-${{ env.PROVIDER }}/schema.json >> $GITHUB_ENV + schema-tools compare -p ${{ env.PROVIDER }} -o ${{ github.event.repository.default_branch }} -n --local-path=provider/cmd/pulumi-resource-${{ env.PROVIDER }}/schema.json >> $GITHUB_ENV echo 'EOF' >> $GITHUB_ENV + env: + GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} - if: github.event_name == 'pull_request' name: Comment on PR with Details of Schema Check - uses: thollander/actions-comment-pull-request@v1 + uses: thollander/actions-comment-pull-request@v2 with: message: | ${{ env.SCHEMA_CHANGES }} + comment_tag: schemaCheck GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - if: contains(env.SCHEMA_CHANGES, 'Looking good! No breaking changes found.') && github.actor == 'pulumi-bot' @@ -117,21 +129,28 @@ jobs: - name: Build Provider run: make provider - name: Check worktree clean - run: ./ci-scripts/ci/check-worktree-is-clean + uses: pulumi/git-status-check-action@v1 + with: + allowed-changes: |- + sdk/**/pulumi-plugin.json + sdk/dotnet/Pulumi.*.csproj + sdk/go/**/pulumiUtilities.go + sdk/nodejs/package.json + sdk/python/pyproject.toml - run: git status --porcelain - name: Tar provider binaries run: tar -zcf ${{ github.workspace }}/bin/provider.tar.gz -C ${{ github.workspace}}/bin/ pulumi-resource-${{ env.PROVIDER }} pulumi-gen-${{ env.PROVIDER}} - name: Upload artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: pulumi-${{ env.PROVIDER }}-provider.tar.gz path: ${{ github.workspace }}/bin/provider.tar.gz - name: Test Provider Library run: make test_provider - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - if: failure() && github.event_name == 'push' @@ -158,25 +177,51 @@ jobs: name: build_sdks steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true ref: ${{ env.PR_COMMIT_SHA }} - - name: Checkout Scripts Repo - uses: actions/checkout@v3 - with: - path: ci-scripts - repository: pulumi/scripts - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 + with: + set-env: PROVIDER_VERSION + - name: Install Go + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GOVERSION }} + cache-dependency-path: "**/*.sum" - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl + - name: Install Pulumi CLI + uses: pulumi/actions@v5 + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: ${{ env.NODEVERSION }} + registry-url: https://registry.npmjs.org + - name: Setup DotNet + uses: actions/setup-dotnet@v4 + with: + dotnet-version: ${{ env.DOTNETVERSION }} + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: ${{ env.PYTHONVERSION }} + - name: Setup Java + uses: actions/setup-java@v4 + with: + java-version: ${{ env.JAVAVERSION }} + distribution: temurin + cache: gradle + - name: Setup Gradle + uses: gradle/gradle-build-action@v3 + with: + gradle-version: "7.6" - name: Download provider + tfgen binaries - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: pulumi-${{ env.PROVIDER }}-provider.tar.gz path: ${{ github.workspace }}/bin @@ -193,15 +238,23 @@ jobs: - name: Build SDK run: make build_${{ matrix.language }} - name: Check worktree clean - run: ./ci-scripts/ci/check-worktree-is-clean + uses: pulumi/git-status-check-action@v1 + with: + allowed-changes: |- + sdk/**/pulumi-plugin.json + sdk/dotnet/Pulumi.*.csproj + sdk/go/**/pulumiUtilities.go + sdk/nodejs/package.json + sdk/python/pyproject.toml - run: git status --porcelain - name: Tar SDK folder run: tar -zcf sdk/${{ matrix.language }}.tar.gz -C sdk/${{ matrix.language }} . - name: Upload artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.language }}-sdk.tar.gz path: ${{ github.workspace}}/sdk/${{ matrix.language }}.tar.gz + retention-days: 30 - if: failure() && github.event_name == 'push' name: Notify Slack uses: 8398a7/action-slack@v3 @@ -212,7 +265,7 @@ jobs: if: github.event_name == 'repository_dispatch' || github.event.pull_request.head.repo.full_name == github.repository test: - runs-on: ubuntu-latest + runs-on: pulumi-ubuntu-8core needs: - build_sdks strategy: @@ -230,25 +283,51 @@ jobs: id-token: write steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true ref: ${{ env.PR_COMMIT_SHA }} - - name: Checkout Scripts Repo - uses: actions/checkout@v3 - with: - path: ci-scripts - repository: pulumi/scripts - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install + - id: version + name: Set Provider Version + uses: pulumi/provider-version-action@v1 + with: + set-env: PROVIDER_VERSION + - name: Install Go + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GOVERSION }} + cache-dependency-path: "**/*.sum" - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl + - name: Install Pulumi CLI + uses: pulumi/actions@v5 + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: ${{ env.NODEVERSION }} + registry-url: https://registry.npmjs.org + - name: Setup DotNet + uses: actions/setup-dotnet@v4 + with: + dotnet-version: ${{ env.DOTNETVERSION }} + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: ${{ env.PYTHONVERSION }} + - name: Setup Java + uses: actions/setup-java@v4 + with: + java-version: ${{ env.JAVAVERSION }} + distribution: temurin + cache: gradle + - name: Setup Gradle + uses: gradle/gradle-build-action@v3 + with: + gradle-version: "7.6" - name: Download provider + tfgen binaries - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: pulumi-${{ env.PROVIDER }}-provider.tar.gz path: ${{ github.workspace }}/bin @@ -259,7 +338,7 @@ jobs: run: find ${{ github.workspace }} -name "pulumi-*-${{ env.PROVIDER }}" -print -exec chmod +x {} \; - name: Download SDK - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: ${{ matrix.language }}-sdk.tar.gz path: ${{ github.workspace}}/sdk/ @@ -286,13 +365,13 @@ jobs: env.GOOGLE_CI_WORKLOAD_IDENTITY_PROVIDER }} service_account: ${{ env.GOOGLE_CI_SERVICE_ACCOUNT_EMAIL }} - name: Setup gcloud auth - uses: google-github-actions/setup-gcloud@v0 + uses: google-github-actions/setup-gcloud@v2 with: install_components: gke-gcloud-auth-plugin - name: Install gotestfmt uses: GoTestTools/gotestfmt-action@v2 with: - version: v2.4.0 + version: v2.5.0 token: ${{ secrets.GITHUB_TOKEN }} - name: Run tests run: >- @@ -312,8 +391,14 @@ jobs: runs-on: ubuntu-latest name: sentinel steps: - - name: Is workflow a success - run: echo yes + - name: Mark workflow as successful + uses: guibranco/github-status-action-v2@0849440ec82c5fa69b2377725b9b7852a3977e76 + with: + authToken: ${{ secrets.GITHUB_TOKEN }} + context: Sentinel + state: success + description: Sentinel checks passed + sha: ${{ github.event.pull_request.head.sha || github.sha }} if: github.event_name == 'repository_dispatch' || github.event.pull_request.head.repo.full_name == github.repository needs: diff --git a/.github/workflows/weekly-pulumi-update.yml b/.github/workflows/weekly-pulumi-update.yml index 0c3d4c112e..9679615830 100644 --- a/.github/workflows/weekly-pulumi-update.yml +++ b/.github/workflows/weekly-pulumi-update.yml @@ -23,6 +23,13 @@ env: SIGNING_KEY_ID: ${{ secrets.JAVA_SIGNING_KEY_ID }} SIGNING_KEY: ${{ secrets.JAVA_SIGNING_KEY }} SIGNING_PASSWORD: ${{ secrets.JAVA_SIGNING_PASSWORD }} + GOVERSION: 1.21.x + NODEVERSION: 20.x + PYTHONVERSION: "3.11" + DOTNETVERSION: | + 6.0.x + 3.1.301 + JAVAVERSION: "11" GOOGLE_CI_SERVICE_ACCOUNT_EMAIL: pulumi-ci@pulumi-ci-gcp-provider.iam.gserviceaccount.com GOOGLE_CI_WORKLOAD_IDENTITY_POOL: pulumi-ci GOOGLE_CI_WORKLOAD_IDENTITY_PROVIDER: pulumi-ci @@ -36,17 +43,33 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: lfs: true - - name: Unshallow clone for tags - run: git fetch --prune --unshallow --tags - - name: Install Languages & Frameworks - uses: ./.github/actions/install + - name: Install Go + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GOVERSION }} + cache-dependency-path: "**/*.sum" - name: Install pulumictl - uses: jaxxstorm/action-install-gh-release@v1.5.0 + uses: jaxxstorm/action-install-gh-release@v1.11.0 with: repo: pulumi/pulumictl + - name: Install Pulumi CLI + uses: pulumi/actions@v5 + - name: Setup DotNet + uses: actions/setup-dotnet@v4 + with: + dotnet-version: ${{ env.DOTNETVERSION }} + - name: Setup Node + uses: actions/setup-node@v4 + with: + node-version: ${{ env.NODEVERSION }} + registry-url: https://registry.npmjs.org + - name: Setup Python + uses: actions/setup-python@v5 + with: + python-version: ${{ env.PYTHONVERSION }} - name: Update Pulumi/Pulumi id: gomod run: >- @@ -56,31 +79,13 @@ jobs: git checkout -b update-pulumi/${{ github.run_id }}-${{ github.run_number }} - cd provider - - go get github.com/pulumi/pulumi/pkg/v3 - - go get github.com/pulumi/pulumi/sdk/v3 - - go mod download - - go mod tidy - - cd ../sdk - - go get github.com/pulumi/pulumi/sdk/v3 - - go mod download - - go mod tidy + for MODFILE in $(find . -name go.mod); do pushd $(dirname $MODFILE); go get github.com/pulumi/pulumi/pkg/v3 github.com/pulumi/pulumi/sdk/v3; go mod tidy; popd; done - cd .. + gh repo view pulumi/pulumi --json latestRelease --jq .latestRelease.tagName | sed 's/^v//' > .pulumi.version git update-index -q --refresh - if ! git diff-files --quiet; then - echo changes=1 >> "$GITHUB_OUTPUT" - fi + if ! git diff-files --quiet; then echo changes=1 >> "$GITHUB_OUTPUT"; fi - name: Initialize submodules run: make init_submodules - name: Provider with Pulumi Upgrade @@ -110,7 +115,7 @@ jobs: git add . - git commit -m "Updated modules" + git commit -m "Updated modules" || echo "ignore commit failure, may be empty" git push origin update-pulumi/${{ github.run_id }}-${{ github.run_number }} - name: Create PR diff --git a/.goreleaser.prerelease.yml b/.goreleaser.prerelease.yml index 03f2fb0ff4..3021757283 100644 --- a/.goreleaser.prerelease.yml +++ b/.goreleaser.prerelease.yml @@ -1,5 +1,6 @@ # WARNING: This file is autogenerated - changes will be overwritten if not made via https://github.com/pulumi/ci-mgmt +project_name: pulumi-google-native before: hooks: - make init_submodules diff --git a/.goreleaser.yml b/.goreleaser.yml index 6f24aaebd3..58f0c2364a 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -1,5 +1,6 @@ # WARNING: This file is autogenerated - changes will be overwritten if not made via https://github.com/pulumi/ci-mgmt +project_name: pulumi-google-native before: hooks: - make init_submodules diff --git a/Makefile b/Makefile index 1b373beff9..faca64d534 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,6 @@ PACKDIR := sdk PROJECT := github.com/pulumi/pulumi-google-native PROVIDER := pulumi-resource-${PACK} CODEGEN := pulumi-gen-${PACK} -VERSION := $(shell pulumictl get version) PROVIDER_PKGS := $(shell cd ./provider && go list ./...) WORKING_DIR := $(shell pwd) @@ -13,19 +12,26 @@ WORKING_DIR := $(shell pwd) JAVA_GEN := pulumi-java-gen JAVA_GEN_VERSION := v0.5.4 -VERSION_FLAGS := -ldflags "-X github.com/pulumi/pulumi-${PACK}/provider/pkg/version.Version=${VERSION}" +# Override during CI using `make [TARGET] PROVIDER_VERSION=""` or by setting a PROVIDER_VERSION environment variable +# Local & branch builds will just used this fixed default version unless specified +PROVIDER_VERSION ?= 0.0.1-alpha.0+dev +# Use this normalised version everywhere rather than the raw input to ensure consistency. +VERSION_GENERIC := $(shell pulumictl convert-version --language generic --version "$(PROVIDER_VERSION)") + + +VERSION_FLAGS := -ldflags "-X github.com/pulumi/pulumi-${PACK}/provider/pkg/version.Version=$(VERSION_GENERIC)" ensure:: @echo "go mod download"; cd provider; go mod download local_generate:: bin/pulumi-java-gen - $(WORKING_DIR)/bin/$(CODEGEN) schema,nodejs,dotnet,python,go ${VERSION} + $(WORKING_DIR)/bin/$(CODEGEN) schema,nodejs,dotnet,python,go $(VERSION_GENERIC) $(WORKING_DIR)/bin/$(JAVA_GEN) generate --schema $(WORKING_DIR)/provider/cmd/$(PROVIDER)/schema.json --out sdk/java --build gradle-nexus echo "Finished generating schema." generate_schema:: bin/pulumi-java-gen echo "Generating Pulumi schema..." - $(WORKING_DIR)/bin/$(CODEGEN) schema ${VERSION} + $(WORKING_DIR)/bin/$(CODEGEN) schema $(VERSION_GENERIC) $(WORKING_DIR)/bin/$(JAVA_GEN) generate --schema $(WORKING_DIR)/provider/cmd/$(PROVIDER)/schema.json --out sdk/java --build gradle-nexus echo "Finished generating schema." @@ -45,52 +51,45 @@ lint_provider:: provider # lint the provider code cd provider && GOGC=20 golangci-lint run -c ../.golangci.yml discovery::codegen - $(WORKING_DIR)/bin/$(CODEGEN) discovery ${VERSION} + $(WORKING_DIR)/bin/$(CODEGEN) discovery $(VERSION_GENERIC) generate_nodejs:: - $(WORKING_DIR)/bin/$(CODEGEN) nodejs ${VERSION} + $(WORKING_DIR)/bin/$(CODEGEN) nodejs $(VERSION_GENERIC) -build_nodejs:: VERSION := $(shell pulumictl get version --language javascript) build_nodejs:: cd ${PACKDIR}/nodejs/ && \ yarn install && \ node --max-old-space-size=4096 ./node_modules/.bin/tsc --diagnostics && \ - cp ../../README.md ../../LICENSE package.json yarn.lock ./bin/ && \ - sed -i.bak -e "s/\$${VERSION}/$(VERSION)/g" ./bin/package.json + cp ../../README.md ../../LICENSE package.json yarn.lock ./bin/ generate_python:: # Delete files not tracked in Git cd sdk/python/ && git clean -fxd - $(WORKING_DIR)/bin/$(CODEGEN) python ${VERSION} + $(WORKING_DIR)/bin/$(CODEGEN) python $(VERSION_GENERIC) -build_python:: PYPI_VERSION := $(shell pulumictl get version --language python) build_python:: # Delete files not tracked in Git cd sdk/python/ && git clean -fxd cd sdk/python/ && \ cp ../../README.md . && \ rm -rf ./bin/ ../python.bin/ && cp -R . ../python.bin && mv ../python.bin ./bin && \ - sed -i.bak -e 's/^ version = .*/ version = "$(PYPI_VERSION)"/g' ./bin/pyproject.toml && \ - rm ./bin/pyproject.toml.bak && \ python3 -m venv venv && \ ./venv/bin/python -m pip install build && \ cd ./bin && \ ../venv/bin/python -m build . generate_dotnet:: - $(WORKING_DIR)/bin/$(CODEGEN) dotnet ${VERSION} + $(WORKING_DIR)/bin/$(CODEGEN) dotnet $(VERSION_GENERIC) -build_dotnet:: DOTNET_VERSION := $(shell pulumictl get version --language dotnet) build_dotnet:: cd ${PACKDIR}/dotnet/ && \ - echo "${PACK}\n${DOTNET_VERSION}" >version.txt && \ - dotnet build /p:Version=${DOTNET_VERSION} + dotnet build generate_java:: bin/pulumi-java-gen $(WORKING_DIR)/bin/$(JAVA_GEN) generate --schema $(WORKING_DIR)/provider/cmd/$(PROVIDER)/schema.json --out sdk/java --build gradle-nexus -build_java:: PACKAGE_VERSION := $(shell pulumictl get version --language generic) +java_sdk:: PACKAGE_VERSION := $(shell pulumictl convert-version --language generic -v "$(VERSION_GENERIC)") build_java:: cd ${PACKDIR}/java/ && \ gradle --console=plain build @@ -99,7 +98,7 @@ bin/pulumi-java-gen:: $(shell pulumictl download-binary -n pulumi-language-java -v $(JAVA_GEN_VERSION) -r pulumi/pulumi-java) generate_go:: - $(WORKING_DIR)/bin/$(CODEGEN) go ${VERSION} + $(WORKING_DIR)/bin/$(CODEGEN) go $(VERSION_GENERIC) build_go:: cd sdk/ && go build github.com/pulumi/pulumi-google-native/sdk/go/google/... diff --git a/provider/cmd/pulumi-gen-google-native/main.go b/provider/cmd/pulumi-gen-google-native/main.go index 24cf2d6f3a..5fd1346f59 100644 --- a/provider/cmd/pulumi-gen-google-native/main.go +++ b/provider/cmd/pulumi-gen-google-native/main.go @@ -251,13 +251,13 @@ func generate(ppkg *schema.Package, language string) (map[string][]byte, error) extraFiles := map[string][]byte{} switch language { case "nodejs": - return nodejsgen.GeneratePackage(toolDescription, ppkg, extraFiles) + return nodejsgen.GeneratePackage(toolDescription, ppkg, extraFiles, map[string]string{}) case "python": return pythongen.GeneratePackage(toolDescription, ppkg, extraFiles) case "go": return gogen.GeneratePackage(toolDescription, ppkg) case "dotnet": - return dotnetgen.GeneratePackage(toolDescription, ppkg, extraFiles) + return dotnetgen.GeneratePackage(toolDescription, ppkg, extraFiles, map[string]string{}) } return nil, errors.Errorf("unknown language '%s'", language) diff --git a/provider/cmd/pulumi-resource-google-native/schema.json b/provider/cmd/pulumi-resource-google-native/schema.json index fff278841f..d4a72b1876 100644 --- a/provider/cmd/pulumi-resource-google-native/schema.json +++ b/provider/cmd/pulumi-resource-google-native/schema.json @@ -510,7 +510,8 @@ }, "packageReferences": { "Pulumi": "3.*" - } + }, + "respectSchemaVersion": true }, "go": { "importBasePath": "github.com/pulumi/pulumi-google-native/sdk/go/google", @@ -834,7 +835,8 @@ "github.com/pulumi/pulumi-google-native/sdk/go/google/workloadmanager/v1": "workloadmanager", "github.com/pulumi/pulumi-google-native/sdk/go/google/workstations/v1": "workstations", "github.com/pulumi/pulumi-google-native/sdk/go/google/workstations/v1beta": "workstations" - } + }, + "respectSchemaVersion": true }, "java": { "liftSingleValueMethodReturns": true, @@ -1157,14 +1159,16 @@ "workloadmanager/v1": "workloadmanager.v1", "workstations/v1": "workstations.v1", "workstations/v1beta": "workstations.v1beta" - } + }, + "respectSchemaVersion": true }, "nodejs": { "dependencies": { "@pulumi/pulumi": "^3.0.0" }, "liftSingleValueMethodReturns": true, - "readme": "The native Google Cloud Provider for Pulumi lets you provision Google Cloud resources in your cloud\nprograms. This provider uses the Google Cloud REST API directly and therefore provides full access to Google Cloud.\nThe provider is currently in public preview and is not recommended for production deployments yet. Breaking changes\nwill be introduced in minor version releases." + "readme": "The native Google Cloud Provider for Pulumi lets you provision Google Cloud resources in your cloud\nprograms. This provider uses the Google Cloud REST API directly and therefore provides full access to Google Cloud.\nThe provider is currently in public preview and is not recommended for production deployments yet. Breaking changes\nwill be introduced in minor version releases.", + "respectSchemaVersion": true }, "python": { "liftSingleValueMethodReturns": true, @@ -1495,6 +1499,7 @@ "requires": { "pulumi": "\u003e=3.0.0,\u003c4.0.0" }, + "respectSchemaVersion": true, "usesIOClasses": true } }, diff --git a/provider/go.mod b/provider/go.mod index 0d70e9cce7..e8f1bdd057 100644 --- a/provider/go.mod +++ b/provider/go.mod @@ -5,139 +5,124 @@ go 1.21 require ( github.com/evanphx/json-patch v5.6.0+incompatible github.com/gedex/inflector v0.0.0-20170307190818-16278e9db813 - github.com/golang/glog v1.1.0 - github.com/golang/protobuf v1.5.3 + github.com/golang/glog v1.2.0 + github.com/golang/protobuf v1.5.4 github.com/hashicorp/go-cleanhttp v0.5.2 github.com/iancoleman/strcase v0.2.0 github.com/jpillora/backoff v1.0.0 github.com/mitchellh/go-homedir v1.1.0 github.com/mitchellh/mapstructure v1.5.0 github.com/pkg/errors v0.9.1 - github.com/pulumi/pulumi/pkg/v3 v3.100.0 - github.com/pulumi/pulumi/sdk/v3 v3.100.0 - github.com/stretchr/testify v1.8.4 - golang.org/x/oauth2 v0.8.0 - google.golang.org/api v0.126.0 - google.golang.org/grpc v1.57.1 + github.com/pulumi/pulumi/pkg/v3 v3.121.0 + github.com/pulumi/pulumi/sdk/v3 v3.121.0 + github.com/stretchr/testify v1.9.0 + golang.org/x/oauth2 v0.18.0 + google.golang.org/api v0.169.0 + google.golang.org/grpc v1.63.2 ) require ( - cloud.google.com/go/kms v1.12.1 // indirect + cloud.google.com/go/kms v1.15.7 // indirect github.com/cheggaaa/pb v1.0.29 // indirect github.com/mattn/go-runewidth v0.0.15 // indirect ) require ( - cloud.google.com/go/iam v1.1.1 // indirect + cloud.google.com/go/iam v1.1.6 // indirect github.com/hashicorp/errwrap v1.1.0 github.com/imdario/mergo v0.3.13 github.com/jtacoma/uritemplates v1.0.0 ) require ( - cloud.google.com/go v0.110.4 // indirect - cloud.google.com/go/compute v1.20.1 // indirect + cloud.google.com/go v0.112.1 // indirect + cloud.google.com/go/compute v1.25.0 // indirect cloud.google.com/go/compute/metadata v0.2.3 // indirect - cloud.google.com/go/logging v1.7.0 // indirect - cloud.google.com/go/longrunning v0.5.1 // indirect - cloud.google.com/go/storage v1.30.1 // indirect + cloud.google.com/go/logging v1.9.0 // indirect + cloud.google.com/go/longrunning v0.5.5 // indirect + cloud.google.com/go/storage v1.39.1 // indirect dario.cat/mergo v1.0.0 // indirect - github.com/Azure/azure-sdk-for-go v66.0.0+incompatible // indirect - github.com/Azure/go-autorest v14.2.0+incompatible // indirect - github.com/Azure/go-autorest/autorest v0.11.28 // indirect - github.com/Azure/go-autorest/autorest/adal v0.9.21 // indirect - github.com/Azure/go-autorest/autorest/azure/auth v0.5.11 // indirect - github.com/Azure/go-autorest/autorest/azure/cli v0.4.6 // indirect - github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect - github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect - github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect - github.com/Azure/go-autorest/logger v0.2.1 // indirect - github.com/Azure/go-autorest/tracing v0.6.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1 // indirect + github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.6.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/internal v1.8.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/keyvault/azkeys v0.10.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/keyvault/internal v0.7.1 // indirect + github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect github.com/BurntSushi/toml v1.2.1 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect - github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 // indirect + github.com/ProtonMail/go-crypto v1.0.0 // indirect github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect github.com/agext/levenshtein v1.2.3 // indirect github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect - github.com/armon/go-metrics v0.4.0 // indirect - github.com/armon/go-radix v1.0.0 // indirect github.com/atotto/clipboard v0.1.4 // indirect - github.com/aws/aws-sdk-go v1.44.298 // indirect - github.com/aws/aws-sdk-go-v2 v1.17.3 // indirect - github.com/aws/aws-sdk-go-v2/config v1.15.15 // indirect - github.com/aws/aws-sdk-go-v2/credentials v1.12.10 // indirect - github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.9 // indirect - github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.27 // indirect - github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.21 // indirect - github.com/aws/aws-sdk-go-v2/internal/ini v1.3.16 // indirect - github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.9 // indirect - github.com/aws/aws-sdk-go-v2/service/kms v1.18.1 // indirect - github.com/aws/aws-sdk-go-v2/service/sso v1.11.13 // indirect - github.com/aws/aws-sdk-go-v2/service/sts v1.16.10 // indirect - github.com/aws/smithy-go v1.13.5 // indirect + github.com/aws/aws-sdk-go v1.50.36 // indirect + github.com/aws/aws-sdk-go-v2 v1.26.1 // indirect + github.com/aws/aws-sdk-go-v2/config v1.27.11 // indirect + github.com/aws/aws-sdk-go-v2/credentials v1.17.11 // indirect + github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1 // indirect + github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.5 // indirect + github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.5 // indirect + github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.2 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.7 // indirect + github.com/aws/aws-sdk-go-v2/service/kms v1.30.1 // indirect + github.com/aws/aws-sdk-go-v2/service/sso v1.20.5 // indirect + github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4 // indirect + github.com/aws/aws-sdk-go-v2/service/sts v1.28.6 // indirect + github.com/aws/smithy-go v1.20.2 // indirect github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect github.com/blang/semver v3.5.1+incompatible // indirect github.com/cenkalti/backoff/v3 v3.2.2 // indirect github.com/charmbracelet/bubbles v0.16.1 // indirect - github.com/charmbracelet/bubbletea v0.24.2 // indirect + github.com/charmbracelet/bubbletea v0.25.0 // indirect github.com/charmbracelet/lipgloss v0.7.1 // indirect - github.com/cloudflare/circl v1.3.3 // indirect + github.com/cloudflare/circl v1.3.7 // indirect github.com/containerd/console v1.0.4-0.20230313162750-1ae8d489ac81 // indirect github.com/cyphar/filepath-securejoin v0.2.4 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/deckarep/golang-set/v2 v2.5.0 // indirect - github.com/dimchansky/utfbom v1.1.1 // indirect github.com/djherbis/times v1.5.0 // indirect github.com/edsrzf/mmap-go v1.1.0 // indirect github.com/emirpasic/gods v1.18.1 // indirect - github.com/fatih/color v1.13.0 // indirect + github.com/felixge/httpsnoop v1.0.4 // indirect github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect github.com/go-git/go-billy/v5 v5.5.0 // indirect - github.com/go-git/go-git/v5 v5.11.0 // indirect + github.com/go-git/go-git/v5 v5.12.0 // indirect + github.com/go-jose/go-jose/v3 v3.0.3 // indirect + github.com/go-logr/logr v1.4.1 // indirect + github.com/go-logr/stdr v1.2.2 // indirect github.com/gofrs/uuid v4.2.0+incompatible // indirect github.com/gogo/protobuf v1.3.2 // indirect - github.com/golang-jwt/jwt/v4 v4.4.2 // indirect + github.com/golang-jwt/jwt/v5 v5.2.1 // indirect github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect - github.com/golang/snappy v0.0.4 // indirect - github.com/google/go-cmp v0.6.0 // indirect github.com/google/go-querystring v1.1.0 // indirect - github.com/google/s2a-go v0.1.4 // indirect - github.com/google/uuid v1.3.0 // indirect - github.com/google/wire v0.5.0 // indirect - github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect - github.com/googleapis/gax-go/v2 v2.11.0 // indirect + github.com/google/s2a-go v0.1.7 // indirect + github.com/google/uuid v1.6.0 // indirect + github.com/google/wire v0.6.0 // indirect + github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect + github.com/googleapis/gax-go/v2 v2.12.2 // indirect github.com/gorilla/mux v1.8.0 // indirect github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645 // indirect - github.com/hashicorp/go-hclog v1.2.2 // indirect - github.com/hashicorp/go-immutable-radix v1.3.1 // indirect github.com/hashicorp/go-multierror v1.1.1 // indirect - github.com/hashicorp/go-plugin v1.4.6 // indirect - github.com/hashicorp/go-retryablehttp v0.7.1 // indirect + github.com/hashicorp/go-retryablehttp v0.7.5 // indirect github.com/hashicorp/go-rootcerts v1.0.2 // indirect - github.com/hashicorp/go-secure-stdlib/mlock v0.1.2 // indirect - github.com/hashicorp/go-secure-stdlib/parseutil v0.1.6 // indirect + github.com/hashicorp/go-secure-stdlib/parseutil v0.1.8 // indirect github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect - github.com/hashicorp/go-sockaddr v1.0.2 // indirect - github.com/hashicorp/go-uuid v1.0.3 // indirect - github.com/hashicorp/go-version v1.6.0 // indirect - github.com/hashicorp/golang-lru v0.5.4 // indirect + github.com/hashicorp/go-sockaddr v1.0.6 // indirect github.com/hashicorp/hcl v1.0.0 // indirect github.com/hashicorp/hcl/v2 v2.17.0 // indirect - github.com/hashicorp/vault/api v1.8.2 // indirect - github.com/hashicorp/vault/sdk v0.6.1 // indirect - github.com/hashicorp/yamux v0.1.1 // indirect + github.com/hashicorp/vault/api v1.12.0 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect github.com/jmespath/go-jmespath v0.4.0 // indirect github.com/json-iterator/go v1.1.12 // indirect github.com/kevinburke/ssh_config v1.2.0 // indirect + github.com/kylelemons/godebug v1.1.0 // indirect github.com/lucasb-eyer/go-colorful v1.2.0 // indirect - github.com/mattn/go-colorable v0.1.12 // indirect github.com/mattn/go-isatty v0.0.19 // indirect github.com/mattn/go-localereader v0.0.1 // indirect github.com/mitchellh/copystructure v1.2.0 // indirect github.com/mitchellh/go-ps v1.0.0 // indirect - github.com/mitchellh/go-testing-interface v1.14.1 // indirect github.com/mitchellh/go-wordwrap v1.0.1 // indirect github.com/mitchellh/reflectwalk v1.0.2 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect @@ -147,30 +132,30 @@ require ( github.com/muesli/reflow v0.3.0 // indirect github.com/muesli/termenv v0.15.2 // indirect github.com/natefinch/atomic v1.0.1 // indirect - github.com/oklog/run v1.1.0 // indirect github.com/opentracing/basictracer-go v1.1.0 // indirect github.com/opentracing/opentracing-go v1.2.0 // indirect github.com/pgavlin/fx v0.1.6 // indirect github.com/pgavlin/goldmark v1.1.33-0.20200616210433-b5eb04559386 // indirect - github.com/pierrec/lz4 v2.6.1+incompatible // indirect github.com/pjbgf/sha1cd v0.3.0 // indirect + github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect github.com/pkg/term v1.1.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/pulumi/appdash v0.0.0-20231130102222-75f619a67231 // indirect - github.com/pulumi/esc v0.6.2 // indirect + github.com/pulumi/esc v0.9.1 // indirect + github.com/pulumi/inflector v0.1.1 // indirect github.com/rivo/uniseg v0.4.4 // indirect - github.com/rogpeppe/go-internal v1.11.0 // indirect + github.com/rogpeppe/go-internal v1.12.0 // indirect github.com/ryanuber/go-glob v1.0.0 // indirect github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 // indirect github.com/santhosh-tekuri/jsonschema/v5 v5.0.0 // indirect github.com/segmentio/asm v1.1.3 // indirect github.com/segmentio/encoding v0.3.5 // indirect - github.com/sergi/go-diff v1.3.1 // indirect - github.com/skeema/knownhosts v1.2.1 // indirect + github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect + github.com/skeema/knownhosts v1.2.2 // indirect github.com/spf13/afero v1.9.5 // indirect - github.com/spf13/cobra v1.7.0 // indirect + github.com/spf13/cobra v1.8.0 // indirect github.com/spf13/pflag v1.0.5 // indirect - github.com/stretchr/objx v0.5.0 // indirect + github.com/stretchr/objx v0.5.2 // indirect github.com/texttheater/golang-levenshtein v1.0.1 // indirect github.com/tweekmonster/luser v0.0.0-20161003172636-3fa38070dbd7 // indirect github.com/uber/jaeger-client-go v2.30.0+incompatible // indirect @@ -181,26 +166,30 @@ require ( github.com/xeipuuv/gojsonschema v1.2.0 // indirect github.com/zclconf/go-cty v1.13.2 // indirect go.opencensus.io v0.24.0 // indirect + go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect + go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect + go.opentelemetry.io/otel v1.24.0 // indirect + go.opentelemetry.io/otel/metric v1.24.0 // indirect + go.opentelemetry.io/otel/trace v1.24.0 // indirect go.uber.org/atomic v1.9.0 // indirect - gocloud.dev v0.27.0 // indirect - gocloud.dev/secrets/hashivault v0.27.0 // indirect - golang.org/x/crypto v0.17.0 // indirect - golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect - golang.org/x/mod v0.14.0 // indirect - golang.org/x/net v0.19.0 // indirect - golang.org/x/sync v0.5.0 // indirect - golang.org/x/sys v0.15.0 // indirect - golang.org/x/term v0.15.0 // indirect - golang.org/x/text v0.14.0 // indirect - golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9 // indirect - golang.org/x/tools v0.15.0 // indirect - golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect - google.golang.org/appengine v1.6.7 // indirect - google.golang.org/genproto v0.0.0-20230726155614-23370e0ffb3e // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20230706204954-ccb25ca9f130 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20230706204954-ccb25ca9f130 // indirect - google.golang.org/protobuf v1.31.0 // indirect - gopkg.in/square/go-jose.v2 v2.6.0 // indirect + gocloud.dev v0.37.0 // indirect + gocloud.dev/secrets/hashivault v0.37.0 // indirect + golang.org/x/crypto v0.24.0 // indirect + golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8 // indirect + golang.org/x/mod v0.18.0 // indirect + golang.org/x/net v0.26.0 // indirect + golang.org/x/sync v0.7.0 // indirect + golang.org/x/sys v0.21.0 // indirect + golang.org/x/term v0.21.0 // indirect + golang.org/x/text v0.16.0 // indirect + golang.org/x/time v0.5.0 // indirect + golang.org/x/tools v0.22.0 // indirect + golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect + google.golang.org/appengine v1.6.8 // indirect + google.golang.org/genproto v0.0.0-20240311173647-c811ad7063a7 // indirect + google.golang.org/genproto/googleapis/api v0.0.0-20240311173647-c811ad7063a7 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240311173647-c811ad7063a7 // indirect + google.golang.org/protobuf v1.33.0 // indirect gopkg.in/warnings.v0 v0.1.2 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect lukechampine.com/frand v1.4.2 // indirect diff --git a/provider/go.sum b/provider/go.sum index a3f4bde06b..2d5a91109e 100644 --- a/provider/go.sum +++ b/provider/go.sum @@ -1,5 +1,3 @@ -bazil.org/fuse v0.0.0-20160811212531-371fbbdaa898/go.mod h1:Xbm+BRKSBEpa4q4hTSxohYNQpsxXPbPry4JJWOB3LB8= -bazil.org/fuse v0.0.0-20200407214033-5883e5a4b512/go.mod h1:FbcW6z/2VytnFDhZfumh8Ss8zxHE6qpMP5sHTRe0EaM= cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= @@ -19,764 +17,213 @@ cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHOb cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY= -cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= -cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= -cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= -cloud.google.com/go v0.82.0/go.mod h1:vlKccHJGuFBFufnAnuB08dfEH9Y3H7dzDzRECFdC2TA= -cloud.google.com/go v0.83.0/go.mod h1:Z7MJUsANfY0pYPdw0lbnivPx4/vhy/e2FEkSkF7vAVY= -cloud.google.com/go v0.84.0/go.mod h1:RazrYuxIK6Kb7YrzzhPoLmCVzl7Sup4NrbKPg8KHSUM= -cloud.google.com/go v0.87.0/go.mod h1:TpDYlFy7vuLzZMMZ+B6iRiELaY7z/gJPaqbMx6mlWcY= -cloud.google.com/go v0.90.0/go.mod h1:kRX0mNRHe0e2rC6oNakvwQqzyDmg57xJ+SZU1eT2aDQ= -cloud.google.com/go v0.93.3/go.mod h1:8utlLll2EF5XMAV15woO4lSbWQlk8rer9aLOfLh7+YI= -cloud.google.com/go v0.94.1/go.mod h1:qAlAugsXlC+JWO+Bke5vCtc9ONxjQT3drlTTnAplMW4= -cloud.google.com/go v0.97.0/go.mod h1:GF7l59pYBVlXQIBLx3a761cZ41F9bBH3JUlihCt2Udc= -cloud.google.com/go v0.99.0/go.mod h1:w0Xx2nLzqWJPuozYQX+hFfCSI8WioryfRDzkoI/Y2ZA= -cloud.google.com/go v0.100.1/go.mod h1:fs4QogzfH5n2pBXBP9vRiU+eCny7lD2vmFZy79Iuw1U= -cloud.google.com/go v0.100.2/go.mod h1:4Xra9TjzAeYHrl5+oeLlzbM2k3mjVhZh4UqTZ//w99A= -cloud.google.com/go v0.102.0/go.mod h1:oWcCzKlqJ5zgHQt9YsaeTY9KzIvjyy0ArmiBUgpQ+nc= -cloud.google.com/go v0.102.1/go.mod h1:XZ77E9qnTEnrgEOvr4xzfdX5TRo7fB4T2F4O6+34hIU= -cloud.google.com/go v0.103.0/go.mod h1:vwLx1nqLrzLX/fpwSMOXmFIqBOyHsvHbnAdbGSJ+mKk= -cloud.google.com/go v0.110.4 h1:1JYyxKMN9hd5dR2MYTPWkGUgcoxVVhg0LKNKEo0qvmk= -cloud.google.com/go v0.110.4/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI= +cloud.google.com/go v0.112.1 h1:uJSeirPke5UNZHIb4SxfZklVSiWWVqW4oXlETwZziwM= +cloud.google.com/go v0.112.1/go.mod h1:+Vbu+Y1UU+I1rjmzeMOb/8RfkKJK2Gyxi1X6jJCZLo4= cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= -cloud.google.com/go/compute v0.1.0/go.mod h1:GAesmwr110a34z04OlxYkATPBEfVhkymfTBXtfbBFow= -cloud.google.com/go/compute v1.3.0/go.mod h1:cCZiE1NHEtai4wiufUhW8I8S1JKkAnhnQJWM7YD99wM= -cloud.google.com/go/compute v1.5.0/go.mod h1:9SMHyhJlzhlkJqrPAc839t2BZFTSk6Jdj6mkzQJeu0M= -cloud.google.com/go/compute v1.6.0/go.mod h1:T29tfhtVbq1wvAPo0E3+7vhgmkOYeXjhFvz/FMzPu0s= -cloud.google.com/go/compute v1.6.1/go.mod h1:g85FgpzFvNULZ+S8AYq87axRKuf2Kh7deLqV/jJ3thU= -cloud.google.com/go/compute v1.7.0/go.mod h1:435lt8av5oL9P3fv1OEzSbSUe+ybHXGMPQHHZWZxy9U= -cloud.google.com/go/compute v1.20.1 h1:6aKEtlUiwEpJzM001l0yFkpXmUVXaN8W+fbkb2AZNbg= -cloud.google.com/go/compute v1.20.1/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= +cloud.google.com/go/compute v1.25.0 h1:H1/4SqSUhjPFE7L5ddzHOfY2bCAvjwNRZPNl6Ni5oYU= +cloud.google.com/go/compute v1.25.0/go.mod h1:GR7F0ZPZH8EhChlMo9FkLd7eUTwEymjqQagxzilIxIE= cloud.google.com/go/compute/metadata v0.2.3 h1:mg4jlk7mCAj6xXp9UJ4fjI9VUI5rubuGBW5aJ7UnBMY= cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA= cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= -cloud.google.com/go/firestore v1.1.0/go.mod h1:ulACoGHTpvq5r8rxGJ4ddJZBZqakUQqClKRT5SZwBmk= -cloud.google.com/go/firestore v1.6.1/go.mod h1:asNXNOzBdyVQmEU+ggO8UPodTkEVFW5Qx+rwHnAz+EY= -cloud.google.com/go/iam v0.1.0/go.mod h1:vcUNEa0pEm0qRVpmWepWaFMIAI8/hjB9mO8rNCJtF6c= -cloud.google.com/go/iam v0.3.0/go.mod h1:XzJPvDayI+9zsASAFO68Hk07u3z+f+JrT2xXNdp4bnY= -cloud.google.com/go/iam v1.1.1 h1:lW7fzj15aVIXYHREOqjRBV9PsH0Z6u8Y46a1YGvQP4Y= -cloud.google.com/go/iam v1.1.1/go.mod h1:A5avdyVL2tCppe4unb0951eI9jreack+RJ0/d+KUZOU= -cloud.google.com/go/kms v1.4.0/go.mod h1:fajBHndQ+6ubNw6Ss2sSd+SWvjL26RNo/dr7uxsnnOA= -cloud.google.com/go/kms v1.12.1 h1:xZmZuwy2cwzsocmKDOPu4BL7umg8QXagQx6fKVmf45U= -cloud.google.com/go/kms v1.12.1/go.mod h1:c9J991h5DTl+kg7gi3MYomh12YEENGrf48ee/N/2CDM= -cloud.google.com/go/logging v1.7.0 h1:CJYxlNNNNAMkHp9em/YEXcfJg+rPDg7YfwoRpMU+t5I= -cloud.google.com/go/logging v1.7.0/go.mod h1:3xjP2CjkM3ZkO73aj4ASA5wRPGGCRrPIAeNqVNkzY8M= -cloud.google.com/go/longrunning v0.5.1 h1:Fr7TXftcqTudoyRJa113hyaqlGdiBQkp0Gq7tErFDWI= -cloud.google.com/go/longrunning v0.5.1/go.mod h1:spvimkwdz6SPWKEt/XBij79E9fiTkHSQl/fRUUQJYJc= -cloud.google.com/go/monitoring v1.1.0/go.mod h1:L81pzz7HKn14QCMaCs6NTQkdBnE87TElyanS95vIcl4= -cloud.google.com/go/monitoring v1.5.0/go.mod h1:/o9y8NYX5j91JjD/JvGLYbi86kL11OjyJXq2XziLJu4= +cloud.google.com/go/iam v1.1.6 h1:bEa06k05IO4f4uJonbB5iAgKTPpABy1ayxaIZV/GHVc= +cloud.google.com/go/iam v1.1.6/go.mod h1:O0zxdPeGBoFdWW3HWmBxJsk0pfvNM/p/qa82rWOGTwI= +cloud.google.com/go/kms v1.15.7 h1:7caV9K3yIxvlQPAcaFffhlT7d1qpxjB1wHBtjWa13SM= +cloud.google.com/go/kms v1.15.7/go.mod h1:ub54lbsa6tDkUwnu4W7Yt1aAIFLnspgh0kPGToDukeI= +cloud.google.com/go/logging v1.9.0 h1:iEIOXFO9EmSiTjDmfpbRjOxECO7R8C7b8IXUGOj7xZw= +cloud.google.com/go/logging v1.9.0/go.mod h1:1Io0vnZv4onoUnsVUQY3HZ3Igb1nBchky0A0y7BBBhE= +cloud.google.com/go/longrunning v0.5.5 h1:GOE6pZFdSrTb4KAiKnXsJBtlE6mEyaW44oKyMILWnOg= +cloud.google.com/go/longrunning v0.5.5/go.mod h1:WV2LAxD8/rg5Z1cNW6FJ/ZpX4E4VnDnoTk0yawPBB7s= cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= -cloud.google.com/go/pubsub v1.24.0/go.mod h1:rWv09Te1SsRpRGPiWOMDKraMQTJyJps4MkUCoMGUgqw= -cloud.google.com/go/secretmanager v1.5.0/go.mod h1:5C9kM+RwSpkURNovKySkNvGQLUaOgyoR5W0RUx2SyHQ= cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= -cloud.google.com/go/storage v1.22.1/go.mod h1:S8N1cAStu7BOeFfE8KAQzmyyLkK8p/vmRq6kuBTW58Y= -cloud.google.com/go/storage v1.23.0/go.mod h1:vOEEDNFnciUMhBeT6hsJIn3ieU5cFRmzeLgDvXzfIXc= -cloud.google.com/go/storage v1.24.0/go.mod h1:3xrJEFMXBsQLgxwThyjuD3aYlroL0TMRec1ypGUQ0KE= -cloud.google.com/go/storage v1.30.1 h1:uOdMxAs8HExqBlnLtnQyP0YkvbiDpdGShGKtx6U/oNM= -cloud.google.com/go/storage v1.30.1/go.mod h1:NfxhC0UJE1aXSx7CIIbCf7y9HKT7BiccwkR7+P7gN8E= -cloud.google.com/go/trace v1.0.0/go.mod h1:4iErSByzxkyHWzzlAj63/Gmjz0NH1ASqhJguHpGcr6A= -cloud.google.com/go/trace v1.2.0/go.mod h1:Wc8y/uYyOhPy12KEnXG9XGrvfMz5F5SrYecQlbW1rwM= -code.cloudfoundry.org/clock v0.0.0-20180518195852-02e53af36e6c/go.mod h1:QD9Lzhd/ux6eNQVUDVRJX/RKTigpewimNYBi7ivZKY8= -contrib.go.opencensus.io/exporter/aws v0.0.0-20200617204711-c478e41e60e9/go.mod h1:uu1P0UCM/6RbsMrgPa98ll8ZcHM858i/AD06a9aLRCA= -contrib.go.opencensus.io/exporter/stackdriver v0.13.13/go.mod h1:5pSSGY0Bhuk7waTHuDf4aQ8D2DrhgETRo9fy6k3Xlzc= -contrib.go.opencensus.io/integrations/ocsql v0.1.7/go.mod h1:8DsSdjz3F+APR+0z0WkU1aRorQCFfRxvqjUUPMbF3fE= +cloud.google.com/go/storage v1.39.1 h1:MvraqHKhogCOTXTlct/9C3K3+Uy2jBmFYb3/Sp6dVtY= +cloud.google.com/go/storage v1.39.1/go.mod h1:xK6xZmxZmo+fyP7+DEF6FhNc24/JAe95OLyOHCXFH1o= dario.cat/mergo v1.0.0 h1:AGCNq9Evsj31mOgNPcLyXc+4PNABt905YmuqPYYpBWk= dario.cat/mergo v1.0.0/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= -github.com/AdaLogics/go-fuzz-headers v0.0.0-20210715213245-6c3934b029d8/go.mod h1:CzsSbkDixRphAF5hS6wbMKq0eI6ccJRb7/A0M6JBnwg= -github.com/Azure/azure-amqp-common-go/v3 v3.2.3/go.mod h1:7rPmbSfszeovxGfc5fSAXE4ehlXQZHpMja2OtxC2Tas= -github.com/Azure/azure-sdk-for-go v16.2.1+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= -github.com/Azure/azure-sdk-for-go v63.0.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= -github.com/Azure/azure-sdk-for-go v65.0.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= -github.com/Azure/azure-sdk-for-go v66.0.0+incompatible h1:bmmC38SlE8/E81nNADlgmVGurPWMHDX2YNXVQMrBpEE= -github.com/Azure/azure-sdk-for-go v66.0.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= -github.com/Azure/azure-sdk-for-go/sdk/azcore v0.19.0/go.mod h1:h6H6c8enJmmocHUbLiiGY6sx7f9i+X3m1CHdd5c6Rdw= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0/go.mod h1:uGG2W01BaETf0Ozp+QxxKJdMBNRWPdstHG0Fmdwn1/U= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.1.1/go.mod h1:uGG2W01BaETf0Ozp+QxxKJdMBNRWPdstHG0Fmdwn1/U= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.4.0 h1:rTnT/Jrcm+figWlYz4Ixzt0SJVR2cMC8lvZcimipiEY= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.4.0/go.mod h1:ON4tFdPTwRcgWEaVDrN3584Ef+b7GgSJaXxe5fW9t4M= -github.com/Azure/azure-sdk-for-go/sdk/azidentity v0.11.0/go.mod h1:HcM1YX14R7CJcghJGOYCgdezslRSVzqwLf/q+4Y2r/0= -github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0/go.mod h1:+6sju8gk8FRmSajX3Oz4G5Gm7P+mbqE9FVaXXFYTkCM= -github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0 h1:QkAcEIAKbNL4KoFr4SathZPhDhF4mVwpBMFlYjyAqy8= -github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0/go.mod h1:bhXu1AjYL+wutSL/kpSq6s7733q2Rb0yuot9Zgfqa/0= -github.com/Azure/azure-sdk-for-go/sdk/internal v0.7.0/go.mod h1:yqy467j36fJxcRV2TzfVZ1pCb5vxm4BtZPUdYWe/Xo8= -github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0/go.mod h1:eWRD7oawr1Mu1sLCawqVc0CUiF43ia3qQMxLscsKQ9w= -github.com/Azure/azure-sdk-for-go/sdk/internal v1.2.0 h1:leh5DwKv6Ihwi+h60uHtn6UWAxBbZ0q8DwQVMzf61zw= -github.com/Azure/azure-sdk-for-go/sdk/internal v1.2.0/go.mod h1:eWRD7oawr1Mu1sLCawqVc0CUiF43ia3qQMxLscsKQ9w= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1 h1:E+OJmp2tPvt1W+amx48v1eqbjDYsgN+RzP4q16yV5eM= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1/go.mod h1:a6xsAQUZg+VsS3TJ05SRp524Hs4pZ/AeFSr5ENf0Yjo= +github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.6.0 h1:U2rTu3Ef+7w9FHKIAXM6ZyqF3UOWJZ12zIm8zECAFfg= +github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.6.0/go.mod h1:9kIvujWAA58nmPmWB1m23fyWic1kYZMxD9CxaWn4Qpg= +github.com/Azure/azure-sdk-for-go/sdk/internal v1.8.0 h1:jBQA3cKT4L2rWMpgE7Yt3Hwh2aUj8KXjIGLxjHeYNNo= +github.com/Azure/azure-sdk-for-go/sdk/internal v1.8.0/go.mod h1:4OG6tQ9EOP/MT0NMjDlRzWoVFxfu9rN9B2X+tlSVktg= github.com/Azure/azure-sdk-for-go/sdk/keyvault/azkeys v0.10.0 h1:m/sWOGCREuSBqg2htVQTBY8nOZpyajYztF0vUvSZTuM= github.com/Azure/azure-sdk-for-go/sdk/keyvault/azkeys v0.10.0/go.mod h1:Pu5Zksi2KrU7LPbZbNINx6fuVrUp/ffvpxdDj+i8LeE= github.com/Azure/azure-sdk-for-go/sdk/keyvault/internal v0.7.1 h1:FbH3BbSb4bvGluTesZZ+ttN/MDsnMmQP36OSnDuSXqw= github.com/Azure/azure-sdk-for-go/sdk/keyvault/internal v0.7.1/go.mod h1:9V2j0jn9jDEkCkv8w/bKTNppX/d0FVA1ud77xCIP4KA= -github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus v1.0.2/go.mod h1:LH9XQnMr2ZYxQdVdCrzLO9mxeDyrDFa6wbSI3x5zCZk= -github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v0.4.1/go.mod h1:eZ4g6GUvXiGulfIbbhh1Xr4XwUYaYaWMqzGD/284wCA= -github.com/Azure/go-amqp v0.17.0/go.mod h1:9YJ3RhxRT1gquYnzpZO1vcYMMpAdJT+QEg6fwmw9Zlg= -github.com/Azure/go-amqp v0.17.5/go.mod h1:9YJ3RhxRT1gquYnzpZO1vcYMMpAdJT+QEg6fwmw9Zlg= -github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78/go.mod h1:LmzpDX56iTiv29bbRTIsUNlaFfuhWRQBWjQdVyAevI8= -github.com/Azure/go-ansiterm v0.0.0-20210608223527-2377c96fe795/go.mod h1:LmzpDX56iTiv29bbRTIsUNlaFfuhWRQBWjQdVyAevI8= -github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E= -github.com/Azure/go-autorest v10.8.1+incompatible/go.mod h1:r+4oMnoxhatjLLJ6zxSWATqVooLgysK6ZNox3g/xq24= -github.com/Azure/go-autorest v14.2.0+incompatible h1:V5VMDjClD3GiElqLWO7mz2MxNAK/vTfRHdAubSIPRgs= -github.com/Azure/go-autorest v14.2.0+incompatible/go.mod h1:r+4oMnoxhatjLLJ6zxSWATqVooLgysK6ZNox3g/xq24= -github.com/Azure/go-autorest/autorest v0.11.1/go.mod h1:JFgpikqFJ/MleTTxwepExTKnFUKKszPS8UavbQYUMuw= -github.com/Azure/go-autorest/autorest v0.11.18/go.mod h1:dSiJPy22c3u0OtOKDNttNgqpNFY/GeWa7GH/Pz56QRA= -github.com/Azure/go-autorest/autorest v0.11.24/go.mod h1:G6kyRlFnTuSbEYkQGawPfsCswgme4iYf6rfSKUDzbCc= -github.com/Azure/go-autorest/autorest v0.11.25/go.mod h1:7l8ybrIdUmGqZMTD0sRtAr8NvbHjfofbf8RSP2q7w7U= -github.com/Azure/go-autorest/autorest v0.11.27/go.mod h1:7l8ybrIdUmGqZMTD0sRtAr8NvbHjfofbf8RSP2q7w7U= -github.com/Azure/go-autorest/autorest v0.11.28 h1:ndAExarwr5Y+GaHE6VCaY1kyS/HwwGGyuimVhWsHOEM= -github.com/Azure/go-autorest/autorest v0.11.28/go.mod h1:MrkzG3Y3AH668QyF9KRk5neJnGgmhQ6krbhR8Q5eMvA= -github.com/Azure/go-autorest/autorest/adal v0.9.0/go.mod h1:/c022QCutn2P7uY+/oQWWNcK9YU+MH96NgK+jErpbcg= -github.com/Azure/go-autorest/autorest/adal v0.9.5/go.mod h1:B7KF7jKIeC9Mct5spmyCB/A8CG/sEz1vwIRGv/bbw7A= -github.com/Azure/go-autorest/autorest/adal v0.9.13/go.mod h1:W/MM4U6nLxnIskrw4UwWzlHfGjwUS50aOsc/I3yuU8M= -github.com/Azure/go-autorest/autorest/adal v0.9.18/go.mod h1:XVVeme+LZwABT8K5Lc3hA4nAe8LDBVle26gTrguhhPQ= -github.com/Azure/go-autorest/autorest/adal v0.9.20/go.mod h1:XVVeme+LZwABT8K5Lc3hA4nAe8LDBVle26gTrguhhPQ= -github.com/Azure/go-autorest/autorest/adal v0.9.21 h1:jjQnVFXPfekaqb8vIsv2G1lxshoW+oGv4MDlhRtnYZk= -github.com/Azure/go-autorest/autorest/adal v0.9.21/go.mod h1:zua7mBUaCc5YnSLKYgGJR/w5ePdMDA6H56upLsHzA9U= -github.com/Azure/go-autorest/autorest/azure/auth v0.5.11 h1:P6bYXFoao05z5uhOQzbC3Qd8JqF3jUoocoTeIxkp2cA= -github.com/Azure/go-autorest/autorest/azure/auth v0.5.11/go.mod h1:84w/uV8E37feW2NCJ08uT9VBfjfUHpgLVnG2InYD6cg= -github.com/Azure/go-autorest/autorest/azure/cli v0.4.5/go.mod h1:ADQAXrkgm7acgWVUNamOgh8YNrv4p27l3Wc55oVfpzg= -github.com/Azure/go-autorest/autorest/azure/cli v0.4.6 h1:w77/uPk80ZET2F+AfQExZyEWtn+0Rk/uw17m9fv5Ajc= -github.com/Azure/go-autorest/autorest/azure/cli v0.4.6/go.mod h1:piCfgPho7BiIDdEQ1+g4VmKyD5y+p/XtSNqE6Hc4QD0= -github.com/Azure/go-autorest/autorest/date v0.3.0 h1:7gUk1U5M/CQbp9WoqinNzJar+8KY+LPI6wiWrP/myHw= -github.com/Azure/go-autorest/autorest/date v0.3.0/go.mod h1:BI0uouVdmngYNUzGWeSYnokU+TrmwEsOqdt8Y6sso74= -github.com/Azure/go-autorest/autorest/mocks v0.4.0/go.mod h1:LTp+uSrOhSkaKrUy935gNZuuIPPVsHlr9DSOxSayd+k= -github.com/Azure/go-autorest/autorest/mocks v0.4.1/go.mod h1:LTp+uSrOhSkaKrUy935gNZuuIPPVsHlr9DSOxSayd+k= -github.com/Azure/go-autorest/autorest/mocks v0.4.2 h1:PGN4EDXnuQbojHbU0UWoNvmu9AGVwYHG9/fkDYhtAfw= -github.com/Azure/go-autorest/autorest/mocks v0.4.2/go.mod h1:Vy7OitM9Kei0i1Oj+LvyAWMXJHeKH1MVlzFugfVrmyU= -github.com/Azure/go-autorest/autorest/to v0.4.0 h1:oXVqrxakqqV1UZdSazDOPOLvOIz+XA683u8EctwboHk= -github.com/Azure/go-autorest/autorest/to v0.4.0/go.mod h1:fE8iZBn7LQR7zH/9XU2NcPR4o9jEImooCeWJcYV/zLE= -github.com/Azure/go-autorest/autorest/validation v0.3.1 h1:AgyqjAd94fwNAoTjl/WQXg4VvFeRFpO+UhNyRXqF1ac= -github.com/Azure/go-autorest/autorest/validation v0.3.1/go.mod h1:yhLgjC0Wda5DYXl6JAsWyUe4KVNffhoDhG0zVzUMo3E= -github.com/Azure/go-autorest/logger v0.2.0/go.mod h1:T9E3cAhj2VqvPOtCYAvby9aBXkZmbF5NWuPV8+WeEW8= -github.com/Azure/go-autorest/logger v0.2.1 h1:IG7i4p/mDa2Ce4TRyAO8IHnVhAVF3RFU+ZtXWSmf4Tg= -github.com/Azure/go-autorest/logger v0.2.1/go.mod h1:T9E3cAhj2VqvPOtCYAvby9aBXkZmbF5NWuPV8+WeEW8= -github.com/Azure/go-autorest/tracing v0.6.0 h1:TYi4+3m5t6K48TGI9AUdb+IzbnSxvnvUMfuitfgcfuo= -github.com/Azure/go-autorest/tracing v0.6.0/go.mod h1:+vhtPC754Xsa23ID7GlGsrdKBpUA79WCAKPPZVC2DeU= -github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0/go.mod h1:Vt9sXTKwMyGcOxSmLDMnGPgqsUg7m8pe215qMLrDXw4= -github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1 h1:BWe8a+f/t+7KY7zH2mqygeUD0t8hNFXe08p1Pb3/jKE= -github.com/AzureAD/microsoft-authentication-library-for-go v0.5.1/go.mod h1:Vt9sXTKwMyGcOxSmLDMnGPgqsUg7m8pe215qMLrDXw4= +github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 h1:XHOnouVk1mxXfQidrMEnLlPk9UMeRtyBTnEFtxkV0kU= +github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2/go.mod h1:wP83P5OoQ5p6ip3ScPr0BAq0BvuPAvacpEuSzyouqAI= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/toml v1.2.1 h1:9F2/+DoOYIOksmaJFPw1tGFy1eDnIJXg+UHjuD8lTak= github.com/BurntSushi/toml v1.2.1/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= -github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= -github.com/GoogleCloudPlatform/cloudsql-proxy v1.31.2/go.mod h1:qR6jVnZTKDCW3j+fC9mOEPHm++1nKDMkqbbkD6KNsfo= github.com/HdrHistogram/hdrhistogram-go v1.1.2 h1:5IcZpTvzydCQeHzK4Ef/D5rrSqwxob0t8PQPMybUNFM= github.com/HdrHistogram/hdrhistogram-go v1.1.2/go.mod h1:yDgFjdqOqDEKOvasDdhWNXYg9BVp4O+o5f6V/ehm6Oo= -github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible/go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0= -github.com/Masterminds/semver/v3 v3.1.1/go.mod h1:VPu/7SZ7ePZ3QOrcuXROw5FAcLl4a0cBrbBpGY/8hQs= -github.com/Microsoft/go-winio v0.4.11/go.mod h1:VhR8bwka0BXejwEJY73c50VrPtXAaKcyvVC4A4RozmA= -github.com/Microsoft/go-winio v0.4.14/go.mod h1:qXqCSQ3Xa7+6tgxaGTIe4Kpcdsi+P8jBhyzoq1bpyYA= -github.com/Microsoft/go-winio v0.4.15-0.20190919025122-fc70bd9a86b5/go.mod h1:tTuCMEN+UleMWgg9dVx4Hu52b1bJo+59jBh3ajtinzw= -github.com/Microsoft/go-winio v0.4.16-0.20201130162521-d1ffc52c7331/go.mod h1:XB6nPKklQyQ7GC9LdcBEcBl8PF76WugXOPRXwdLnMv0= -github.com/Microsoft/go-winio v0.4.16/go.mod h1:XB6nPKklQyQ7GC9LdcBEcBl8PF76WugXOPRXwdLnMv0= -github.com/Microsoft/go-winio v0.4.17-0.20210211115548-6eac466e5fa3/go.mod h1:JPGBdM1cNvN/6ISo+n8V5iA4v8pBzdOpzfwIujj1a84= -github.com/Microsoft/go-winio v0.4.17-0.20210324224401-5516f17a5958/go.mod h1:JPGBdM1cNvN/6ISo+n8V5iA4v8pBzdOpzfwIujj1a84= -github.com/Microsoft/go-winio v0.4.17/go.mod h1:JPGBdM1cNvN/6ISo+n8V5iA4v8pBzdOpzfwIujj1a84= -github.com/Microsoft/go-winio v0.5.1/go.mod h1:JPGBdM1cNvN/6ISo+n8V5iA4v8pBzdOpzfwIujj1a84= github.com/Microsoft/go-winio v0.5.2/go.mod h1:WpS1mjBmmwHBEWmogvA2mj8546UReBk4v8QkMxJ6pZY= github.com/Microsoft/go-winio v0.6.1 h1:9/kr64B9VUZrLm5YYwbGtUJnMgqWVOdUAXu6Migciow= github.com/Microsoft/go-winio v0.6.1/go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM= -github.com/Microsoft/hcsshim v0.8.6/go.mod h1:Op3hHsoHPAvb6lceZHDtd9OkTew38wNoXnJs8iY7rUg= -github.com/Microsoft/hcsshim v0.8.7-0.20190325164909-8abdbb8205e4/go.mod h1:Op3hHsoHPAvb6lceZHDtd9OkTew38wNoXnJs8iY7rUg= -github.com/Microsoft/hcsshim v0.8.7/go.mod h1:OHd7sQqRFrYd3RmSgbgji+ctCwkbq2wbEYNSzOYtcBQ= -github.com/Microsoft/hcsshim v0.8.9/go.mod h1:5692vkUqntj1idxauYlpoINNKeqCiG6Sg38RRsjT5y8= -github.com/Microsoft/hcsshim v0.8.14/go.mod h1:NtVKoYxQuTLx6gEq0L96c9Ju4JbRJ4nY2ow3VK6a9Lg= -github.com/Microsoft/hcsshim v0.8.15/go.mod h1:x38A4YbHbdxJtc0sF6oIz+RG0npwSCAvn69iY6URG00= -github.com/Microsoft/hcsshim v0.8.16/go.mod h1:o5/SZqmR7x9JNKsW3pu+nqHm0MF8vbA+VxGOoXdC600= -github.com/Microsoft/hcsshim v0.8.20/go.mod h1:+w2gRZ5ReXQhFOrvSQeNfhrYB/dg3oDwTOcER2fw4I4= -github.com/Microsoft/hcsshim v0.8.21/go.mod h1:+w2gRZ5ReXQhFOrvSQeNfhrYB/dg3oDwTOcER2fw4I4= -github.com/Microsoft/hcsshim v0.8.23/go.mod h1:4zegtUJth7lAvFyc6cH2gGQ5B3OFQim01nnU2M8jKDg= -github.com/Microsoft/hcsshim v0.9.2/go.mod h1:7pLA8lDk46WKDWlVsENo92gC0XFa8rbKfyFRBqxEbCc= -github.com/Microsoft/hcsshim/test v0.0.0-20201218223536-d3e5debf77da/go.mod h1:5hlzMzRKMLyo42nCZ9oml8AdTlq/0cvIaBv6tK1RehU= -github.com/Microsoft/hcsshim/test v0.0.0-20210227013316-43a75bb4edd3/go.mod h1:mw7qgWloBUl75W/gVH3cQszUg1+gUITj7D6NY7ywVnY= -github.com/NYTimes/gziphandler v0.0.0-20170623195520-56545f4a5d46/go.mod h1:3wb06e3pkSAbeQ52E9H9iFoQsEEwGN64994WTCIhntQ= -github.com/NYTimes/gziphandler v1.1.1/go.mod h1:n/CVRwUEOgIxrgPvAQhUUr9oeUtvrhMomdKFjzJNB0c= -github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= -github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 h1:kkhsdkhsCvIsutKu5zLMgWtgh9YxGCNAw8Ad8hjwfYg= -github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371/go.mod h1:EjAoLdwvbIOoOQr3ihjnSoLZRtE8azugULFRteWMNc0= -github.com/PuerkitoBio/purell v1.0.0/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= -github.com/PuerkitoBio/purell v1.1.1/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= -github.com/PuerkitoBio/urlesc v0.0.0-20160726150825-5bd2802263f2/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= -github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= -github.com/Shopify/logrus-bugsnag v0.0.0-20171204204709-577dee27f20d/go.mod h1:HI8ITrYtUY+O+ZhtlqUnD8+KwNPOyugEhfP9fdUIaEQ= -github.com/Shopify/sarama v1.19.0/go.mod h1:FVkBWblsNy7DGZRfXLU0O9RCGt5g3g3yEuWXgklEdEo= -github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= -github.com/VividCortex/gohistogram v1.0.0/go.mod h1:Pf5mBqqDxYaXu3hDrrU+w6nw50o/4+TcAqDqk/vUH7g= +github.com/ProtonMail/go-crypto v1.0.0 h1:LRuvITjQWX+WIfr930YHG2HNfjR1uOfyf5vE0kC2U78= +github.com/ProtonMail/go-crypto v1.0.0/go.mod h1:EjAoLdwvbIOoOQr3ihjnSoLZRtE8azugULFRteWMNc0= github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da h1:KjTM2ks9d14ZYCvmHS9iAKVt9AyzRSqNU1qabPih5BY= github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da/go.mod h1:eHEWzANqSiWQsof+nXEI9bUVUyV6F53Fp89EuCh2EAA= -github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5/go.mod h1:SkGFH1ia65gfNATL8TAiHDNxPzPdmEL5uirI2Uyuz6c= github.com/agext/levenshtein v1.2.3 h1:YB2fHEn0UJagG8T1rrWknE3ZQzWM06O8AMAatNn7lmo= github.com/agext/levenshtein v1.2.3/go.mod h1:JEDfjyjHDjOF/1e4FlBE/PkbqA9OfWu2ki2W0IB5558= -github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= -github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= -github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= -github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137/go.mod h1:OMCwj8VM1Kc9e19TLln2VL61YJF0x1XFtfdL4JdbSyE= -github.com/alexflint/go-filemutex v0.0.0-20171022225611-72bdc8eae2ae/go.mod h1:CgnQgUtFrFz9mxFNtED3jI5tLDjKlOM+oUF/sTk6ps0= -github.com/alexflint/go-filemutex v1.1.0/go.mod h1:7P4iRhttt/nUvUOrYIhcpMzv2G6CY9UnI16Z+UJqRyk= github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be h1:9AeTilPcZAjCFIImctFaOjnTIavg87rW78vTPkQqLI8= github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be/go.mod h1:ySMOLuWl6zY27l47sB3qLNK6tF2fkHG55UZxx8oIVo4= -github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= -github.com/apache/thrift v0.12.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ= -github.com/apache/thrift v0.13.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ= github.com/apparentlymart/go-textseg/v13 v13.0.0 h1:Y+KvPE1NYz0xl601PVImeQfFyEy6iT90AvPUL1NNfNw= github.com/apparentlymart/go-textseg/v13 v13.0.0/go.mod h1:ZK2fH7c4NqDTLtiYLvIkEghdlcqw7yxLeM89kiTRPUo= -github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o= -github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= -github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY= -github.com/armon/go-metrics v0.3.3/go.mod h1:4O98XIr/9W0sxpJ8UaYkvjk10Iff7SnFrb4QAOwNTFc= -github.com/armon/go-metrics v0.3.9/go.mod h1:4O98XIr/9W0sxpJ8UaYkvjk10Iff7SnFrb4QAOwNTFc= -github.com/armon/go-metrics v0.4.0 h1:yCQqn7dwca4ITXb+CbubHmedzaQYHhNhrEXLYUeEe8Q= -github.com/armon/go-metrics v0.4.0/go.mod h1:E6amYzXo6aW1tqzoZGT755KkbgrJsSdpwZ+3JqfkOG4= -github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= -github.com/armon/go-radix v1.0.0 h1:F4z6KzEeeQIMeLFa97iZU6vupzoecKdU5TX24SNppXI= -github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio= github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= -github.com/aryann/difflib v0.0.0-20170710044230-e206f873d14a/go.mod h1:DAHtR1m6lCRdSC2Tm3DSWRPvIPr6xNKyeHdqDQSQT+A= -github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= -github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw= -github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d/go.mod h1:WaHUgvxTVq04UNunO+XhnAqY/wQc+bxr74GqbsZ/Jqw= github.com/atotto/clipboard v0.1.4 h1:EH0zSVneZPSuFR11BlR9YppQTVDbh5+16AmcJi4g1z4= github.com/atotto/clipboard v0.1.4/go.mod h1:ZY9tmq7sm5xIbd9bOK4onWV4S6X0u6GY7Vn0Yu86PYI= -github.com/aws/aws-lambda-go v1.13.3/go.mod h1:4UKl9IzQMoD+QF79YdCuzCwp8VbmG4VAQwij/eHl5CU= -github.com/aws/aws-sdk-go v1.15.11/go.mod h1:mFuSZ37Z9YOHbQEwBWztmVzqXrEkub65tZoCYDt7FT0= -github.com/aws/aws-sdk-go v1.15.27/go.mod h1:mFuSZ37Z9YOHbQEwBWztmVzqXrEkub65tZoCYDt7FT0= -github.com/aws/aws-sdk-go v1.27.0/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= -github.com/aws/aws-sdk-go v1.38.35/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro= -github.com/aws/aws-sdk-go v1.43.11/go.mod h1:y4AeaBuwd2Lk+GepC1E9v0qOiTws0MIWAX4oIKwKHZo= -github.com/aws/aws-sdk-go v1.43.31/go.mod h1:y4AeaBuwd2Lk+GepC1E9v0qOiTws0MIWAX4oIKwKHZo= -github.com/aws/aws-sdk-go v1.44.45/go.mod h1:y4AeaBuwd2Lk+GepC1E9v0qOiTws0MIWAX4oIKwKHZo= -github.com/aws/aws-sdk-go v1.44.68/go.mod h1:y4AeaBuwd2Lk+GepC1E9v0qOiTws0MIWAX4oIKwKHZo= -github.com/aws/aws-sdk-go v1.44.298 h1:5qTxdubgV7PptZJmp/2qDwD2JL187ePL7VOxsSh1i3g= -github.com/aws/aws-sdk-go v1.44.298/go.mod h1:aVsgQcEevwlmQ7qHE9I3h+dtQgpqhFB+i8Phjh7fkwI= -github.com/aws/aws-sdk-go-v2 v0.18.0/go.mod h1:JWVYvqSMppoMJC0x5wdwiImzgXTI9FuZwxzkQq9wy+g= -github.com/aws/aws-sdk-go-v2 v1.16.8/go.mod h1:6CpKuLXg2w7If3ABZCl/qZ6rEgwtjZTn4eAf4RcEyuw= -github.com/aws/aws-sdk-go-v2 v1.17.3 h1:shN7NlnVzvDUgPQ+1rLMSxY8OWRNDRYtiqe0p/PgrhY= -github.com/aws/aws-sdk-go-v2 v1.17.3/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw= -github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.3 h1:S/ZBwevQkr7gv5YxONYpGQxlMFFYSRfz3RMcjsC9Qhk= -github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.4.3/go.mod h1:gNsR5CaXKmQSSzrmGxmwmct/r+ZBfbxorAuXYsj/M5Y= -github.com/aws/aws-sdk-go-v2/config v1.15.15 h1:yBV+J7Au5KZwOIrIYhYkTGJbifZPCkAnCFSvGsF3ui8= -github.com/aws/aws-sdk-go-v2/config v1.15.15/go.mod h1:A1Lzyy/o21I5/s2FbyX5AevQfSVXpvvIDCoVFD0BC4E= -github.com/aws/aws-sdk-go-v2/credentials v1.12.10 h1:7gGcMQePejwiKoDWjB9cWnpfVdnz/e5JwJFuT6OrroI= -github.com/aws/aws-sdk-go-v2/credentials v1.12.10/go.mod h1:g5eIM5XRs/OzIIK81QMBl+dAuDyoLN0VYaLP+tBqEOk= -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.9 h1:hz8tc+OW17YqxyFFPSkvfSikbqWcyyHRyPVSTzC0+aI= -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.9/go.mod h1:KDCCm4ONIdHtUloDcFvK2+vshZvx4Zmj7UMDfusuz5s= -github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.11.21 h1:bpiKFJ9aC0xTVpygSRRRL/YHC1JZ+pHQHENATHuoiwo= -github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.11.21/go.mod h1:iIYPrQ2rYfZiB/iADYlhj9HHZ9TTi6PqKQPAqygohbE= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.15/go.mod h1:pWrr2OoHlT7M/Pd2y4HV3gJyPb3qj5qMmnPkKSNPYK4= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.27 h1:I3cakv2Uy1vNmmhRQmFptYDxOvBnwCdNwyw63N0RaRU= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.27/go.mod h1:a1/UpzeyBBerajpnP5nGZa9mGzsBn5cOKxm6NWQsvoI= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.9/go.mod h1:08tUpeSGN33QKSO7fwxXczNfiwCpbj+GxK6XKwqWVv0= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.21 h1:5NbbMrIzmUn/TXFqAle6mgrH5m9cOvMLRGL7pnG8tRE= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.21/go.mod h1:+Gxn8jYn5k9ebfHEqlhrMirFjSW0v0C9fI+KN5vk2kE= -github.com/aws/aws-sdk-go-v2/internal/ini v1.3.16 h1:f0ySVcmQhwmzn7zQozd8wBM3yuGBfzdpsOaKQ0/Epzw= -github.com/aws/aws-sdk-go-v2/internal/ini v1.3.16/go.mod h1:CYmI+7x03jjJih8kBEEFKRQc40UjUokT0k7GbvrhhTc= -github.com/aws/aws-sdk-go-v2/internal/v4a v1.0.6 h1:3L8pcjvgaSOs0zzZcMKzxDSkYKEpwJ2dNVDdxm68jAY= -github.com/aws/aws-sdk-go-v2/internal/v4a v1.0.6/go.mod h1:O7Oc4peGZDEKlddivslfYFvAbgzvl/GH3J8j3JIGBXc= -github.com/aws/aws-sdk-go-v2/service/iam v1.19.0 h1:9vCynoqC+dgxZKrsjvAniyIopsv3RZFsZ6wkQ+yxtj8= -github.com/aws/aws-sdk-go-v2/service/iam v1.19.0/go.mod h1:OyAuvpFeSVNppcSsp1hFOVQcaTRc1LE24YIR7pMbbAA= -github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.3 h1:4n4KCtv5SUoT5Er5XV41huuzrCqepxlW3SDI9qHQebc= -github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.9.3/go.mod h1:gkb2qADY+OHaGLKNTYxMaQNacfeyQpZ4csDTQMeFmcw= -github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.10 h1:7LJcuRalaLw+GYQTMGmVUl4opg2HrDZkvn/L3KvIQfw= -github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.1.10/go.mod h1:Qks+dxK3O+Z2deAhNo6cJ8ls1bam3tUGUAcgxQP1c70= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.9 h1:sHfDuhbOuuWSIAEDd3pma6p0JgUcR2iePxtCE8gfCxQ= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.9/go.mod h1:yQowTpvdZkFVuHrLBXmczat4W+WJKg/PafBZnGBLga0= -github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.13.9 h1:sJdKvydGYDML9LTFcp6qq6Z5fIjN0Rdq2Gvw1hUg8tc= -github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.13.9/go.mod h1:Rc5+wn2k8gFSi3V1Ch4mhxOzjMh+bYSXVFfVaqowQOY= -github.com/aws/aws-sdk-go-v2/service/kms v1.18.1 h1:y07kzPdcjuuyDVYWf1CCsQQ6kcAWMbFy+yIJ71xQBS0= -github.com/aws/aws-sdk-go-v2/service/kms v1.18.1/go.mod h1:4PZMUkc9rXHWGVB5J9vKaZy3D7Nai79ORworQ3ASMiM= -github.com/aws/aws-sdk-go-v2/service/s3 v1.27.2 h1:NvzGue25jKnuAsh6yQ+TZ4ResMcnp49AWgWGm2L4b5o= -github.com/aws/aws-sdk-go-v2/service/s3 v1.27.2/go.mod h1:u+566cosFI+d+motIz3USXEh6sN8Nq4GrNXSg2RXVMo= -github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.15.14/go.mod h1:xakbH8KMsQQKqzX87uyyzTHshc/0/Df8bsTneTS5pFU= -github.com/aws/aws-sdk-go-v2/service/sns v1.17.10/go.mod h1:uITsRNVMeCB3MkWpXxXw0eDz8pW4TYLzj+eyQtbhSxM= -github.com/aws/aws-sdk-go-v2/service/sqs v1.19.1/go.mod h1:A94o564Gj+Yn+7QO1eLFeI7UVv3riy/YBFOfICVqFvU= -github.com/aws/aws-sdk-go-v2/service/ssm v1.27.6/go.mod h1:fiFzQgj4xNOg4/wqmAiPvzgDMXPD+cUEplX/CYn+0j0= -github.com/aws/aws-sdk-go-v2/service/sso v1.11.13 h1:DQpf+al+aWozOEmVEdml67qkVZ6vdtGUi71BZZWw40k= -github.com/aws/aws-sdk-go-v2/service/sso v1.11.13/go.mod h1:d7ptRksDDgvXaUvxyHZ9SYh+iMDymm94JbVcgvSYSzU= -github.com/aws/aws-sdk-go-v2/service/sts v1.16.10 h1:7tquJrhjYz2EsCBvA9VTl+sBAAh1bv7h/sGASdZOGGo= -github.com/aws/aws-sdk-go-v2/service/sts v1.16.10/go.mod h1:cftkHYN6tCDNfkSasAmclSfl4l7cySoay8vz7p/ce0E= -github.com/aws/smithy-go v1.12.0/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA= -github.com/aws/smithy-go v1.13.5 h1:hgz0X/DX0dGqTYpGALqXJoRKRj5oQ7150i5FdTePzO8= -github.com/aws/smithy-go v1.13.5/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA= +github.com/aws/aws-sdk-go v1.50.36 h1:PjWXHwZPuTLMR1NIb8nEjLucZBMzmf84TLoLbD8BZqk= +github.com/aws/aws-sdk-go v1.50.36/go.mod h1:LF8svs817+Nz+DmiMQKTO3ubZ/6IaTpq3TjupRn3Eqk= +github.com/aws/aws-sdk-go-v2 v1.26.1 h1:5554eUqIYVWpU0YmeeYZ0wU64H2VLBs8TlhRB2L+EkA= +github.com/aws/aws-sdk-go-v2 v1.26.1/go.mod h1:ffIFB97e2yNsv4aTSGkqtHnppsIJzw7G7BReUZ3jCXM= +github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2 h1:x6xsQXGSmW6frevwDA+vi/wqhp1ct18mVXYN08/93to= +github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.2/go.mod h1:lPprDr1e6cJdyYeGXnRaJoP4Md+cDBvi2eOj00BlGmg= +github.com/aws/aws-sdk-go-v2/config v1.27.11 h1:f47rANd2LQEYHda2ddSCKYId18/8BhSRM4BULGmfgNA= +github.com/aws/aws-sdk-go-v2/config v1.27.11/go.mod h1:SMsV78RIOYdve1vf36z8LmnszlRWkwMQtomCAI0/mIE= +github.com/aws/aws-sdk-go-v2/credentials v1.17.11 h1:YuIB1dJNf1Re822rriUOTxopaHHvIq0l/pX3fwO+Tzs= +github.com/aws/aws-sdk-go-v2/credentials v1.17.11/go.mod h1:AQtFPsDH9bI2O+71anW6EKL+NcD7LG3dpKGMV4SShgo= +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1 h1:FVJ0r5XTHSmIHJV6KuDmdYhEpvlHpiSd38RQWhut5J4= +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.1/go.mod h1:zusuAeqezXzAB24LGuzuekqMAEgWkVYukBec3kr3jUg= +github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.16.15 h1:7Zwtt/lP3KNRkeZre7soMELMGNoBrutx8nobg1jKWmo= +github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.16.15/go.mod h1:436h2adoHb57yd+8W+gYPrrA9U/R/SuAuOO42Ushzhw= +github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.5 h1:aw39xVGeRWlWx9EzGVnhOR4yOjQDHPQ6o6NmBlscyQg= +github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.5/go.mod h1:FSaRudD0dXiMPK2UjknVwwTYyZMRsHv3TtkabsZih5I= +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.5 h1:PG1F3OD1szkuQPzDw3CIQsRIrtTlUC3lP84taWzHlq0= +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.5/go.mod h1:jU1li6RFryMz+so64PpKtudI+QzbKoIEivqdf6LNpOc= +github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0 h1:hT8rVHwugYE2lEfdFE0QWVo81lF7jMrYJVDWI+f+VxU= +github.com/aws/aws-sdk-go-v2/internal/ini v1.8.0/go.mod h1:8tu/lYfQfFe6IGnaOdrpVgEL2IrrDOf6/m9RQum4NkY= +github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.5 h1:81KE7vaZzrl7yHBYHVEzYB8sypz11NMOZ40YlWvPxsU= +github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.5/go.mod h1:LIt2rg7Mcgn09Ygbdh/RdIm0rQ+3BNkbP1gyVMFtRK0= +github.com/aws/aws-sdk-go-v2/service/iam v1.31.4 h1:eVm30ZIDv//r6Aogat9I88b5YX1xASSLcEDqHYRPVl0= +github.com/aws/aws-sdk-go-v2/service/iam v1.31.4/go.mod h1:aXWImQV0uTW35LM0A/T4wEg6R1/ReXUu4SM6/lUHYK0= +github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.2 h1:Ji0DY1xUsUr3I8cHps0G+XM3WWU16lP6yG8qu1GAZAs= +github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.11.2/go.mod h1:5CsjAbs3NlGQyZNFACh+zztPDI7fU6eW9QsxjfnuBKg= +github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.7 h1:ZMeFZ5yk+Ek+jNr1+uwCd2tG89t6oTS5yVWpa6yy2es= +github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.3.7/go.mod h1:mxV05U+4JiHqIpGqqYXOHLPKUC6bDXC44bsUhNjOEwY= +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.7 h1:ogRAwT1/gxJBcSWDMZlgyFUM962F51A5CRhDLbxLdmo= +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.11.7/go.mod h1:YCsIZhXfRPLFFCl5xxY+1T9RKzOKjCut+28JSX2DnAk= +github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.5 h1:f9RyWNtS8oH7cZlbn+/JNPpjUk5+5fLd5lM9M0i49Ys= +github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.17.5/go.mod h1:h5CoMZV2VF297/VLhRhO1WF+XYWOzXo+4HsObA4HjBQ= +github.com/aws/aws-sdk-go-v2/service/kms v1.30.1 h1:SBn4I0fJXF9FYOVRSVMWuhvEKoAHDikjGpS3wlmw5DE= +github.com/aws/aws-sdk-go-v2/service/kms v1.30.1/go.mod h1:2snWQJQUKsbN66vAawJuOGX7dr37pfOq9hb0tZDGIqQ= +github.com/aws/aws-sdk-go-v2/service/s3 v1.53.1 h1:6cnno47Me9bRykw9AEv9zkXE+5or7jz8TsskTTccbgc= +github.com/aws/aws-sdk-go-v2/service/s3 v1.53.1/go.mod h1:qmdkIIAC+GCLASF7R2whgNrJADz0QZPX+Seiw/i4S3o= +github.com/aws/aws-sdk-go-v2/service/sso v1.20.5 h1:vN8hEbpRnL7+Hopy9dzmRle1xmDc7o8tmY0klsr175w= +github.com/aws/aws-sdk-go-v2/service/sso v1.20.5/go.mod h1:qGzynb/msuZIE8I75DVRCUXw3o3ZyBmUvMwQ2t/BrGM= +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4 h1:Jux+gDDyi1Lruk+KHF91tK2KCuY61kzoCpvtvJJBtOE= +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.23.4/go.mod h1:mUYPBhaF2lGiukDEjJX2BLRRKTmoUSitGDUgM4tRxak= +github.com/aws/aws-sdk-go-v2/service/sts v1.28.6 h1:cwIxeBttqPN3qkaAjcEcsh8NYr8n2HZPkcKgPAi1phU= +github.com/aws/aws-sdk-go-v2/service/sts v1.28.6/go.mod h1:FZf1/nKNEkHdGGJP/cI2MoIMquumuRK6ol3QQJNDxmw= +github.com/aws/smithy-go v1.20.2 h1:tbp628ireGtzcHDDmLT/6ADHidqnwgF57XOXZe6tp4Q= +github.com/aws/smithy-go v1.20.2/go.mod h1:krry+ya/rV9RDcV/Q16kpu6ypI4K2czasz0NC3qS14E= github.com/aymanbagabas/go-osc52/v2 v2.0.1 h1:HwpRHbFMcZLEVr42D4p7XBqjyuxQH5SMiErDT4WkJ2k= github.com/aymanbagabas/go-osc52/v2 v2.0.1/go.mod h1:uYgXzlJ7ZpABp8OJ+exZzJJhRNQ2ASbcXHWsFqH8hp8= -github.com/benbjohnson/clock v1.0.3/go.mod h1:bGMdMPoPVvcYyt1gHDf4J2KE153Yf9BuiUKYMaxlTDM= -github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= -github.com/beorn7/perks v0.0.0-20160804104726-4c0e84591b9a/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= -github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= -github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= -github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= -github.com/bitly/go-simplejson v0.5.0/go.mod h1:cXHtHw4XUPsvGaxgjIAn8PhEWG9NfngEKAMDJEczWVA= -github.com/bits-and-blooms/bitset v1.2.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= -github.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c/go.mod h1:MKsuJmJgSg28kpZDP6UIiPt0e0Oz0kqKNGyRaWEPv84= -github.com/blang/semver v3.1.0+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk= github.com/blang/semver v3.5.1+incompatible h1:cQNTCjp13qL8KC3Nbxr/y2Bqb63oX6wdnnjpJbkM4JQ= github.com/blang/semver v3.5.1+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk= -github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869/go.mod h1:Ekp36dRnpXw/yCqJaO+ZrUyxD+3VXMFFr56k5XYrpB4= -github.com/bshuster-repo/logrus-logstash-hook v0.4.1/go.mod h1:zsTqEiSzDgAa/8GZR7E1qaXrhYNDKBYy5/dWPTIflbk= -github.com/buger/jsonparser v0.0.0-20180808090653-f4dd9f5a6b44/go.mod h1:bbYlZJ7hK1yFx9hf58LP0zeX7UjIGs20ufpu3evjr+s= -github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx27UK13J/0= -github.com/bugsnag/bugsnag-go v0.0.0-20141110184014-b1d153021fcd/go.mod h1:2oa8nejYd4cQ/b0hMIopN0lCRxU0bueqREvZLWFrtK8= -github.com/bugsnag/osext v0.0.0-20130617224835-0dd3f918b21b/go.mod h1:obH5gd0BsqsP2LwDJ9aOkm/6J86V6lyAXCoQWGw3K50= -github.com/bugsnag/panicwrap v0.0.0-20151223152923-e2c28503fcd0/go.mod h1:D/8v3kj0zr8ZAKg1AQ6crr+5VwKN5eIywRkfhyM/+dE= github.com/bwesterb/go-ristretto v1.2.3/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0= -github.com/casbin/casbin/v2 v2.1.2/go.mod h1:YcPU1XXisHhLzuxH9coDNf2FbKpjGlbCg3n9yuLkIJQ= -github.com/cenkalti/backoff v2.2.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= -github.com/cenkalti/backoff/v3 v3.0.0/go.mod h1:cIeZDE3IrqwwJl6VUwCN6trj1oXrTS4rc0ij+ULvLYs= github.com/cenkalti/backoff/v3 v3.2.2 h1:cfUAAO3yvKMYKPrvhDuHSwQnhZNk/RMHKdZqKTxfm6M= github.com/cenkalti/backoff/v3 v3.2.2/go.mod h1:cIeZDE3IrqwwJl6VUwCN6trj1oXrTS4rc0ij+ULvLYs= -github.com/cenkalti/backoff/v4 v4.1.1/go.mod h1:scbssz8iZGpm3xbr14ovlUdkxfGXNInqkPWOWmG2CLw= -github.com/cenkalti/backoff/v4 v4.1.2/go.mod h1:scbssz8iZGpm3xbr14ovlUdkxfGXNInqkPWOWmG2CLw= -github.com/cenkalti/backoff/v4 v4.1.3/go.mod h1:scbssz8iZGpm3xbr14ovlUdkxfGXNInqkPWOWmG2CLw= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/census-instrumentation/opencensus-proto v0.3.0/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/certifi/gocertifi v0.0.0-20191021191039-0944d244cd40/go.mod h1:sGbDF6GwGcLpkNXPUTkMRoywsNa/ol15pxFe6ERfguA= -github.com/certifi/gocertifi v0.0.0-20200922220541-2c3bb06c6054/go.mod h1:sGbDF6GwGcLpkNXPUTkMRoywsNa/ol15pxFe6ERfguA= -github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= -github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/charmbracelet/bubbles v0.16.1 h1:6uzpAAaT9ZqKssntbvZMlksWHruQLNxg49H5WdeuYSY= github.com/charmbracelet/bubbles v0.16.1/go.mod h1:2QCp9LFlEsBQMvIYERr7Ww2H2bA7xen1idUDIzm/+Xc= -github.com/charmbracelet/bubbletea v0.24.2 h1:uaQIKx9Ai6Gdh5zpTbGiWpytMU+CfsPp06RaW2cx/SY= -github.com/charmbracelet/bubbletea v0.24.2/go.mod h1:XdrNrV4J8GiyshTtx3DNuYkR1FDaJmO3l2nejekbsgg= +github.com/charmbracelet/bubbletea v0.25.0 h1:bAfwk7jRz7FKFl9RzlIULPkStffg5k6pNt5dywy4TcM= +github.com/charmbracelet/bubbletea v0.25.0/go.mod h1:EN3QDR1T5ZdWmdfDzYcqOCAps45+QIJbLOBxmVNWNNg= github.com/charmbracelet/lipgloss v0.7.1 h1:17WMwi7N1b1rVWOjMT+rCh7sQkvDU75B2hbZpc5Kc1E= github.com/charmbracelet/lipgloss v0.7.1/go.mod h1:yG0k3giv8Qj8edTCbbg6AlQ5e8KNWpFujkNawKNhE2c= -github.com/checkpoint-restore/go-criu/v4 v4.1.0/go.mod h1:xUQBLp4RLc5zJtWY++yjOoMoB5lihDt7fai+75m+rGw= -github.com/checkpoint-restore/go-criu/v5 v5.0.0/go.mod h1:cfwC0EG7HMUenopBsUf9d89JlCLQIfgVcNsNN0t6T2M= -github.com/checkpoint-restore/go-criu/v5 v5.3.0/go.mod h1:E/eQpaFtUKGOOSEBZgmKAcn+zUUwWxqcaKZlF54wK8E= github.com/cheggaaa/pb v1.0.29 h1:FckUN5ngEk2LpvuG0fw1GEFx6LtyY2pWI/Z2QgCnEYo= github.com/cheggaaa/pb v1.0.29/go.mod h1:W40334L7FMC5JKWldsTWbdGjLo0RxUKK73K+TuPxX30= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= -github.com/chzyer/logex v1.2.0/go.mod h1:9+9sk7u7pGNWYMkh0hdiL++6OeibzJccyQU4p4MedaY= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= -github.com/chzyer/readline v1.5.0/go.mod h1:x22KAscuvRqlLoK9CsoYsmxoXZMMFVyOl86cAH8qUic= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= -github.com/chzyer/test v0.0.0-20210722231415-061457976a23/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= -github.com/cilium/ebpf v0.0.0-20200110133405-4032b1d8aae3/go.mod h1:MA5e5Lr8slmEg9bt0VpxxWqJlO4iwu3FBdHUzV7wQVg= -github.com/cilium/ebpf v0.0.0-20200702112145-1c8d4c9ef775/go.mod h1:7cR51M8ViRLIdUjrmSXlK9pkrsDlLHbO8jiB8X8JnOc= -github.com/cilium/ebpf v0.2.0/go.mod h1:To2CFviqOWL/M0gIMsvSMlqe7em/l1ALkX1PyjrX2Qs= -github.com/cilium/ebpf v0.4.0/go.mod h1:4tRaxcgiL706VnOzHOdBlY8IEAIdxINsQBcU4xJJXRs= -github.com/cilium/ebpf v0.6.2/go.mod h1:4tRaxcgiL706VnOzHOdBlY8IEAIdxINsQBcU4xJJXRs= -github.com/cilium/ebpf v0.7.0/go.mod h1:/oI2+1shJiTGAMgl6/RgJr36Eo1jzrRcAWbcXO2usCA= -github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod h1:nmEj6Dob7S7YxXgwXpfOuvO54S+tGdZdw9fuRZt25Ag= -github.com/circonus-labs/circonusllhist v0.1.3/go.mod h1:kMXHVDlOchFAehlya5ePtbp5jckzBHf4XRpQvBOLI+I= -github.com/clbanning/x2j v0.0.0-20191024224557-825249438eec/go.mod h1:jMjuTZXRI4dUb/I5gc9Hdhagfvm9+RyrPryS/auMzxE= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= -github.com/cloudflare/circl v1.3.3 h1:fE/Qz0QdIGqeWfnwq0RE0R7MI51s0M2E4Ga9kq5AEMs= github.com/cloudflare/circl v1.3.3/go.mod h1:5XYMA4rFBvNIrhs50XuiBJ15vF2pZn4nnUKZrLbUZFA= +github.com/cloudflare/circl v1.3.7 h1:qlCDlTPz2n9fu58M0Nh1J/JzcFpfgkFHHX3O35r5vcU= +github.com/cloudflare/circl v1.3.7/go.mod h1:sRTcRWXGLrKw6yIGJ+l7amYJFfAXbZG0kBSc8r4zxgA= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= -github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= -github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20220314180256-7f1daf1720fc/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cockroachdb/apd v1.1.0/go.mod h1:8Sl8LxpKi29FqWXR16WEFZRNSz3SoPzUzeMeY4+DwBQ= -github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa/go.mod h1:zn76sxSg3SzpJ0PPJaLDCu+Bu0Lg3sKTORVIj19EIF8= -github.com/cockroachdb/datadriven v0.0.0-20200714090401-bf6692d28da5/go.mod h1:h6jFvWxBdQXxjopDMZyH2UVceIRfR84bdzbkoKrsWNo= -github.com/cockroachdb/errors v1.2.4/go.mod h1:rQD95gz6FARkaKkQXUksEje/d9a6wBJoCr5oaCLELYA= -github.com/cockroachdb/logtags v0.0.0-20190617123548-eb05cc24525f/go.mod h1:i/u985jwjWRlyHXQbwatDASoW0RMlZ/3i9yJHE2xLkI= -github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd/go.mod h1:sE/e/2PUdi/liOCUjSTXgM1o87ZssimdTWN964YiIeI= -github.com/containerd/aufs v0.0.0-20200908144142-dab0cbea06f4/go.mod h1:nukgQABAEopAHvB6j7cnP5zJ+/3aVcE7hCYqvIwAHyE= -github.com/containerd/aufs v0.0.0-20201003224125-76a6863f2989/go.mod h1:AkGGQs9NM2vtYHaUen+NljV0/baGCAPELGm2q9ZXpWU= -github.com/containerd/aufs v0.0.0-20210316121734-20793ff83c97/go.mod h1:kL5kd6KM5TzQjR79jljyi4olc1Vrx6XBlcyj3gNv2PU= -github.com/containerd/aufs v1.0.0/go.mod h1:kL5kd6KM5TzQjR79jljyi4olc1Vrx6XBlcyj3gNv2PU= -github.com/containerd/btrfs v0.0.0-20201111183144-404b9149801e/go.mod h1:jg2QkJcsabfHugurUvvPhS3E08Oxiuh5W/g1ybB4e0E= -github.com/containerd/btrfs v0.0.0-20210316141732-918d888fb676/go.mod h1:zMcX3qkXTAi9GI50+0HOeuV8LU2ryCE/V2vG/ZBiTss= -github.com/containerd/btrfs v1.0.0/go.mod h1:zMcX3qkXTAi9GI50+0HOeuV8LU2ryCE/V2vG/ZBiTss= -github.com/containerd/cgroups v0.0.0-20190717030353-c4b9ac5c7601/go.mod h1:X9rLEHIqSf/wfK8NsPqxJmeZgW4pcfzdXITDrUSJ6uI= -github.com/containerd/cgroups v0.0.0-20190919134610-bf292b21730f/go.mod h1:OApqhQ4XNSNC13gXIwDjhOQxjWa/NxkwZXJ1EvqT0ko= -github.com/containerd/cgroups v0.0.0-20200531161412-0dbf7f05ba59/go.mod h1:pA0z1pT8KYB3TCXK/ocprsh7MAkoW8bZVzPdih9snmM= -github.com/containerd/cgroups v0.0.0-20200710171044-318312a37340/go.mod h1:s5q4SojHctfxANBDvMeIaIovkq29IP48TKAxnhYRxvo= -github.com/containerd/cgroups v0.0.0-20200824123100-0b889c03f102/go.mod h1:s5q4SojHctfxANBDvMeIaIovkq29IP48TKAxnhYRxvo= -github.com/containerd/cgroups v0.0.0-20210114181951-8a68de567b68/go.mod h1:ZJeTFisyysqgcCdecO57Dj79RfL0LNeGiFUqLYQRYLE= -github.com/containerd/cgroups v1.0.1/go.mod h1:0SJrPIenamHDcZhEcJMNBB85rHcUsw4f25ZfBiPYRkU= -github.com/containerd/cgroups v1.0.3/go.mod h1:/ofk34relqNjSGyqPrmEULrO4Sc8LJhvJmWbUCUKqj8= -github.com/containerd/console v0.0.0-20180822173158-c12b1e7919c1/go.mod h1:Tj/on1eG8kiEhd0+fhSDzsPAFESxzBBvdyEgyryXffw= -github.com/containerd/console v0.0.0-20181022165439-0650fd9eeb50/go.mod h1:Tj/on1eG8kiEhd0+fhSDzsPAFESxzBBvdyEgyryXffw= -github.com/containerd/console v0.0.0-20191206165004-02ecf6a7291e/go.mod h1:8Pf4gM6VEbTNRIT26AyyU7hxdQU3MvAvxVI0sc00XBE= -github.com/containerd/console v1.0.1/go.mod h1:XUsP6YE/mKtz6bxc+I8UiKKTP04qjQL4qcS3XoQ5xkw= -github.com/containerd/console v1.0.2/go.mod h1:ytZPjGgY2oeTkAONYafi2kSj0aYggsf8acV1PGKCbzQ= -github.com/containerd/console v1.0.3/go.mod h1:7LqA/THxQ86k76b8c/EMSiaJ3h1eZkMkXar0TQ1gf3U= github.com/containerd/console v1.0.4-0.20230313162750-1ae8d489ac81 h1:q2hJAaP1k2wIvVRd/hEHD7lacgqrCPS+k8g1MndzfWY= github.com/containerd/console v1.0.4-0.20230313162750-1ae8d489ac81/go.mod h1:YynlIjWYF8myEu6sdkwKIvGQq+cOckRm6So2avqoYAk= -github.com/containerd/containerd v1.2.10/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.3.0-beta.2.0.20190828155532-0293cbd26c69/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.3.0/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.3.1-0.20191213020239-082f7e3aed57/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.3.2/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.4.0-beta.2.0.20200729163537-40b22ef07410/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.4.1/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.4.3/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.4.9/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.5.0-beta.1/go.mod h1:5HfvG1V2FsKesEGQ17k5/T7V960Tmcumvqn8Mc+pCYQ= -github.com/containerd/containerd v1.5.0-beta.3/go.mod h1:/wr9AVtEM7x9c+n0+stptlo/uBBoBORwEx6ardVcmKU= -github.com/containerd/containerd v1.5.0-beta.4/go.mod h1:GmdgZd2zA2GYIBZ0w09ZvgqEq8EfBp/m3lcVZIvPHhI= -github.com/containerd/containerd v1.5.0-rc.0/go.mod h1:V/IXoMqNGgBlabz3tHD2TWDoTJseu1FGOKuoA4nNb2s= -github.com/containerd/containerd v1.5.1/go.mod h1:0DOxVqwDy2iZvrZp2JUx/E+hS0UNTVn7dJnIOwtYR4g= -github.com/containerd/containerd v1.5.7/go.mod h1:gyvv6+ugqY25TiXxcZC3L5yOeYgEw0QMhscqVp1AR9c= -github.com/containerd/containerd v1.5.8/go.mod h1:YdFSv5bTFLpG2HIYmfqDpSYYTDX+mc5qtSuYx1YUb/s= -github.com/containerd/containerd v1.6.1/go.mod h1:1nJz5xCZPusx6jJU8Frfct988y0NpumIq9ODB0kLtoE= -github.com/containerd/continuity v0.0.0-20190426062206-aaeac12a7ffc/go.mod h1:GL3xCUCBDV3CZiTSEKksMWbLE66hEyuu9qyDOOqM47Y= -github.com/containerd/continuity v0.0.0-20190815185530-f2a389ac0a02/go.mod h1:GL3xCUCBDV3CZiTSEKksMWbLE66hEyuu9qyDOOqM47Y= -github.com/containerd/continuity v0.0.0-20191127005431-f65d91d395eb/go.mod h1:GL3xCUCBDV3CZiTSEKksMWbLE66hEyuu9qyDOOqM47Y= -github.com/containerd/continuity v0.0.0-20200710164510-efbc4488d8fe/go.mod h1:cECdGN1O8G9bgKTlLhuPJimka6Xb/Gg7vYzCTNVxhvo= -github.com/containerd/continuity v0.0.0-20201208142359-180525291bb7/go.mod h1:kR3BEg7bDFaEddKm54WSmrol1fKWDU1nKYkgrcgZT7Y= -github.com/containerd/continuity v0.0.0-20210208174643-50096c924a4e/go.mod h1:EXlVlkqNba9rJe3j7w3Xa924itAMLgZH4UD/Q4PExuQ= -github.com/containerd/continuity v0.1.0/go.mod h1:ICJu0PwR54nI0yPEnJ6jcS+J7CZAUXrLh8lPo2knzsM= -github.com/containerd/continuity v0.2.2/go.mod h1:pWygW9u7LtS1o4N/Tn0FoCFDIXZ7rxcMX7HX1Dmibvk= -github.com/containerd/fifo v0.0.0-20180307165137-3d5202aec260/go.mod h1:ODA38xgv3Kuk8dQz2ZQXpnv/UZZUHUCL7pnLehbXgQI= -github.com/containerd/fifo v0.0.0-20190226154929-a9fb20d87448/go.mod h1:ODA38xgv3Kuk8dQz2ZQXpnv/UZZUHUCL7pnLehbXgQI= -github.com/containerd/fifo v0.0.0-20200410184934-f15a3290365b/go.mod h1:jPQ2IAeZRCYxpS/Cm1495vGFww6ecHmMk1YJH2Q5ln0= -github.com/containerd/fifo v0.0.0-20201026212402-0724c46b320c/go.mod h1:jPQ2IAeZRCYxpS/Cm1495vGFww6ecHmMk1YJH2Q5ln0= -github.com/containerd/fifo v0.0.0-20210316144830-115abcc95a1d/go.mod h1:ocF/ME1SX5b1AOlWi9r677YJmCPSwwWnQ9O123vzpE4= -github.com/containerd/fifo v1.0.0/go.mod h1:ocF/ME1SX5b1AOlWi9r677YJmCPSwwWnQ9O123vzpE4= -github.com/containerd/go-cni v1.0.1/go.mod h1:+vUpYxKvAF72G9i1WoDOiPGRtQpqsNW/ZHtSlv++smU= -github.com/containerd/go-cni v1.0.2/go.mod h1:nrNABBHzu0ZwCug9Ije8hL2xBCYh/pjfMb1aZGrrohk= -github.com/containerd/go-cni v1.1.0/go.mod h1:Rflh2EJ/++BA2/vY5ao3K6WJRR/bZKsX123aPk+kUtA= -github.com/containerd/go-cni v1.1.3/go.mod h1:Rflh2EJ/++BA2/vY5ao3K6WJRR/bZKsX123aPk+kUtA= -github.com/containerd/go-runc v0.0.0-20180907222934-5a6d9f37cfa3/go.mod h1:IV7qH3hrUgRmyYrtgEeGWJfWbgcHL9CSRruz2Vqcph0= -github.com/containerd/go-runc v0.0.0-20190911050354-e029b79d8cda/go.mod h1:IV7qH3hrUgRmyYrtgEeGWJfWbgcHL9CSRruz2Vqcph0= -github.com/containerd/go-runc v0.0.0-20200220073739-7016d3ce2328/go.mod h1:PpyHrqVs8FTi9vpyHwPwiNEGaACDxT/N/pLcvMSRA9g= -github.com/containerd/go-runc v0.0.0-20201020171139-16b287bc67d0/go.mod h1:cNU0ZbCgCQVZK4lgG3P+9tn9/PaJNmoDXPpoJhDR+Ok= -github.com/containerd/go-runc v1.0.0/go.mod h1:cNU0ZbCgCQVZK4lgG3P+9tn9/PaJNmoDXPpoJhDR+Ok= -github.com/containerd/imgcrypt v1.0.1/go.mod h1:mdd8cEPW7TPgNG4FpuP3sGBiQ7Yi/zak9TYCG3juvb0= -github.com/containerd/imgcrypt v1.0.4-0.20210301171431-0ae5c75f59ba/go.mod h1:6TNsg0ctmizkrOgXRNQjAPFWpMYRWuiB6dSF4Pfa5SA= -github.com/containerd/imgcrypt v1.1.1-0.20210312161619-7ed62a527887/go.mod h1:5AZJNI6sLHJljKuI9IHnw1pWqo/F0nGDOuR9zgTs7ow= -github.com/containerd/imgcrypt v1.1.1/go.mod h1:xpLnwiQmEUJPvQoAapeb2SNCxz7Xr6PJrXQb0Dpc4ms= -github.com/containerd/imgcrypt v1.1.3/go.mod h1:/TPA1GIDXMzbj01yd8pIbQiLdQxed5ue1wb8bP7PQu4= -github.com/containerd/nri v0.0.0-20201007170849-eb1350a75164/go.mod h1:+2wGSDGFYfE5+So4M5syatU0N0f0LbWpuqyMi4/BE8c= -github.com/containerd/nri v0.0.0-20210316161719-dbaa18c31c14/go.mod h1:lmxnXF6oMkbqs39FiCt1s0R2HSMhcLel9vNL3m4AaeY= -github.com/containerd/nri v0.1.0/go.mod h1:lmxnXF6oMkbqs39FiCt1s0R2HSMhcLel9vNL3m4AaeY= -github.com/containerd/stargz-snapshotter/estargz v0.4.1/go.mod h1:x7Q9dg9QYb4+ELgxmo4gBUeJB0tl5dqH1Sdz0nJU1QM= -github.com/containerd/ttrpc v0.0.0-20190828154514-0e0f228740de/go.mod h1:PvCDdDGpgqzQIzDW1TphrGLssLDZp2GuS+X5DkEJB8o= -github.com/containerd/ttrpc v0.0.0-20190828172938-92c8520ef9f8/go.mod h1:PvCDdDGpgqzQIzDW1TphrGLssLDZp2GuS+X5DkEJB8o= -github.com/containerd/ttrpc v0.0.0-20191028202541-4f1b8fe65a5c/go.mod h1:LPm1u0xBw8r8NOKoOdNMeVHSawSsltak+Ihv+etqsE8= -github.com/containerd/ttrpc v1.0.1/go.mod h1:UAxOpgT9ziI0gJrmKvgcZivgxOp8iFPSk8httJEt98Y= -github.com/containerd/ttrpc v1.0.2/go.mod h1:UAxOpgT9ziI0gJrmKvgcZivgxOp8iFPSk8httJEt98Y= -github.com/containerd/ttrpc v1.1.0/go.mod h1:XX4ZTnoOId4HklF4edwc4DcqskFZuvXB1Evzy5KFQpQ= -github.com/containerd/typeurl v0.0.0-20180627222232-a93fcdb778cd/go.mod h1:Cm3kwCdlkCfMSHURc+r6fwoGH6/F1hH3S4sg0rLFWPc= -github.com/containerd/typeurl v0.0.0-20190911142611-5eb25027c9fd/go.mod h1:GeKYzf2pQcqv7tJ0AoCuuhtnqhva5LNU3U+OyKxxJpk= -github.com/containerd/typeurl v1.0.1/go.mod h1:TB1hUtrpaiO88KEK56ijojHS1+NeF0izUACaJW2mdXg= -github.com/containerd/typeurl v1.0.2/go.mod h1:9trJWW2sRlGub4wZJRTW83VtbOLS6hwcDZXTn6oPz9s= -github.com/containerd/zfs v0.0.0-20200918131355-0a33824f23a2/go.mod h1:8IgZOBdv8fAgXddBT4dBXJPtxyRsejFIpXoklgxgEjw= -github.com/containerd/zfs v0.0.0-20210301145711-11e8f1707f62/go.mod h1:A9zfAbMlQwE+/is6hi0Xw8ktpL+6glmqZYtevJgaB8Y= -github.com/containerd/zfs v0.0.0-20210315114300-dde8f0fda960/go.mod h1:m+m51S1DvAP6r3FcmYCp54bQ34pyOwTieQDNRIRHsFY= -github.com/containerd/zfs v0.0.0-20210324211415-d5c4544f0433/go.mod h1:m+m51S1DvAP6r3FcmYCp54bQ34pyOwTieQDNRIRHsFY= -github.com/containerd/zfs v1.0.0/go.mod h1:m+m51S1DvAP6r3FcmYCp54bQ34pyOwTieQDNRIRHsFY= -github.com/containernetworking/cni v0.7.1/go.mod h1:LGwApLUm2FpoOfxTDEeq8T9ipbpZ61X79hmU3w8FmsY= -github.com/containernetworking/cni v0.8.0/go.mod h1:LGwApLUm2FpoOfxTDEeq8T9ipbpZ61X79hmU3w8FmsY= -github.com/containernetworking/cni v0.8.1/go.mod h1:LGwApLUm2FpoOfxTDEeq8T9ipbpZ61X79hmU3w8FmsY= -github.com/containernetworking/cni v1.0.1/go.mod h1:AKuhXbN5EzmD4yTNtfSsX3tPcmtrBI6QcRV0NiNt15Y= -github.com/containernetworking/plugins v0.8.6/go.mod h1:qnw5mN19D8fIwkqW7oHHYDHVlzhJpcY6TQxn/fUyDDM= -github.com/containernetworking/plugins v0.9.1/go.mod h1:xP/idU2ldlzN6m4p5LmGiwRDjeJr6FLK6vuiUwoH7P8= -github.com/containernetworking/plugins v1.0.1/go.mod h1:QHCfGpaTwYTbbH+nZXKVTxNBDZcxSOplJT5ico8/FLE= -github.com/containers/ocicrypt v1.0.1/go.mod h1:MeJDzk1RJHv89LjsH0Sp5KTY3ZYkjXO/C+bKAeWFIrc= -github.com/containers/ocicrypt v1.1.0/go.mod h1:b8AOe0YR67uU8OqfVNcznfFpAzu3rdgUV4GP9qXPfu4= -github.com/containers/ocicrypt v1.1.1/go.mod h1:Dm55fwWm1YZAjYRaJ94z2mfZikIyIN4B0oB3dj3jFxY= -github.com/containers/ocicrypt v1.1.2/go.mod h1:Dm55fwWm1YZAjYRaJ94z2mfZikIyIN4B0oB3dj3jFxY= -github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= -github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= -github.com/coreos/etcd v3.3.13+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= -github.com/coreos/go-iptables v0.4.5/go.mod h1:/mVI274lEDI2ns62jHCDnCyBF9Iwsmekav8Dbxlm1MU= -github.com/coreos/go-iptables v0.5.0/go.mod h1:/mVI274lEDI2ns62jHCDnCyBF9Iwsmekav8Dbxlm1MU= -github.com/coreos/go-iptables v0.6.0/go.mod h1:Qe8Bv2Xik5FyTXwgIbLAnv2sWSBmvWdFETJConOQ//Q= -github.com/coreos/go-oidc v2.1.0+incompatible/go.mod h1:CgnwVTmzoESiwO9qyAFEMiHoZ1nMCKZlZ9V6mm3/LKc= -github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= -github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= -github.com/coreos/go-systemd v0.0.0-20161114122254-48702e0da86b/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= -github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= -github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= -github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= -github.com/coreos/go-systemd/v22 v22.0.0/go.mod h1:xO0FLkIi5MaZafQlIrOotqXZ90ih+1atmu1JpKERPPk= -github.com/coreos/go-systemd/v22 v22.1.0/go.mod h1:xO0FLkIi5MaZafQlIrOotqXZ90ih+1atmu1JpKERPPk= -github.com/coreos/go-systemd/v22 v22.3.2/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= -github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= -github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= -github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= -github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= -github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= -github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= -github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= -github.com/creack/pty v1.1.11/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= -github.com/cyphar/filepath-securejoin v0.2.2/go.mod h1:FpkQEhXnPnOthhzymB7CGsFk2G9VLXONKD9G7QGMM+4= -github.com/cyphar/filepath-securejoin v0.2.3/go.mod h1:aPGpWjXOXUn2NCNjFvBE6aRxGGx79pTxQpKOJNYHHl4= +github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= github.com/cyphar/filepath-securejoin v0.2.4 h1:Ugdm7cg7i6ZK6x3xDF1oEu1nfkyfH53EtKeQYTC3kyg= github.com/cyphar/filepath-securejoin v0.2.4/go.mod h1:aPGpWjXOXUn2NCNjFvBE6aRxGGx79pTxQpKOJNYHHl4= -github.com/d2g/dhcp4 v0.0.0-20170904100407-a1d1b6c41b1c/go.mod h1:Ct2BUK8SB0YC1SMSibvLzxjeJLnrYEVLULFNiHY9YfQ= -github.com/d2g/dhcp4client v1.0.0/go.mod h1:j0hNfjhrt2SxUOw55nL0ATM/z4Yt3t2Kd1mW34z5W5s= -github.com/d2g/dhcp4server v0.0.0-20181031114812-7d4a0a7f59a5/go.mod h1:Eo87+Kg/IX2hfWJfwxMzLyuSZyxSoAug2nGa1G2QAi8= -github.com/d2g/hardwareaddr v0.0.0-20190221164911-e7d9fbe030e4/go.mod h1:bMl4RjIciD2oAxI7DmWRx6gbeqrkoLqv3MV0vzNad+I= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/deckarep/golang-set/v2 v2.5.0 h1:hn6cEZtQ0h3J8kFrHR/NrzyOoTnjgW1+FmNJzQ7y/sA= github.com/deckarep/golang-set/v2 v2.5.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4= -github.com/denisenkom/go-mssqldb v0.12.2/go.mod h1:lnIw1mZukFRZDJYQ0Pb833QS2IaC3l5HkEfra2LJ+sk= -github.com/dennwc/varint v1.0.0/go.mod h1:hnItb35rvZvJrbTALZtY/iQfDs48JKRG1RPpgziApxA= -github.com/denverdino/aliyungo v0.0.0-20190125010748-a747050bb1ba/go.mod h1:dV8lFg6daOBZbT6/BDGIz6Y3WFGn8juu6G+CQ6LHtl0= -github.com/devigned/tab v0.1.1/go.mod h1:XG9mPq0dFghrYvoBF3xdRrJzSTX1b7IQrvaL9mzjeJY= -github.com/dgrijalva/jwt-go v0.0.0-20170104182250-a601269ab70c/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= -github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= -github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= -github.com/dgryski/go-sip13 v0.0.0-20200911182023-62edffca9245/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= -github.com/digitalocean/godo v1.78.0/go.mod h1:GBmu8MkjZmNARE7IXRPmkbbnocNN8+uBm0xbEVw2LCs= -github.com/digitalocean/godo v1.81.0/go.mod h1:BPCqvwbjbGqxuUnIKB4EvS/AX7IDnNmt5fwvIkWo+ew= -github.com/dimchansky/utfbom v1.1.1 h1:vV6w1AhK4VMnhBno/TPVCoK9U/LP0PkLCS9tbxHdi/U= -github.com/dimchansky/utfbom v1.1.1/go.mod h1:SxdoEBH5qIqFocHMyGOXVAybYJdr71b1Q/j0mACtrfE= github.com/djherbis/times v1.5.0 h1:79myA211VwPhFTqUk8xehWrsEO+zcIZj0zT8mXPVARU= github.com/djherbis/times v1.5.0/go.mod h1:5q7FDLvbNg1L/KaBmPcWlVR9NmoKo3+ucqUA3ijQhA0= -github.com/dnaeon/go-vcr v1.0.1/go.mod h1:aBB1+wY4s93YsC3HHjMBMrwTj2R9FHDzUr9KyGc8n1E= -github.com/dnaeon/go-vcr v1.1.0/go.mod h1:M7tiix8f0r6mKKJ3Yq/kqU1OYf3MnfmBWVbPx/yU9ko= -github.com/dnaeon/go-vcr v1.2.0/go.mod h1:R4UdLID7HZT3taECzJs4YgbbH6PIGXB6W/sc5OLb6RQ= -github.com/docker/cli v0.0.0-20191017083524-a8ff7f821017/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8= -github.com/docker/distribution v0.0.0-20190905152932-14b96e55d84c/go.mod h1:0+TTO4EOBfRPhZXAeF1Vu+W3hHZ8eLp8PgKVZlcvtFY= -github.com/docker/distribution v2.7.1-0.20190205005809-0d3efadf0154+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= -github.com/docker/distribution v2.7.1+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= -github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= -github.com/docker/docker v20.10.14+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= -github.com/docker/docker v20.10.17+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= -github.com/docker/docker-credential-helpers v0.6.3/go.mod h1:WRaJzqw3CTB9bk10avuGsjVBZsD05qeibJ1/TYlvc0Y= -github.com/docker/go-connections v0.4.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec= -github.com/docker/go-events v0.0.0-20170721190031-9461782956ad/go.mod h1:Uw6UezgYA44ePAFQYUehOuCzmy5zmg/+nl2ZfMWGkpA= -github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c/go.mod h1:Uw6UezgYA44ePAFQYUehOuCzmy5zmg/+nl2ZfMWGkpA= -github.com/docker/go-metrics v0.0.0-20180209012529-399ea8c73916/go.mod h1:/u0gXw0Gay3ceNrsHubL3BtdOL2fHf93USgMTe0W5dI= -github.com/docker/go-metrics v0.0.1/go.mod h1:cG1hvH2utMXtqgqqYE9plW6lDxS3/5ayHzueweSI3Vw= -github.com/docker/go-units v0.3.3/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= -github.com/docker/go-units v0.4.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= -github.com/docker/libtrust v0.0.0-20150114040149-fa567046d9b1/go.mod h1:cyGadeNEkKy96OOhEzfZl+yxihPEzKnqJwvfuSUqbZE= -github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96/go.mod h1:Qh8CwZgvJUkLughtfhJv5dyTYa91l1fOUCrgjqmcifM= -github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= -github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= -github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= -github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= -github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= -github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= -github.com/edsrzf/mmap-go v1.0.0/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= github.com/edsrzf/mmap-go v1.1.0 h1:6EUwBLQ/Mcr1EYLE4Tn1VdW1A4ckqCQWZBw8Hr0kjpQ= github.com/edsrzf/mmap-go v1.1.0/go.mod h1:19H/e8pUPLicwkyNgOykDXkJ9F0MHE+Z52B8EIth78Q= -github.com/elazarl/goproxy v0.0.0-20180725130230-947c36da3153/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc= github.com/elazarl/goproxy v0.0.0-20230808193330-2592e75ae04a h1:mATvB/9r/3gvcejNsXKSkQ6lcIaNec2nyfOdlTBR2lU= github.com/elazarl/goproxy v0.0.0-20230808193330-2592e75ae04a/go.mod h1:Ro8st/ElPeALwNFlcTpWmkr6IoMFfkjXAvTHpevnDsM= -github.com/emicklei/go-restful v0.0.0-20170410110728-ff4f55a20633/go.mod h1:otzb+WCGbkyDHkqmQmT5YD2WR4BBwUdeQoFo8l/7tVs= -github.com/emicklei/go-restful v2.9.5+incompatible/go.mod h1:otzb+WCGbkyDHkqmQmT5YD2WR4BBwUdeQoFo8l/7tVs= github.com/emirpasic/gods v1.18.1 h1:FXtiHYKDGKCW2KzwZKx0iC0PQmdlorYgdFG9jPXJ1Bc= github.com/emirpasic/gods v1.18.1/go.mod h1:8tpGGwCnJ5H4r6BWwaV6OrWmMoPhUl5jm/FMNAnJvWQ= -github.com/envoyproxy/go-control-plane v0.6.9/go.mod h1:SBwIajubJHhxtWwsL9s8ss4safvEdbitLhGGK48rN6g= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= -github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= -github.com/envoyproxy/go-control-plane v0.10.1/go.mod h1:AY7fTTXNdv/aJ2O5jwpxAPOWUZ7hQAEvzN5Pf27BkQQ= -github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE= -github.com/envoyproxy/go-control-plane v0.10.3/go.mod h1:fJJn/j26vwOu972OllsvAgJJM//w9BV6Fxbg2LuVd34= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= -github.com/envoyproxy/protoc-gen-validate v0.6.7/go.mod h1:dyJXwwfPK2VSqiB9Klm1J6romD608Ba7Hij42vrOBCo= -github.com/evanphx/json-patch v4.9.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= -github.com/evanphx/json-patch v4.11.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= -github.com/evanphx/json-patch v4.12.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= github.com/evanphx/json-patch v5.6.0+incompatible h1:jBYDEEiFBPxA0v50tFdvOzQQTCvpL6mnFh5mB2/l16U= github.com/evanphx/json-patch v5.6.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= -github.com/evanphx/json-patch/v5 v5.5.0/go.mod h1:G79N1coSVB93tBe7j6PhzjmR3/2VvlbKOFpnXhI9Bw4= -github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= github.com/fatih/color v1.9.0/go.mod h1:eQcE1qtQxscV5RaZvpXrrb8Drkc3/DdQ+uUYCNjL+zU= -github.com/fatih/color v1.10.0/go.mod h1:ELkj/draVOlAH/xkhN6mQ50Qd0MPOk5AAr3maGEBuJM= -github.com/fatih/color v1.13.0 h1:8LOYc1KYPPmyKMuN8QV2DNRWNbLo6LZ0iLs8+mlH53w= -github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= -github.com/fatih/structs v1.1.0 h1:Q7juDM0QtcnhCpeyLGQKyg4TOIghuNXrkL32pHAUMxo= -github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M= -github.com/felixge/httpsnoop v1.0.1/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= -github.com/felixge/httpsnoop v1.0.2/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= -github.com/felixge/httpsnoop v1.0.3/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= -github.com/form3tech-oss/jwt-go v3.2.2+incompatible/go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k= -github.com/form3tech-oss/jwt-go v3.2.3+incompatible/go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k= -github.com/fortytw2/leaktest v1.3.0/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g= -github.com/franela/goblin v0.0.0-20200105215937-c9ffbefa60db/go.mod h1:7dvUGVsVBjqR7JHJk0brhHOZYGmfBYOrK0ZhYMEtBr4= -github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8/go.mod h1:ZhphrRTfi2rbfLwlschooIH4+wKKDR4Pdxhh+TRoA20= -github.com/frankban/quicktest v1.10.0/go.mod h1:ui7WezCLWMWxVWr1GETZY3smRy0G4KWq9vcPtJmFl7Y= -github.com/frankban/quicktest v1.11.3/go.mod h1:wRf/ReqHper53s+kmmSZizM8NamnL3IM0I9ntUbOk+k= -github.com/frankban/quicktest v1.13.0 h1:yNZif1OkDfNoDfb9zZa9aXIpejNR4F23Wely0c+Qdqk= -github.com/frankban/quicktest v1.13.0/go.mod h1:qLE0fzW0VuyUAJgPU19zByoIr0HtCHN/r/VLSOOIySU= -github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= -github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= -github.com/fsnotify/fsnotify v1.5.1/go.mod h1:T3375wBYaZdLLcVNkcVbzGHY7f1l/uK5T5Ai1i3InKU= -github.com/fsnotify/fsnotify v1.5.4/go.mod h1:OVB6XrOHzAwXMpEM7uPOzcehqUV2UqJxmVXmkdnm1bU= -github.com/fullsailor/pkcs7 v0.0.0-20190404230743-d7302db945fa/go.mod h1:KnogPXtdwXqoenmZCw6S+25EAm2MkxbG0deNDu4cbSA= -github.com/garyburd/redigo v0.0.0-20150301180006-535138d7bcd7/go.mod h1:NR3MbYisc3/PwhQ00EMzDiPmrwpPxAn5GI05/YaO1SY= +github.com/fatih/color v1.15.0 h1:kOqh6YHBtK8aywxGerMG2Eq3H6Qgoqeo13Bk2Mv/nBs= +github.com/fatih/color v1.15.0/go.mod h1:0h5ZqXfHYED7Bhv2ZJamyIOUej9KtShiJESRwBDUSsw= +github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2Wg= +github.com/felixge/httpsnoop v1.0.4/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= github.com/gedex/inflector v0.0.0-20170307190818-16278e9db813 h1:Uc+IZ7gYqAf/rSGFplbWBSHaGolEQlNLgMgSE3ccnIQ= github.com/gedex/inflector v0.0.0-20170307190818-16278e9db813/go.mod h1:P+oSoE9yhSRvsmYyZsshflcR6ePWYLql6UU1amW13IM= -github.com/getkin/kin-openapi v0.76.0/go.mod h1:660oXbgy5JFMKreazJaQTw7o+X00qeSyhcnluiMv+Xg= -github.com/getsentry/raven-go v0.2.0/go.mod h1:KungGk8q33+aIAZUIVWZDr2OfAEBsO49PX4NzFV5kcQ= -github.com/ghodss/yaml v0.0.0-20150909031657-73d445a93680/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= -github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= -github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= -github.com/gin-gonic/gin v1.6.3/go.mod h1:75u5sXoLsGZoRN5Sgbi1eraJ4GU3++wFwWzhwvtwp4M= -github.com/gin-gonic/gin v1.7.7/go.mod h1:axIBovoeJpVj8S3BwE0uPMTeReE4+AfFtqpqaZ1qq1U= -github.com/gliderlabs/ssh v0.3.5 h1:OcaySEmAQJgyYcArR+gGGTHCyE7nvhEMTlYY+Dp8CpY= -github.com/gliderlabs/ssh v0.3.5/go.mod h1:8XB4KraRrX39qHhT6yxPsHedjA08I/uBVwj4xC+/+z4= -github.com/go-asn1-ber/asn1-ber v1.3.1/go.mod h1:hEBeB/ic+5LoWskz+yKT7vGhhPYkProFKoKdwZRWMe0= +github.com/gliderlabs/ssh v0.3.7 h1:iV3Bqi942d9huXnzEF2Mt+CY9gLu8DNM4Obd+8bODRE= +github.com/gliderlabs/ssh v0.3.7/go.mod h1:zpHEXBstFnQYtGnB8k8kQLol82umzn/2/snG7alWVD8= github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 h1:+zs/tPmkDkHx3U66DAb0lQFJrpS6731Oaa12ikc+DiI= github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376/go.mod h1:an3vInlBmSxCcxctByoQdvwPiA7DTK7jaaFDBTtu0ic= github.com/go-git/go-billy/v5 v5.5.0 h1:yEY4yhzCDuMGSv83oGxiBotRzhwhNr8VZyphhiu+mTU= github.com/go-git/go-billy/v5 v5.5.0/go.mod h1:hmexnoNsr2SJU1Ju67OaNz5ASJY3+sHgFRpCtpDCKow= github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399 h1:eMje31YglSBqCdIqdhKBW8lokaMrL3uTkpGYlE2OOT4= github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399/go.mod h1:1OCfN199q1Jm3HZlxleg+Dw/mwps2Wbk9frAWm+4FII= -github.com/go-git/go-git/v5 v5.11.0 h1:XIZc1p+8YzypNr34itUfSvYJcv+eYdTnTvOZ2vD3cA4= -github.com/go-git/go-git/v5 v5.11.0/go.mod h1:6GFcX2P3NM7FPBfpePbpLd21XxsgdAt+lKqXmCUiUCY= +github.com/go-git/go-git/v5 v5.12.0 h1:7Md+ndsjrzZxbddRDZjF14qK+NN56sy6wkqaVrjZtys= +github.com/go-git/go-git/v5 v5.12.0/go.mod h1:FTM9VKtnI2m65hNI/TenDDDnUf2Q9FHnXYjuz9i5OEY= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= -github.com/go-ini/ini v1.25.4/go.mod h1:ByCAeIL28uOIIG0E3PJtZPDL8WnHpFKFOtgjp+3Ies8= -github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= -github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= -github.com/go-kit/kit v0.10.0/go.mod h1:xUsJbQ/Fp4kEt7AFgCuvyX4a71u8h9jB8tj/ORgOZ7o= -github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY= -github.com/go-kit/log v0.2.0/go.mod h1:NwTd00d/i8cPZ3xOwwiv2PO5MOcx78fFErGNcVmBjv0= -github.com/go-kit/log v0.2.1/go.mod h1:NwTd00d/i8cPZ3xOwwiv2PO5MOcx78fFErGNcVmBjv0= -github.com/go-ldap/ldap/v3 v3.1.10/go.mod h1:5Zun81jBTabRaI8lzN7E1JjyEl1g6zI6u9pd8luAK4Q= -github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= -github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= -github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= -github.com/go-logfmt/logfmt v0.5.1/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KEVveWlfTs= -github.com/go-logr/logr v0.1.0/go.mod h1:ixOQHD9gLJUVQQ2ZOR7zLEifBX6tGkNJF4QyIY7sIas= -github.com/go-logr/logr v0.2.0/go.mod h1:z6/tIYblkpsD+a4lm/fGIIU9mZ+XfAiaFtq7xTgseGU= -github.com/go-logr/logr v0.4.0/go.mod h1:z6/tIYblkpsD+a4lm/fGIIU9mZ+XfAiaFtq7xTgseGU= -github.com/go-logr/logr v1.2.0/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/logr v1.2.1/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= +github.com/go-jose/go-jose/v3 v3.0.3 h1:fFKWeig/irsp7XD2zBxvnmA/XaRWp5V3CBsZXJF7G7k= +github.com/go-jose/go-jose/v3 v3.0.3/go.mod h1:5b+7YgP7ZICgJDBdfjZaIt+H/9L9T/YQrVfLAMboGkQ= github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/logr v1.2.3/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/stdr v1.2.0/go.mod h1:YkVgnZu1ZjjL7xTxrfm/LLZBfkhTqSR1ydtm6jTKKwI= +github.com/go-logr/logr v1.4.1 h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ= +github.com/go-logr/logr v1.4.1/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= +github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= -github.com/go-openapi/analysis v0.21.2/go.mod h1:HZwRk4RRisyG8vx2Oe6aqeSQcoxRp47Xkp3+K6q+LdY= -github.com/go-openapi/errors v0.19.8/go.mod h1:cM//ZKUKyO06HSwqAelJ5NsEMMcpa6VpXe8DOa1Mi1M= -github.com/go-openapi/errors v0.19.9/go.mod h1:cM//ZKUKyO06HSwqAelJ5NsEMMcpa6VpXe8DOa1Mi1M= -github.com/go-openapi/errors v0.20.2/go.mod h1:cM//ZKUKyO06HSwqAelJ5NsEMMcpa6VpXe8DOa1Mi1M= -github.com/go-openapi/jsonpointer v0.0.0-20160704185906-46af16f9f7b1/go.mod h1:+35s3my2LFTysnkMfxsJBAMHj/DoqoB9knIWoYG/Vk0= -github.com/go-openapi/jsonpointer v0.19.2/go.mod h1:3akKfEdA7DF1sugOqz1dVQHBcuDBPKZGEoHC/NkiQRg= -github.com/go-openapi/jsonpointer v0.19.3/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= -github.com/go-openapi/jsonpointer v0.19.5/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= -github.com/go-openapi/jsonreference v0.0.0-20160704190145-13c6e3589ad9/go.mod h1:W3Z9FmVs9qj+KR4zFKmDPGiLdk1D9Rlm7cyMvf57TTg= -github.com/go-openapi/jsonreference v0.19.2/go.mod h1:jMjeRr2HHw6nAVajTXJ4eiUwohSTlpa0o73RUL1owJc= -github.com/go-openapi/jsonreference v0.19.3/go.mod h1:rjx6GuL8TTa9VaixXglHmQmIL98+wF9xc8zWvFonSJ8= -github.com/go-openapi/jsonreference v0.19.5/go.mod h1:RdybgQwPxbL4UEjuAruzK1x3nE69AqPYEJeo/TWfEeg= -github.com/go-openapi/jsonreference v0.19.6/go.mod h1:diGHMEHg2IqXZGKxqyvWdfWU/aim5Dprw5bqpKkTvns= -github.com/go-openapi/loads v0.21.1/go.mod h1:/DtAMXXneXFjbQMGEtbamCZb+4x7eGwkvZCvBmwUG+g= -github.com/go-openapi/runtime v0.23.1/go.mod h1:AKurw9fNre+h3ELZfk6ILsfvPN+bvvlaU/M9q/r9hpk= -github.com/go-openapi/spec v0.0.0-20160808142527-6aced65f8501/go.mod h1:J8+jY1nAiCcj+friV/PDoE1/3eeccG9LYBs0tYvLOWc= -github.com/go-openapi/spec v0.19.3/go.mod h1:FpwSN1ksY1eteniUU7X0N/BgJ7a4WvBFVA8Lj9mJglo= -github.com/go-openapi/spec v0.20.4/go.mod h1:faYFR1CvsJZ0mNsmsphTMSoRrNV3TEDoAM7FOEWeq8I= -github.com/go-openapi/strfmt v0.21.0/go.mod h1:ZRQ409bWMj+SOgXofQAGTIo2Ebu72Gs+WaRADcS5iNg= -github.com/go-openapi/strfmt v0.21.1/go.mod h1:I/XVKeLc5+MM5oPNN7P6urMOpuLXEcNrCX/rPGuWb0k= -github.com/go-openapi/strfmt v0.21.2/go.mod h1:I/XVKeLc5+MM5oPNN7P6urMOpuLXEcNrCX/rPGuWb0k= -github.com/go-openapi/swag v0.0.0-20160704191624-1d0bd113de87/go.mod h1:DXUve3Dpr1UfpPtxFw+EFuQ41HhCWZfha5jSVRG7C7I= -github.com/go-openapi/swag v0.19.2/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= -github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= -github.com/go-openapi/swag v0.19.14/go.mod h1:QYRuS/SOXUCsnplDa677K7+DxSOj6IPNl/eQntq43wQ= -github.com/go-openapi/swag v0.19.15/go.mod h1:QYRuS/SOXUCsnplDa677K7+DxSOj6IPNl/eQntq43wQ= -github.com/go-openapi/swag v0.21.1/go.mod h1:QYRuS/SOXUCsnplDa677K7+DxSOj6IPNl/eQntq43wQ= -github.com/go-openapi/validate v0.21.0/go.mod h1:rjnrwK57VJ7A8xqfpAOEKRH8yQSGUriMu5/zuPSQ1hg= -github.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4= -github.com/go-playground/locales v0.13.0/go.mod h1:taPMhCMXrRLJO55olJkUXHZBHCxTMfnGwq/HNwmWNS8= -github.com/go-playground/universal-translator v0.17.0/go.mod h1:UkSxE5sNxxRwHyU+Scu5vgOQjsIJAF8j9muTVoKLVtA= -github.com/go-playground/validator/v10 v10.2.0/go.mod h1:uOYAAleCW8F/7oMFd6aG0GOhaH6EGOAJShg8Id5JGkI= -github.com/go-playground/validator/v10 v10.4.1/go.mod h1:nlOn6nFhuKACm19sB/8EGNn9GlaMV7XkbRSipzJ0Ii4= -github.com/go-resty/resty/v2 v2.1.1-0.20191201195748-d7b97669fe48/go.mod h1:dZGr0i9PLlaaTD4H/hoZIDjQ+r6xq8mgbRzHZf7f2J8= -github.com/go-sql-driver/mysql v1.4.0/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= -github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= -github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= -github.com/go-stack/stack v1.8.1/go.mod h1:dcoOX6HbPZSZptuspn9bctJ+N/CnF5gGygcUP3XYfe4= -github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0/go.mod h1:fyg7847qk6SyHyPtNmDHnmrv/HOrqktSC+C9fM+CJOE= -github.com/go-test/deep v1.0.2/go.mod h1:wGDj63lr65AM2AQyKZd/NYHGb0R+1RLqB8NKt3aSFNA= github.com/go-test/deep v1.0.3 h1:ZrJSEWsXzPOxaZnFteGEfooLba+ju3FYIbOrS+rQd68= github.com/go-test/deep v1.0.3/go.mod h1:wGDj63lr65AM2AQyKZd/NYHGb0R+1RLqB8NKt3aSFNA= -github.com/go-zookeeper/zk v1.0.2/go.mod h1:nOB03cncLtlp4t+UAkGSV+9beXP/akpekBwL+UX1Qcw= -github.com/gobuffalo/attrs v0.0.0-20190224210810-a9411de4debd/go.mod h1:4duuawTqi2wkkpB4ePgWMaai6/Kc6WEz83bhFwpHzj0= -github.com/gobuffalo/depgen v0.0.0-20190329151759-d478694a28d3/go.mod h1:3STtPUQYuzV0gBVOY3vy6CfMm/ljR4pABfrTeHNLHUY= -github.com/gobuffalo/depgen v0.1.0/go.mod h1:+ifsuy7fhi15RWncXQQKjWS9JPkdah5sZvtHc2RXGlg= -github.com/gobuffalo/envy v1.6.15/go.mod h1:n7DRkBerg/aorDM8kbduw5dN3oXGswK5liaSCx4T5NI= -github.com/gobuffalo/envy v1.7.0/go.mod h1:n7DRkBerg/aorDM8kbduw5dN3oXGswK5liaSCx4T5NI= -github.com/gobuffalo/flect v0.1.0/go.mod h1:d2ehjJqGOH/Kjqcoz+F7jHTBbmDb38yXA598Hb50EGs= -github.com/gobuffalo/flect v0.1.1/go.mod h1:8JCgGVbRjJhVgD6399mQr4fx5rRfGKVzFjbj6RE/9UI= -github.com/gobuffalo/flect v0.1.3/go.mod h1:8JCgGVbRjJhVgD6399mQr4fx5rRfGKVzFjbj6RE/9UI= -github.com/gobuffalo/genny v0.0.0-20190329151137-27723ad26ef9/go.mod h1:rWs4Z12d1Zbf19rlsn0nurr75KqhYp52EAGGxTbBhNk= -github.com/gobuffalo/genny v0.0.0-20190403191548-3ca520ef0d9e/go.mod h1:80lIj3kVJWwOrXWWMRzzdhW3DsrdjILVil/SFKBzF28= -github.com/gobuffalo/genny v0.1.0/go.mod h1:XidbUqzak3lHdS//TPu2OgiFB+51Ur5f7CSnXZ/JDvo= -github.com/gobuffalo/genny v0.1.1/go.mod h1:5TExbEyY48pfunL4QSXxlDOmdsD44RRq4mVZ0Ex28Xk= -github.com/gobuffalo/gitgen v0.0.0-20190315122116-cc086187d211/go.mod h1:vEHJk/E9DmhejeLeNt7UVvlSGv3ziL+djtTr3yyzcOw= -github.com/gobuffalo/gogen v0.0.0-20190315121717-8f38393713f5/go.mod h1:V9QVDIxsgKNZs6L2IYiGR8datgMhB577vzTDqypH360= -github.com/gobuffalo/gogen v0.1.0/go.mod h1:8NTelM5qd8RZ15VjQTFkAW6qOMx5wBbW4dSCS3BY8gg= -github.com/gobuffalo/gogen v0.1.1/go.mod h1:y8iBtmHmGc4qa3urIyo1shvOD8JftTtfcKi+71xfDNE= -github.com/gobuffalo/logger v0.0.0-20190315122211-86e12af44bc2/go.mod h1:QdxcLw541hSGtBnhUc4gaNIXRjiDppFGaDqzbrBd3v8= -github.com/gobuffalo/mapi v1.0.1/go.mod h1:4VAGh89y6rVOvm5A8fKFxYG+wIW6LO1FMTG9hnKStFc= -github.com/gobuffalo/mapi v1.0.2/go.mod h1:4VAGh89y6rVOvm5A8fKFxYG+wIW6LO1FMTG9hnKStFc= -github.com/gobuffalo/packd v0.0.0-20190315124812-a385830c7fc0/go.mod h1:M2Juc+hhDXf/PnmBANFCqx4DM3wRbgDvnVWeG2RIxq4= -github.com/gobuffalo/packd v0.1.0/go.mod h1:M2Juc+hhDXf/PnmBANFCqx4DM3wRbgDvnVWeG2RIxq4= -github.com/gobuffalo/packr/v2 v2.0.9/go.mod h1:emmyGweYTm6Kdper+iywB6YK5YzuKchGtJQZ0Odn4pQ= -github.com/gobuffalo/packr/v2 v2.2.0/go.mod h1:CaAwI0GPIAv+5wKLtv8Afwl+Cm78K/I/VCm/3ptBN+0= -github.com/gobuffalo/syncx v0.0.0-20190224160051-33c29581e754/go.mod h1:HhnNqWY95UYwwW3uSASeV7vtgYkT2t16hJgV3AEPUpw= -github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee/go.mod h1:L0fX3K22YWvt/FAX9NnzrNzcI4wNYi9Yku4O0LKYflo= -github.com/gobwas/pool v0.2.0/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw= -github.com/gobwas/ws v1.0.2/go.mod h1:szmBTxLgaFppYjEmNtny/v3w89xOydFnnZMcgRRu/EM= -github.com/goccy/go-yaml v1.9.5/go.mod h1:U/jl18uSupI5rdI2jmuCswEA2htH9eXfferR3KfscvA= -github.com/godbus/dbus v0.0.0-20151105175453-c7fdd8b5cd55/go.mod h1:/YcGZj5zSblfDWMMoOzV4fas9FZnQYTkDnsGvmh2Grw= -github.com/godbus/dbus v0.0.0-20180201030542-885f9cc04c9c/go.mod h1:/YcGZj5zSblfDWMMoOzV4fas9FZnQYTkDnsGvmh2Grw= -github.com/godbus/dbus v0.0.0-20190422162347-ade71ed3457e/go.mod h1:bBOAhwG1umN6/6ZUMtDFBMQR8jRg9O75tm9K00oMsK4= -github.com/godbus/dbus/v5 v5.0.3/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= -github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= -github.com/godbus/dbus/v5 v5.0.6/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= -github.com/gofrs/uuid v3.3.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= -github.com/gofrs/uuid v4.0.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= github.com/gofrs/uuid v4.2.0+incompatible h1:yyYWMnhkhrKwwr8gAOcOCYxOOscHgDS9yZgBrnJfGa0= github.com/gofrs/uuid v4.2.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= -github.com/gogo/googleapis v1.1.0/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s= -github.com/gogo/googleapis v1.2.0/go.mod h1:Njal3psf3qN6dwBtQfUmBZh2ybovJ0tlu3o/AC7HYjU= -github.com/gogo/googleapis v1.4.0/go.mod h1:5YRNX2z1oM5gXdAkurHa942MDgEJyk02w4OecKY87+c= -github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= -github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= -github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/gogo/protobuf v1.2.2-0.20190723190241-65acae22fc9d/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= -github.com/gogo/protobuf v1.3.0/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= github.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= -github.com/golang-jwt/jwt v3.2.1+incompatible h1:73Z+4BJcrTC+KczS6WvTPvRGOp1WmfEP4Q1lOd9Z/+c= -github.com/golang-jwt/jwt v3.2.1+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I= -github.com/golang-jwt/jwt/v4 v4.0.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= -github.com/golang-jwt/jwt/v4 v4.2.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= -github.com/golang-jwt/jwt/v4 v4.4.2 h1:rcc4lwaZgFMCZ5jxF9ABolDcIHdBytAFgqFPbSJQAYs= -github.com/golang-jwt/jwt/v4 v4.4.2/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= -github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe/go.mod h1:8vg3r2VgvsThLBIFL93Qb5yWzgyZWhEmBwUJWevAkK0= -github.com/golang-sql/sqlexp v0.1.0/go.mod h1:J4ad9Vo8ZCWQ2GMrC4UCQy1JpCbwU9m3EOqtpKwwwHI= +github.com/golang-jwt/jwt/v5 v5.2.1 h1:OuVbFODueb089Lh128TAcimifWaLhJwVflnrgM17wHk= +github.com/golang-jwt/jwt/v5 v5.2.1/go.mod h1:pqrtFR0X4osieyHYxtmOUWsAWrfe1Q5UVIyoH402zdk= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= -github.com/golang/glog v1.1.0 h1:/d3pCKDPWNnvIWe0vVUpNP32qc8U3PDVxySP/y360qE= -github.com/golang/glog v1.1.0/go.mod h1:pfYeQZ3JWZoXTV5sFc986z3HTpwQs9At6P4ImfuP3NQ= -github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/glog v1.2.0 h1:uCdmnmatrKCgMBlM4rMuJZWOkPDqdbZPnrMXDY4gI68= +github.com/golang/glog v1.2.0/go.mod h1:6AhwSGph0fcJtXVM/PEHPqZlFeoLxhs7/t5UDAwmO+w= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= @@ -789,8 +236,6 @@ github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= -github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= -github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= @@ -806,19 +251,11 @@ github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QD github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= -github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= -github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= -github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= -github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golang/snappy v0.0.4 h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM= -github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek= +github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= -github.com/google/btree v1.0.1/go.mod h1:xXMiIv4Fb/0kKde4SpL7qlzvu5cMJDRkFDxJfI9uaxA= -github.com/google/gnostic v0.5.7-v3refs/go.mod h1:73MKFl6jIHelAJNaBGFzt3SPtZULs9dYrGFt8OiIsHQ= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= @@ -830,28 +267,20 @@ github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/ github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE= -github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/go-containerregistry v0.5.1/go.mod h1:Ct15B4yir3PLOP5jsy0GNeYVaIZs/MK/Jz5any1wFW0= -github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck= github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8= github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU= github.com/google/go-replayers/grpcreplay v1.1.0 h1:S5+I3zYyZ+GQz68OfbURDdt/+cSMqCK1wrvNx7WBzTE= github.com/google/go-replayers/grpcreplay v1.1.0/go.mod h1:qzAvJ8/wi57zq7gWqaE6AwLM6miiXUQwP1S+I9icmhk= -github.com/google/go-replayers/httpreplay v1.1.1 h1:H91sIMlt1NZzN7R+/ASswyouLJfW0WLW7fhyUFvDEkY= -github.com/google/go-replayers/httpreplay v1.1.1/go.mod h1:gN9GeLIs7l6NUoVaSSnv2RiqK1NiwAmD0MrKeC9IIks= +github.com/google/go-replayers/httpreplay v1.2.0 h1:VM1wEyyjaoU53BwrOnaf9VhAyQQEEioJvFYxYcLRKzk= +github.com/google/go-replayers/httpreplay v1.2.0/go.mod h1:WahEFFZZ7a1P4VM1qEeHy+tME4bwyqPcwWbNlUI1Mcg= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= -github.com/google/gofuzz v1.1.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= -github.com/google/gofuzz v1.2.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/martian v2.1.0+incompatible h1:/CP5g8u/VJHijgedC/Legn3BAbAaWPgecwXBIDzw5no= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= -github.com/google/martian v2.1.1-0.20190517191504-25dcb96d9e51+incompatible h1:xmapqc1AyLoB+ddYT6r04bD9lIjlOqGaREovi0SzFaE= -github.com/google/martian v2.1.1-0.20190517191504-25dcb96d9e51+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= github.com/google/martian/v3 v3.3.2 h1:IqNFLAmvJOgVlpdEBiQbDc2EwKW77amAycfTuWKdfvw= github.com/google/martian/v3 v3.3.2/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= @@ -864,421 +293,123 @@ github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hf github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210506205249-923b5ab0fc1a/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20220318212150-b2ab0324ddda/go.mod h1:KgnwoLYCZ8IQu3XUZ8Nc/bM9CCZFOyjUNOSygVozoDg= -github.com/google/pprof v0.0.0-20220608213341-c488b8fa1db3/go.mod h1:gSuNB+gJaOiQKLEZ+q+PK9Mq3SOzhRcw2GsGS/FhYDk= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= -github.com/google/s2a-go v0.1.4 h1:1kZ/sQM3srePvKs3tXAvQzo66XfcReoqFpIpIccE7Oc= -github.com/google/s2a-go v0.1.4/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A= -github.com/google/subcommands v1.0.1/go.mod h1:ZjhPrFU+Olkh9WazFPsl27BQ4UPiG37m3yTrtFlrHVk= -github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/s2a-go v0.1.7 h1:60BLSyTrOV4/haCDW4zb1guZItoSq8foHCXrAnjBo/o= +github.com/google/s2a-go v0.1.7/go.mod h1:50CgR4k1jNlWBu4UfS4AcfhVe1r6pdZPygJ3R8F0Qdw= +github.com/google/subcommands v1.2.0/go.mod h1:ZjhPrFU+Olkh9WazFPsl27BQ4UPiG37m3yTrtFlrHVk= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.2.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= -github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/wire v0.5.0 h1:I7ELFeVBr3yfPIcc8+MWvrjk+3VjbcSzoXm3JVa+jD8= -github.com/google/wire v0.5.0/go.mod h1:ngWDr9Qvq3yZA10YrxfyGELY/AFWGVpy9c1LTRi1EoU= -github.com/googleapis/enterprise-certificate-proxy v0.0.0-20220520183353-fd19c99a87aa/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= -github.com/googleapis/enterprise-certificate-proxy v0.1.0/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= -github.com/googleapis/enterprise-certificate-proxy v0.2.3 h1:yk9/cqRKtT9wXZSsRH9aurXEpJX+U6FLtpYTdC3R06k= -github.com/googleapis/enterprise-certificate-proxy v0.2.3/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= +github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= +github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/wire v0.6.0 h1:HBkoIh4BdSxoyo9PveV8giw7ZsaBOvzWKfcg/6MrVwI= +github.com/google/wire v0.6.0/go.mod h1:F4QhpQ9EDIdJ1Mbop/NZBRB+5yrR6qg3BnctaoUk6NA= +github.com/googleapis/enterprise-certificate-proxy v0.3.2 h1:Vie5ybvEvT75RniqhfFxPRy3Bf7vr3h0cechB90XaQs= +github.com/googleapis/enterprise-certificate-proxy v0.3.2/go.mod h1:VLSiSSBs/ksPL8kq3OBOQ6WRI2QnaFynd1DCjZ62+V0= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= -github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= -github.com/googleapis/gax-go/v2 v2.1.1/go.mod h1:hddJymUZASv3XPyGkUpKj8pPO47Rmb0eJc8R6ouapiM= -github.com/googleapis/gax-go/v2 v2.2.0/go.mod h1:as02EH8zWkzwUoLbBaFeQ+arQaj/OthfcblKl4IGNaM= -github.com/googleapis/gax-go/v2 v2.3.0/go.mod h1:b8LNqSzNabLiUpXKkY7HAR5jr6bIT99EXz9pXxye9YM= -github.com/googleapis/gax-go/v2 v2.4.0/go.mod h1:XOTVJ59hdnfJLIP/dh8n5CGryZR2LxK9wbMD5+iXC6c= -github.com/googleapis/gax-go/v2 v2.11.0 h1:9V9PWXEsWnPpQhu/PeQIkS4eGzMlTLGgt80cUUI8Ki4= -github.com/googleapis/gax-go/v2 v2.11.0/go.mod h1:DxmR61SGKkGLa2xigwuZIQpkCI2S5iydzRfb3peWZJI= -github.com/googleapis/gnostic v0.4.1/go.mod h1:LRhVm6pbyptWbWbuZ38d1eyptfvIytN3ir6b65WBswg= -github.com/googleapis/gnostic v0.5.1/go.mod h1:6U4PtQXGIEt/Z3h5MAT7FNofLnw9vXk2cUuW7uA/OeU= -github.com/googleapis/gnostic v0.5.5/go.mod h1:7+EbHbldMins07ALC74bsA81Ovc97DwqyJO1AENw9kA= -github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= +github.com/googleapis/gax-go/v2 v2.12.2 h1:mhN09QQW1jEWeMF74zGR81R30z4VJzjZsfkUhuHF+DA= +github.com/googleapis/gax-go/v2 v2.12.2/go.mod h1:61M8vcyyXR2kqKFxKrfA22jaA8JGF7Dc8App1U3H6jc= github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= -github.com/gophercloud/gophercloud v0.24.0/go.mod h1:Q8fZtyi5zZxPS/j9aj3sSxtvj41AdQMDwyo1myduD5c= -github.com/gophercloud/gophercloud v0.25.0/go.mod h1:Q8fZtyi5zZxPS/j9aj3sSxtvj41AdQMDwyo1myduD5c= -github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= -github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= -github.com/gorilla/handlers v0.0.0-20150720190736-60c7bfde3e33/go.mod h1:Qkdc/uu4tH4g6mTK6auzZ766c4CA0Ng8+o/OAirnOIQ= -github.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= -github.com/gorilla/mux v1.7.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= -github.com/gorilla/mux v1.7.3/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= github.com/gorilla/mux v1.8.0 h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI= github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= -github.com/gorilla/websocket v0.0.0-20170926233335-4201258b820c/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= -github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= -github.com/gorilla/websocket v1.4.1/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= -github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= -github.com/grafana/regexp v0.0.0-20220304095617-2e8d9baf4ac2/go.mod h1:M5qHK+eWfAv8VR/265dIuEpL3fNfeC21tXXp9itM24A= -github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA= -github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= -github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= -github.com/grpc-ecosystem/go-grpc-middleware v1.3.0/go.mod h1:z0ButlSOZa5vEBq9m2m2hlwIgKw+rp3sdCBRoJY+30Y= -github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= -github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= -github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= -github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0/go.mod h1:hgWBS7lorOAVIJEQMi4ZsPv9hVvWI6+ch50m39Pf2Ks= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.10.2/go.mod h1:chrfS3YoLAlKTRE5cFWvCbt8uGAjshktT4PveTUpsFQ= github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645 h1:MJG/KsmcqMwFAkh8mTnAwhyKoB+sTAnY4CACC110tbU= github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645/go.mod h1:6iZfnjpejD4L/4DwD7NryNaJyCQdzwWwH2MWhCA90Kw= -github.com/hanwen/go-fuse v1.0.0/go.mod h1:unqXarDXqzAk0rt98O2tVndEPIpUgLD9+rwFisZH3Ok= -github.com/hanwen/go-fuse/v2 v2.1.0/go.mod h1:oRyA5eK+pvJyv5otpO/DgccS8y/RvYMaO00GgRLGryc= -github.com/hashicorp/consul/api v1.1.0/go.mod h1:VmuI/Lkw1nC05EYQWNKwWGbkg+FbDBtguAZLlVdkD9Q= -github.com/hashicorp/consul/api v1.3.0/go.mod h1:MmDNSzIMUjNpY/mQ398R4bk2FnqQLoPndWW5VkKPlCE= -github.com/hashicorp/consul/api v1.12.0/go.mod h1:6pVBMo0ebnYdt2S3H87XhekM/HHrUoTD2XXb/VrZVy0= -github.com/hashicorp/consul/api v1.13.0/go.mod h1:ZlVrynguJKcYr54zGaDbaL3fOvKC9m72FhPvA8T35KQ= -github.com/hashicorp/consul/sdk v0.1.1/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8= -github.com/hashicorp/consul/sdk v0.3.0/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8= -github.com/hashicorp/consul/sdk v0.8.0/go.mod h1:GBvyrGALthsZObzUGsfgHZQDXjg4lOjagTIwIR1vPms= -github.com/hashicorp/cronexpr v1.1.1/go.mod h1:P4wA0KBl9C5q2hABiMO7cp6jcIg96CDh1Efb3g1PWA4= -github.com/hashicorp/errwrap v0.0.0-20141028054710-7554cd9344ce/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= -github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= -github.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ= github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= github.com/hashicorp/go-hclog v0.9.2/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ= -github.com/hashicorp/go-hclog v0.12.0/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= -github.com/hashicorp/go-hclog v0.12.2/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= -github.com/hashicorp/go-hclog v0.14.1/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= -github.com/hashicorp/go-hclog v0.16.2/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= github.com/hashicorp/go-hclog v1.2.2 h1:ihRI7YFwcZdiSD7SIenIhHfQH3OuDvWerAUBZbeQS3M= github.com/hashicorp/go-hclog v1.2.2/go.mod h1:W4Qnvbt70Wk/zYJryRzDRU/4r0kIg0PVHBcfoyhpF5M= -github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= -github.com/hashicorp/go-immutable-radix v1.2.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= -github.com/hashicorp/go-immutable-radix v1.3.1 h1:DKHmCUm2hRBK510BaiZlwvpD40f8bJFeZnpfm2KLowc= -github.com/hashicorp/go-immutable-radix v1.3.1/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= -github.com/hashicorp/go-kms-wrapping/entropy v0.1.0/go.mod h1:d1g9WGtAunDNpek8jUIEJnBlbgKS1N2Q61QkHiZyR1g= -github.com/hashicorp/go-msgpack v0.5.3/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM= -github.com/hashicorp/go-multierror v0.0.0-20161216184304-ed905158d874/go.mod h1:JMRHfdO9jKNzS/+BTlxCjKNQHg/jZAft8U7LloJvN7I= -github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= -github.com/hashicorp/go-multierror v1.1.0/go.mod h1:spPvp8C1qA32ftKqdAHm4hHTbPw+vmowP0z+KUhOZdA= github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo= github.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM= -github.com/hashicorp/go-plugin v1.4.3/go.mod h1:5fGEH17QVwTTcR0zV7yhDPLLmFX9YSZ38b18Udy6vYQ= -github.com/hashicorp/go-plugin v1.4.4/go.mod h1:viDMjcLJuDui6pXb8U4HVfb8AamCWhHGUjr2IrTF67s= -github.com/hashicorp/go-plugin v1.4.6 h1:MDV3UrKQBM3du3G7MApDGvOsMYy3JQJ4exhSoKBAeVA= -github.com/hashicorp/go-plugin v1.4.6/go.mod h1:viDMjcLJuDui6pXb8U4HVfb8AamCWhHGUjr2IrTF67s= -github.com/hashicorp/go-retryablehttp v0.5.3/go.mod h1:9B5zBasrRhHXnJnui7y6sL7es7NDiJgTc6Er0maI1Xs= -github.com/hashicorp/go-retryablehttp v0.6.6/go.mod h1:vAew36LZh98gCBJNLH42IQ1ER/9wtLZZ8meHqQvEYWY= -github.com/hashicorp/go-retryablehttp v0.7.1 h1:sUiuQAnLlbvmExtFQs72iFW/HXeUn8Z1aJLQ4LJJbTQ= -github.com/hashicorp/go-retryablehttp v0.7.1/go.mod h1:vAew36LZh98gCBJNLH42IQ1ER/9wtLZZ8meHqQvEYWY= -github.com/hashicorp/go-rootcerts v1.0.0/go.mod h1:K6zTfqpRlCUIjkwsN4Z+hiSfzSTQa6eBIzfwKfwNnHU= +github.com/hashicorp/go-retryablehttp v0.7.5 h1:bJj+Pj19UZMIweq/iie+1u5YCdGrnxCT9yvm0e+Nd5M= +github.com/hashicorp/go-retryablehttp v0.7.5/go.mod h1:Jy/gPYAdjqffZ/yFGCFV2doI5wjtH1ewM9u8iYVjtX8= github.com/hashicorp/go-rootcerts v1.0.2 h1:jzhAVGtqPKbwpyCPELlgNWhE1znq+qwJtW5Oi2viEzc= github.com/hashicorp/go-rootcerts v1.0.2/go.mod h1:pqUvnprVnM5bf7AOirdbb01K4ccR319Vf4pU3K5EGc8= -github.com/hashicorp/go-secure-stdlib/base62 v0.1.1/go.mod h1:EdWO6czbmthiwZ3/PUsDV+UD1D5IRU4ActiaWGwt0Yw= -github.com/hashicorp/go-secure-stdlib/mlock v0.1.1/go.mod h1:zq93CJChV6L9QTfGKtfBxKqD7BqqXx5O04A/ns2p5+I= -github.com/hashicorp/go-secure-stdlib/mlock v0.1.2 h1:p4AKXPPS24tO8Wc8i1gLvSKdmkiSY5xuju57czJ/IJQ= -github.com/hashicorp/go-secure-stdlib/mlock v0.1.2/go.mod h1:zq93CJChV6L9QTfGKtfBxKqD7BqqXx5O04A/ns2p5+I= -github.com/hashicorp/go-secure-stdlib/parseutil v0.1.1/go.mod h1:QmrqtbKuxxSWTN3ETMPuB+VtEiBJ/A9XhoYGv8E1uD8= -github.com/hashicorp/go-secure-stdlib/parseutil v0.1.6 h1:om4Al8Oy7kCm/B86rLCLah4Dt5Aa0Fr5rYBG60OzwHQ= -github.com/hashicorp/go-secure-stdlib/parseutil v0.1.6/go.mod h1:QmrqtbKuxxSWTN3ETMPuB+VtEiBJ/A9XhoYGv8E1uD8= -github.com/hashicorp/go-secure-stdlib/password v0.1.1/go.mod h1:9hH302QllNwu1o2TGYtSk8I8kTAN0ca1EHpwhm5Mmzo= -github.com/hashicorp/go-secure-stdlib/strutil v0.1.1/go.mod h1:gKOamz3EwoIoJq7mlMIRBpVTAUn8qPCrEclOKKWhD3U= +github.com/hashicorp/go-secure-stdlib/parseutil v0.1.8 h1:iBt4Ew4XEGLfh6/bPk4rSYmuZJGizr6/x/AEizP0CQc= +github.com/hashicorp/go-secure-stdlib/parseutil v0.1.8/go.mod h1:aiJI+PIApBRQG7FZTEBx5GiiX+HbOHilUdNxUZi4eV0= github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 h1:kes8mmyCpxJsI7FTwtzRqEy9CdjCtrXrXGuOpxEA7Ts= github.com/hashicorp/go-secure-stdlib/strutil v0.1.2/go.mod h1:Gou2R9+il93BqX25LAKCLuM+y9U2T4hlwvT1yprcna4= -github.com/hashicorp/go-secure-stdlib/tlsutil v0.1.1/go.mod h1:l8slYwnJA26yBz+ErHpp2IRCLr0vuOMGBORIz4rRiAs= -github.com/hashicorp/go-sockaddr v1.0.0/go.mod h1:7Xibr9yA9JjQq1JpNB2Vw7kxv8xerXegt+ozgdvDeDU= -github.com/hashicorp/go-sockaddr v1.0.2 h1:ztczhD1jLxIRjVejw8gFomI1BQZOe2WoVOu0SyteCQc= -github.com/hashicorp/go-sockaddr v1.0.2/go.mod h1:rB4wwRAUzs07qva3c5SdrY/NEtAUjGlgmH/UkBUC97A= -github.com/hashicorp/go-syslog v1.0.0/go.mod h1:qPfqrKkXGihmCqbJM2mZgkZGvKG1dFdvsLplgctolz4= -github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= -github.com/hashicorp/go-uuid v1.0.1/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= -github.com/hashicorp/go-uuid v1.0.2/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= -github.com/hashicorp/go-uuid v1.0.3 h1:2gKiV6YVmrJ1i2CKKa9obLvRieoRGviZFL26PcT/Co8= -github.com/hashicorp/go-uuid v1.0.3/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= -github.com/hashicorp/go-version v1.2.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= -github.com/hashicorp/go-version v1.6.0 h1:feTTfFNnjP967rlCxM/I9g701jU+RN74YKx2mOkIeek= -github.com/hashicorp/go-version v1.6.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= -github.com/hashicorp/go.net v0.0.1/go.mod h1:hjKkEWcCURg++eb33jQU7oqQcI9XDCnUzHA0oac0k90= +github.com/hashicorp/go-sockaddr v1.0.6 h1:RSG8rKU28VTUTvEKghe5gIhIQpv8evvNpnDEyqO4u9I= +github.com/hashicorp/go-sockaddr v1.0.6/go.mod h1:uoUUmtwU7n9Dv3O4SNLeFvg0SxQ3lyjsj6+CCykpaxI= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= -github.com/hashicorp/golang-lru v0.5.4 h1:YDjusn29QI/Das2iO9M0BHnIbxPeyuCHsjMW+lJfyTc= -github.com/hashicorp/golang-lru v0.5.4/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= github.com/hashicorp/hcl/v2 v2.17.0 h1:z1XvSUyXd1HP10U4lrLg5e0JMVz6CPaJvAgxM0KNZVY= github.com/hashicorp/hcl/v2 v2.17.0/go.mod h1:gJyW2PTShkJqQBKpAmPO3yxMxIuoXkOF2TpqXzrQyx4= -github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64= -github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ= -github.com/hashicorp/mdns v1.0.4/go.mod h1:mtBihi+LeNXGtG8L9dX59gAEa12BDtBQSp4v/YAJqrc= -github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= -github.com/hashicorp/memberlist v0.3.0/go.mod h1:MS2lj3INKhZjWNqd3N0m3J+Jxf3DAOnAH9VT3Sh9MUE= -github.com/hashicorp/memberlist v0.3.1/go.mod h1:MS2lj3INKhZjWNqd3N0m3J+Jxf3DAOnAH9VT3Sh9MUE= -github.com/hashicorp/nomad/api v0.0.0-20220629141207-c2428e1673ec/go.mod h1:jP79oXjopTyH6E8LF0CEMq67STgrlmBRIyijA0tuR5o= -github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= -github.com/hashicorp/serf v0.9.6/go.mod h1:TXZNMjZQijwlDvp+r0b63xZ45H7JmCmgg4gpTwn9UV4= -github.com/hashicorp/vault/api v1.7.2/go.mod h1:xbfA+1AvxFseDzxxdWaL0uO99n1+tndus4GCrtouy0M= -github.com/hashicorp/vault/api v1.8.2 h1:C7OL9YtOtwQbTKI9ogB0A1wffRbCN+rH/LLCHO3d8HM= -github.com/hashicorp/vault/api v1.8.2/go.mod h1:ML8aYzBIhY5m1MD1B2Q0JV89cC85YVH4t5kBaZiyVaE= -github.com/hashicorp/vault/sdk v0.5.1/go.mod h1:DoGraE9kKGNcVgPmTuX357Fm6WAx1Okvde8Vp3dPDoU= -github.com/hashicorp/vault/sdk v0.5.3/go.mod h1:DoGraE9kKGNcVgPmTuX357Fm6WAx1Okvde8Vp3dPDoU= -github.com/hashicorp/vault/sdk v0.6.1 h1:sjZC1z4j5Rh2GXYbkxn5BLK05S1p7+MhW4AgdUmgRUA= -github.com/hashicorp/vault/sdk v0.6.1/go.mod h1:Ck4JuAC6usTphfrrRJCRH+7/N7O2ozZzkm/fzQFt4uM= -github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb/go.mod h1:+NfK9FKeTrX5uv1uIXGdwYDTeHna2qgaIlx54MXqjAM= -github.com/hashicorp/yamux v0.1.1 h1:yrQxtgseBDrq9Y652vSRDvsKCJKOUD+GzTS4Y0Y8pvE= -github.com/hashicorp/yamux v0.1.1/go.mod h1:CtWFDAQgb7dxtzFs4tWbplKIe2jSi3+5vKbgIO0SLnQ= -github.com/hetznercloud/hcloud-go v1.33.1/go.mod h1:XX/TQub3ge0yWR2yHWmnDVIrB+MQbda1pHxkUmDlUME= -github.com/hetznercloud/hcloud-go v1.35.0/go.mod h1:mepQwR6va27S3UQthaEPGS86jtzSY9xWL1e9dyxXpgA= -github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= -github.com/hudl/fargo v1.3.0/go.mod h1:y3CKSmjA+wD2gak7sUSXTAoopbhU08POFhmITJgmKTg= +github.com/hashicorp/vault/api v1.12.0 h1:meCpJSesvzQyao8FCOgk2fGdoADAnbDu2WPJN1lDLJ4= +github.com/hashicorp/vault/api v1.12.0/go.mod h1:si+lJCYO7oGkIoNPAN8j3azBLTn9SjMGS+jFaHd1Cck= github.com/iancoleman/strcase v0.2.0 h1:05I4QRnGpI0m37iZQRuskXh+w77mr6Z41lwQzuHLwW0= github.com/iancoleman/strcase v0.2.0/go.mod h1:iwCmte+B7n89clKwxIoIXy/HfoL7AsD47ZCWhYzw7ho= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= -github.com/ianlancetaylor/demangle v0.0.0-20210905161508-09a460cdf81d/go.mod h1:aYm2/VgdVmcIU8iMfdMvDMsRAQjcfZSKFby6HOFvi/w= -github.com/ianlancetaylor/demangle v0.0.0-20220319035150-800ac71e25c2/go.mod h1:aYm2/VgdVmcIU8iMfdMvDMsRAQjcfZSKFby6HOFvi/w= -github.com/imdario/mergo v0.3.5/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= -github.com/imdario/mergo v0.3.8/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= -github.com/imdario/mergo v0.3.10/go.mod h1:jmQim1M+e3UYxmgPu/WyfjB3N3VflVyUjjjwH0dnCYA= -github.com/imdario/mergo v0.3.11/go.mod h1:jmQim1M+e3UYxmgPu/WyfjB3N3VflVyUjjjwH0dnCYA= -github.com/imdario/mergo v0.3.12/go.mod h1:jmQim1M+e3UYxmgPu/WyfjB3N3VflVyUjjjwH0dnCYA= github.com/imdario/mergo v0.3.13 h1:lFzP57bqS/wsqKssCGmtLAb8A0wKjLGrve2q3PPVcBk= github.com/imdario/mergo v0.3.13/go.mod h1:4lJ1jqUDcsbIECGy0RUJAXNIhg+6ocWgb1ALK2O4oXg= -github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= -github.com/influxdata/influxdb1-client v0.0.0-20191209144304-8bf82d3c094d/go.mod h1:qj24IKcXYK6Iy9ceXlo3Tc+vtHo9lIhSX5JddghvEPo= -github.com/intel/goresctrl v0.2.0/go.mod h1:+CZdzouYFn5EsxgqAQTEzMfwKwuc0fVdMrT9FCCAVRQ= -github.com/ionos-cloud/sdk-go/v6 v6.1.0/go.mod h1:Ox3W0iiEz0GHnfY9e5LmAxwklsxguuNFEUSu0gVRTME= -github.com/j-keck/arping v0.0.0-20160618110441-2cf9dc699c56/go.mod h1:ymszkNOg6tORTn+6F6j+Jc8TOr5osrynvN6ivFWZ2GA= -github.com/j-keck/arping v1.0.2/go.mod h1:aJbELhR92bSk7tp79AWM/ftfc90EfEi2bQJrbBFOsPw= -github.com/jackc/chunkreader v1.0.0/go.mod h1:RT6O25fNZIuasFJRyZ4R/Y2BbhasbmZXF9QQ7T3kePo= -github.com/jackc/chunkreader/v2 v2.0.0/go.mod h1:odVSm741yZoC3dpHEUXIqA9tQRhFrgOHwnPIn9lDKlk= -github.com/jackc/chunkreader/v2 v2.0.1/go.mod h1:odVSm741yZoC3dpHEUXIqA9tQRhFrgOHwnPIn9lDKlk= -github.com/jackc/pgconn v0.0.0-20190420214824-7e0022ef6ba3/go.mod h1:jkELnwuX+w9qN5YIfX0fl88Ehu4XC3keFuOJJk9pcnA= -github.com/jackc/pgconn v0.0.0-20190824142844-760dd75542eb/go.mod h1:lLjNuW/+OfW9/pnVKPazfWOgNfH2aPem8YQ7ilXGvJE= -github.com/jackc/pgconn v0.0.0-20190831204454-2fabfa3c18b7/go.mod h1:ZJKsE/KZfsUgOEh9hBm+xYTstcNHg7UPMVJqRfQxq4s= -github.com/jackc/pgconn v1.8.0/go.mod h1:1C2Pb36bGIP9QHGBYCjnyhqu7Rv3sGshaQUvmfGIB/o= -github.com/jackc/pgconn v1.9.0/go.mod h1:YctiPyvzfU11JFxoXokUOOKQXQmDMoJL9vJzHH8/2JY= -github.com/jackc/pgconn v1.9.1-0.20210724152538-d89c8390a530/go.mod h1:4z2w8XhRbP1hYxkpTuBjTS3ne3J48K83+u0zoyvg2pI= -github.com/jackc/pgconn v1.12.1/go.mod h1:ZkhRC59Llhrq3oSfrikvwQ5NaxYExr6twkdkMLaKono= -github.com/jackc/pgio v1.0.0/go.mod h1:oP+2QK2wFfUWgr+gxjoBH9KGBb31Eio69xUb0w5bYf8= -github.com/jackc/pgmock v0.0.0-20190831213851-13a1b77aafa2/go.mod h1:fGZlG77KXmcq05nJLRkk0+p82V8B8Dw8KN2/V9c/OAE= -github.com/jackc/pgmock v0.0.0-20201204152224-4fe30f7445fd/go.mod h1:hrBW0Enj2AZTNpt/7Y5rr2xe/9Mn757Wtb2xeBzPv2c= -github.com/jackc/pgmock v0.0.0-20210724152146-4ad1a8207f65/go.mod h1:5R2h2EEX+qri8jOWMbJCtaPWkrrNc7OHwsp2TCqp7ak= -github.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg= -github.com/jackc/pgproto3 v1.1.0/go.mod h1:eR5FA3leWg7p9aeAqi37XOTgTIbkABlvcPB3E5rlc78= -github.com/jackc/pgproto3/v2 v2.0.0-alpha1.0.20190420180111-c116219b62db/go.mod h1:bhq50y+xrl9n5mRYyCBFKkpRVTLYJVWeCc+mEAI3yXA= -github.com/jackc/pgproto3/v2 v2.0.0-alpha1.0.20190609003834-432c2951c711/go.mod h1:uH0AWtUmuShn0bcesswc4aBTWGvw0cAxIJp+6OB//Wg= -github.com/jackc/pgproto3/v2 v2.0.0-rc3/go.mod h1:ryONWYqW6dqSg1Lw6vXNMXoBJhpzvWKnT95C46ckYeM= -github.com/jackc/pgproto3/v2 v2.0.0-rc3.0.20190831210041-4c03ce451f29/go.mod h1:ryONWYqW6dqSg1Lw6vXNMXoBJhpzvWKnT95C46ckYeM= -github.com/jackc/pgproto3/v2 v2.0.6/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA= -github.com/jackc/pgproto3/v2 v2.1.1/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA= -github.com/jackc/pgproto3/v2 v2.3.0/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA= -github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b/go.mod h1:vsD4gTJCa9TptPL8sPkXrLZ+hDuNrZCnj29CQpr4X1E= -github.com/jackc/pgtype v0.0.0-20190421001408-4ed0de4755e0/go.mod h1:hdSHsc1V01CGwFsrv11mJRHWJ6aifDLfdV3aVjFF0zg= -github.com/jackc/pgtype v0.0.0-20190824184912-ab885b375b90/go.mod h1:KcahbBH1nCMSo2DXpzsoWOAfFkdEtEJpPbVLq8eE+mc= -github.com/jackc/pgtype v0.0.0-20190828014616-a8802b16cc59/go.mod h1:MWlu30kVJrUS8lot6TQqcg7mtthZ9T0EoIBFiJcmcyw= -github.com/jackc/pgtype v1.8.1-0.20210724151600-32e20a603178/go.mod h1:C516IlIV9NKqfsMCXTdChteoXmwgUceqaLfjg2e3NlM= -github.com/jackc/pgtype v1.11.0/go.mod h1:LUMuVrfsFfdKGLw+AFFVv6KtHOFMwRgDDzBt76IqCA4= -github.com/jackc/pgx/v4 v4.0.0-20190420224344-cc3461e65d96/go.mod h1:mdxmSJJuR08CZQyj1PVQBHy9XOp5p8/SHH6a0psbY9Y= -github.com/jackc/pgx/v4 v4.0.0-20190421002000-1b8f0016e912/go.mod h1:no/Y67Jkk/9WuGR0JG/JseM9irFbnEPbuWV2EELPNuM= -github.com/jackc/pgx/v4 v4.0.0-pre1.0.20190824185557-6972a5742186/go.mod h1:X+GQnOEnf1dqHGpw7JmHqHc1NxDoalibchSk9/RWuDc= -github.com/jackc/pgx/v4 v4.12.1-0.20210724153913-640aa07df17c/go.mod h1:1QD0+tgSXP7iUjYm9C1NxKhny7lq6ee99u/z+IHFcgs= -github.com/jackc/pgx/v4 v4.16.1/go.mod h1:SIhx0D5hoADaiXZVyv+3gSm3LCIIINTVO0PficsvWGQ= -github.com/jackc/puddle v0.0.0-20190413234325-e4ced69a3a2b/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= -github.com/jackc/puddle v0.0.0-20190608224051-11cab39313c9/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= -github.com/jackc/puddle v1.1.3/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= -github.com/jackc/puddle v1.2.1/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 h1:BQSFePA1RWJOlocH6Fxy8MmwDt+yVQYULKfN0RoTN8A= github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i6rXxKeerYnT8Nvf0QmHCRC1n8sfWVwXF2Frvo= -github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= -github.com/jessevdk/go-flags v1.5.0/go.mod h1:Fw0T6WPc1dYxT4mKEZRfG5kJhaTDP9pj1c2EWnYs/m4= -github.com/jhump/protoreflect v1.6.0 h1:h5jfMVslIg6l29nsMs0D8Wj17RDVdNYti0vDN/PZZoE= -github.com/jhump/protoreflect v1.6.0/go.mod h1:eaTn3RZAmMBcV0fifFvlm6VHNz3wSkYyXYWUh7ymB74= -github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= -github.com/jmespath/go-jmespath v0.0.0-20160803190731-bd40a432e4c7/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= -github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= github.com/jmespath/go-jmespath v0.4.0 h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9YPoQUg= github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= github.com/jmespath/go-jmespath/internal/testify v1.5.1 h1:shLQSRRSCCPj3f2gpwzGwWFoC7ycTf1rcQZHOlsJ6N8= github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= -github.com/joefitzgerald/rainbow-reporter v0.1.0/go.mod h1:481CNgqmVHQZzdIbN52CupLJyoVwB10FQ/IQlF1pdL8= -github.com/joho/godotenv v1.3.0/go.mod h1:7hK45KPybAkOC6peb+G5yklZfMxEjkZhHbwpqxOKXbg= -github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= -github.com/jonboulle/clockwork v0.2.2/go.mod h1:Pkfl5aHPm1nk2H9h0bjmnJD/BcgbGXUBGnn1kMkgxc8= -github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= github.com/jpillora/backoff v1.0.0 h1:uvFg412JmmHBHw7iwprIxkPMI+sGQ4kzOWsMeHnm2EA= github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= -github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= -github.com/json-iterator/go v1.1.7/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.8/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.9/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= github.com/jtacoma/uritemplates v1.0.0 h1:xwx5sBF7pPAb0Uj8lDC1Q/aBPpOFyQza7OC705ZlLCo= github.com/jtacoma/uritemplates v1.0.0/go.mod h1:IhIICdE9OcvgUnGwTtJxgBQ+VrTrti5PcbLVSJianO8= -github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= -github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= -github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= -github.com/karrick/godirwalk v1.8.0/go.mod h1:H5KPZjojv4lE+QYImBI8xVtrBRgYrIVsaRPx4tDPEn4= -github.com/karrick/godirwalk v1.10.3/go.mod h1:RoGL9dQei4vP9ilrpETWE8CLOZ1kiN0LhBygSwrAsHA= github.com/kevinburke/ssh_config v1.2.0 h1:x584FjTGwHzMwvHx18PXxbBVzfnxogHaAReU4gf13a4= github.com/kevinburke/ssh_config v1.2.0/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM= -github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/klauspost/compress v1.10.3/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= -github.com/klauspost/compress v1.11.3/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= -github.com/klauspost/compress v1.11.13/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= -github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= -github.com/klauspost/compress v1.15.1/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= -github.com/kolo/xmlrpc v0.0.0-20201022064351-38db28db192b/go.mod h1:pcaDhQK0/NJZEvtCO0qQPPropqV0sJOJ6YW7X+9kRwM= -github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= -github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= -github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= -github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= -github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= -github.com/kr/pty v1.1.5/go.mod h1:9r2w37qlBe7rQ6e1fg1S/9xpWHSnaqNdHD3WcMdbPDA= -github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/kylelemons/godebug v0.0.0-20170820004349-d65d576e9348/go.mod h1:B69LEHPfb2qLo0BaaOLcbitczOKLWTsrBG9LczfCD4k= github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc= github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= -github.com/leodido/go-urn v1.2.0/go.mod h1:+8+nEpDfqqsY+g338gtMEUOtuK+4dEMhiQEgxpxOKII= -github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= -github.com/lib/pq v1.1.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= -github.com/lib/pq v1.2.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= -github.com/lib/pq v1.10.2/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= -github.com/lib/pq v1.10.6/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= -github.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20190605223551-bc2310a04743/go.mod h1:qklhhLq1aX+mtWk9cPHPzaBjWImj5ULL6C7HFJtXQMM= -github.com/lightstep/lightstep-tracer-go v0.18.1/go.mod h1:jlF1pusYV4pidLvZ+XD0UBX0ZE6WURAspgAczcDHrL4= -github.com/linode/linodego v1.4.0/go.mod h1:PVsRxSlOiJyvG4/scTszpmZDTdgS+to3X6eS8pRrWI8= -github.com/linode/linodego v1.8.0/go.mod h1:heqhl91D8QTPVm2k9qZHP78zzbOdTFLXE9NJc3bcc50= -github.com/linuxkit/virtsock v0.0.0-20201010232012-f8cee7dfc7a3/go.mod h1:3r6x7q95whyfWQpmGZTu3gk3v2YkMi05HEzl7Tf7YEo= github.com/lucasb-eyer/go-colorful v1.2.0 h1:1nnpGOrhyZZuNyfu1QjKiUICQ74+3FNCN69Aj6K7nkY= github.com/lucasb-eyer/go-colorful v1.2.0/go.mod h1:R4dSotOR9KMtayYi1e77YzuveK+i7ruzyGqttikkLy0= -github.com/lyft/protoc-gen-star v0.6.0/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= -github.com/lyft/protoc-gen-validate v0.0.13/go.mod h1:XbGvPuh87YZc5TdIa2/I4pLk0QoUACkjt2znoq26NVQ= -github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= -github.com/magiconair/properties v1.8.1/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= -github.com/mailru/easyjson v0.0.0-20160728113105-d5b7844b561a/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/mailru/easyjson v0.7.0/go.mod h1:KAzv3t3aY1NaHWoQz1+4F1ccyAH66Jk7yos7ldAVICs= -github.com/mailru/easyjson v0.7.6/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= -github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= -github.com/markbates/oncer v0.0.0-20181203154359-bf2de49a0be2/go.mod h1:Ld9puTsIW75CHf65OeIOkyKbteujpZVXDpWK6YGZbxE= -github.com/markbates/safe v1.0.1/go.mod h1:nAqgmRi7cY2nqMc92/bSEeQA+R4OheNU2T1kNSCBdG0= -github.com/marstr/guid v1.1.0/go.mod h1:74gB1z2wpxxInTG6yaqA7KrtM0NZ+RbrcqDvYHefzho= -github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= -github.com/mattn/go-colorable v0.1.1/go.mod h1:FuOcm+DKB9mbwrcAfNl7/TZVBZ6rcnceauSikq3lYCQ= github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= -github.com/mattn/go-colorable v0.1.6/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= -github.com/mattn/go-colorable v0.1.8/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= -github.com/mattn/go-colorable v0.1.9/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= -github.com/mattn/go-colorable v0.1.12 h1:jF+Du6AlPIjs2BiUiQlKOX0rt3SujHxPnksPKZbaA40= -github.com/mattn/go-colorable v0.1.12/go.mod h1:u5H1YNBxpqRaxsYJYSkiCWKzEfiAb1Gb520KVy5xxl4= -github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= -github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= -github.com/mattn/go-isatty v0.0.5/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= -github.com/mattn/go-isatty v0.0.7/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= +github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= +github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= -github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= github.com/mattn/go-isatty v0.0.11/go.mod h1:PhnuNfih5lzO57/f3n+odYbM4JtupLOxQOAqxQCu2WE= -github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= -github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA= github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= github.com/mattn/go-localereader v0.0.1 h1:ygSAOl7ZXTx4RdPYinUpg6W99U8jWvWi9Ye2JC/oIi4= github.com/mattn/go-localereader v0.0.1/go.mod h1:8fBrzywKY7BI3czFoHkuzRoWE9C+EiG4R1k4Cjx5p88= -github.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.12/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRCM46jaSJTDAk= github.com/mattn/go-runewidth v0.0.15 h1:UNAjwbU9l54TA3KzvqLGxwWjHmMgBUVhBiTjelZgg3U= github.com/mattn/go-runewidth v0.0.15/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= -github.com/mattn/go-shellwords v1.0.3/go.mod h1:3xCvwCdWdlDJUrvuMn7Wuy9eWs4pE8vqg+NOMyg4B2o= -github.com/mattn/go-shellwords v1.0.6/go.mod h1:3xCvwCdWdlDJUrvuMn7Wuy9eWs4pE8vqg+NOMyg4B2o= -github.com/mattn/go-shellwords v1.0.12/go.mod h1:EZzvwXDESEeg03EKmM+RmDnNOPKG4lLtQsUlTZDWQ8Y= -github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= -github.com/maxbrunsfeld/counterfeiter/v6 v6.2.2/go.mod h1:eD9eIE7cdwcMi9rYluz88Jz2VyhSmden33/aXg4oVIY= -github.com/microsoft/ApplicationInsights-Go v0.4.4/go.mod h1:fKRUseBqkw6bDiXTs3ESTiU/4YTIHsQS4W3fP2ieF4U= -github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= -github.com/miekg/dns v1.1.26/go.mod h1:bPDLeHnStXmXAq1m/Ch/hvfNHr14JKNPMBo3VZKjuso= -github.com/miekg/dns v1.1.41/go.mod h1:p6aan82bvRIyn+zDIv9xYNUpwa73JcSh9BKwknJysuI= -github.com/miekg/dns v1.1.48/go.mod h1:e3IlAVfNqAllflbibAZEWOXOQ+Ynzk/dDozDxY7XnME= -github.com/miekg/dns v1.1.50/go.mod h1:e3IlAVfNqAllflbibAZEWOXOQ+Ynzk/dDozDxY7XnME= -github.com/miekg/pkcs11 v1.0.3/go.mod h1:XsNlhZGX73bx86s2hdc/FuaLm2CPZJemRLMA+WTFxgs= -github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible/go.mod h1:8AuVvqP/mXw1px98n46wfvcGfQ4ci2FwoAjKYxuo3Z4= -github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc= -github.com/mitchellh/cli v1.1.0/go.mod h1:xcISNoH86gajksDmfB23e/pu+B+GeFRMYmoHXxx3xhI= -github.com/mitchellh/copystructure v1.0.0/go.mod h1:SNtv71yrdKgLRyLFxmLdkAbkKEFWgYaq1OVrnRcwhnw= github.com/mitchellh/copystructure v1.2.0 h1:vpKXTN4ewci03Vljg/q9QvCGUDttBOGBIa15WveJJGw= github.com/mitchellh/copystructure v1.2.0/go.mod h1:qLl+cE2AmVv+CoeAwDPye/v+N2HKCj9FbZEVFJRxO9s= -github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/go-ps v1.0.0 h1:i6ampVEEF4wQFF+bkYfwYgY+F/uYJDktmvLPf7qIgjc= github.com/mitchellh/go-ps v1.0.0/go.mod h1:J4lOc8z8yJs6vUwklHw2XEIiT4z4C40KtWVN3nvg8Pg= -github.com/mitchellh/go-testing-interface v0.0.0-20171004221916-a61a99592b77/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= -github.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= -github.com/mitchellh/go-testing-interface v1.14.1 h1:jrgshOhYAUVNMAJiKbEu7EqAwgJJ2JqpQmpLJOu07cU= -github.com/mitchellh/go-testing-interface v1.14.1/go.mod h1:gfgS7OtZj6MA4U1UrDRp04twqAjfvlZyCfX3sDjEym8= -github.com/mitchellh/go-wordwrap v1.0.0/go.mod h1:ZXFpozHsX6DPmq2I0TCekCxypsnAUbP2oI0UX1GXzOo= github.com/mitchellh/go-wordwrap v1.0.1 h1:TLuKupo69TCn6TQSyGxwI1EblZZEsQ0vMlAFQflz0v0= github.com/mitchellh/go-wordwrap v1.0.1/go.mod h1:R62XHJLzvMFRBbcrT7m7WgmE1eOyTSsCt+hzestvNj0= -github.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg= -github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY= -github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= -github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= -github.com/mitchellh/mapstructure v1.3.3/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= -github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= -github.com/mitchellh/mapstructure v1.4.3/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY= github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= -github.com/mitchellh/osext v0.0.0-20151018003038-5e2d6d41470f/go.mod h1:OkQIRizQZAeMln+1tSwduZz7+Af5oFlKirV/MSYes2A= -github.com/mitchellh/reflectwalk v1.0.0/go.mod h1:mSTlrgnPZtwu0c4WaC2kGObEpuNDbx0jmZXqmk4esnw= github.com/mitchellh/reflectwalk v1.0.2 h1:G2LzWKi524PWgd3mLHV8Y5k7s6XUvT0Gef6zxSIeXaQ= github.com/mitchellh/reflectwalk v1.0.2/go.mod h1:mSTlrgnPZtwu0c4WaC2kGObEpuNDbx0jmZXqmk4esnw= -github.com/moby/locker v1.0.1/go.mod h1:S7SDdo5zpBK84bzzVlKr2V0hz+7x9hWbYC/kq7oQppc= -github.com/moby/spdystream v0.2.0/go.mod h1:f7i0iNDQJ059oMTcWxx8MA/zKFIuD/lY+0GqbN2Wy8c= -github.com/moby/sys/mountinfo v0.4.0/go.mod h1:rEr8tzG/lsIZHBtN/JjGG+LMYx9eXgW2JI+6q0qou+A= -github.com/moby/sys/mountinfo v0.4.1/go.mod h1:rEr8tzG/lsIZHBtN/JjGG+LMYx9eXgW2JI+6q0qou+A= -github.com/moby/sys/mountinfo v0.5.0/go.mod h1:3bMD3Rg+zkqx8MRYPi7Pyb0Ie97QEBmdxbhnCLlSvSU= -github.com/moby/sys/signal v0.6.0/go.mod h1:GQ6ObYZfqacOwTtlXvcmh9A26dVRul/hbOZn88Kg8Tg= -github.com/moby/sys/symlink v0.1.0/go.mod h1:GGDODQmbFOjFsXvfLVn3+ZRxkch54RkSiGqsZeMYowQ= -github.com/moby/sys/symlink v0.2.0/go.mod h1:7uZVF2dqJjG/NsClqul95CqKOBRQyYSNnJ6BMgR/gFs= -github.com/moby/term v0.0.0-20200312100748-672ec06f55cd/go.mod h1:DdlQx2hp0Ss5/fLikoLlEeIYiATotOjgB//nb973jeo= -github.com/moby/term v0.0.0-20210610120745-9d4ed1856297/go.mod h1:vgPCkQMyxTZ7IDy8SXRufE172gr8+K/JE/7hHFxHW3A= -github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6/go.mod h1:E2VnQOmVuvZB6UYnnDB0qG5Nq/1tD9acaOpo6xmt0Kw= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= -github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= -github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= -github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5/go.mod h1:caMODM3PzxT8aQXRPkAt8xlV/e7d7w8GM5g0fa5F0D8= -github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe/go.mod h1:wL8QJuTMNUDYhXwkmfOly8iTdp5TEcJFWZD2D7SIkUc= -github.com/montanaflynn/stats v0.6.6/go.mod h1:etXPPgVO6n31NxCd9KQUMvCM+ve0ruNzt6R8Bnaayow= -github.com/morikuni/aec v1.0.0/go.mod h1:BbKIizmSmc5MMPqRYbxO4ZU0S0+P200+tUnFx7PXmsc= -github.com/mrunalp/fileutils v0.5.0/go.mod h1:M1WthSahJixYnrXQl/DFQuteStB1weuxD2QJNHXfbSQ= github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6 h1:ZK8zHtRHOkbHy6Mmr5D264iyp3TiX5OmNcI5cIARiQI= github.com/muesli/ansi v0.0.0-20230316100256-276c6243b2f6/go.mod h1:CJlz5H+gyd6CUWT45Oy4q24RdLyn7Md9Vj2/ldJBSIo= github.com/muesli/cancelreader v0.2.2 h1:3I4Kt4BQjOR54NavqnDogx/MIoWBFa0StPA8ELUXHmA= @@ -1287,302 +418,75 @@ github.com/muesli/reflow v0.3.0 h1:IFsN6K9NfGtjeggFP+68I4chLZV2yIKsXJFNZ+eWh6s= github.com/muesli/reflow v0.3.0/go.mod h1:pbwTDkVPibjO2kyvBQRBxTWEEGDGq0FlB1BIKtnHY/8= github.com/muesli/termenv v0.15.2 h1:GohcuySI0QmI3wN8Ok9PtKGkgkFIk7y6Vpb5PvrY+Wo= github.com/muesli/termenv v0.15.2/go.mod h1:Epx+iuz8sNs7mNKhxzH4fWXGNpZwUaJKRS1noLXviQ8= -github.com/munnerz/goautoneg v0.0.0-20120707110453-a547fc61f48d/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= -github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= -github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= -github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= -github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw= github.com/natefinch/atomic v1.0.1 h1:ZPYKxkqQOx3KZ+RsbnP/YsgvxWQPGxjC0oBt2AhwV0A= github.com/natefinch/atomic v1.0.1/go.mod h1:N/D/ELrljoqDyT3rZrsUmtsuzvHkeB/wWjHV22AZRbM= -github.com/nats-io/jwt v0.3.0/go.mod h1:fRYCDE99xlTsqUzISS1Bi75UBJ6ljOJQOAAu5VglpSg= -github.com/nats-io/jwt v0.3.2/go.mod h1:/euKqTS1ZD+zzjYrY7pseZrTtWQSjujC7xjPc8wL6eU= -github.com/nats-io/nats-server/v2 v2.1.2/go.mod h1:Afk+wRZqkMQs/p45uXdrVLuab3gwv3Z8C4HTBu8GD/k= -github.com/nats-io/nats.go v1.9.1/go.mod h1:ZjDU1L/7fJ09jvUSRVBR2e7+RnLiiIQyqyzEE/Zbp4w= -github.com/nats-io/nkeys v0.1.0/go.mod h1:xpnFELMwJABBLVhffcfd1MZx6VsNRFpEugbxziKVo7w= -github.com/nats-io/nkeys v0.1.3/go.mod h1:xpnFELMwJABBLVhffcfd1MZx6VsNRFpEugbxziKVo7w= -github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= -github.com/ncw/swift v1.0.47/go.mod h1:23YIA4yWVnGwv2dQlN4bB7egfYX6YLn0Yo/S6zZO/ZM= -github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= -github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= -github.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU= -github.com/oklog/oklog v0.3.2/go.mod h1:FCV+B7mhrz4o+ueLpx+KqkyXRGMWOYEvfiXtdGtbWGs= -github.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQA= -github.com/oklog/run v1.1.0 h1:GEenZ1cK0+q0+wsJew9qUg/DyD8k3JzYsZAi5gYi2mA= -github.com/oklog/run v1.1.0/go.mod h1:sVPdnTZT1zYwAJeCMu2Th4T21pA3FPOQRfWjQlk7DVU= -github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= -github.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= -github.com/onsi/ginkgo v0.0.0-20151202141238-7f8ab55aaf3b/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v0.0.0-20170829012221-11459a886d9c/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.8.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.10.1/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.10.3/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.11.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.12.0/go.mod h1:oUhWkIvk5aDxtKvDDuw8gItl8pKl42LzjC9KZE0HfGg= -github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk= -github.com/onsi/ginkgo v1.13.0/go.mod h1:+REjRxOmWfHCjfv9TTWB1jD1Frx4XydAD3zm1lskyM0= -github.com/onsi/ginkgo v1.14.0/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY= -github.com/onsi/ginkgo v1.16.4/go.mod h1:dX+/inL/fNMqNlz0e9LfyB9TswhZpCVdJM/Z6Vvnwo0= -github.com/onsi/gomega v0.0.0-20151007035656-2152b45fa28a/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= -github.com/onsi/gomega v0.0.0-20170829124025-dcabb60a477c/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= -github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= -github.com/onsi/gomega v1.5.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= -github.com/onsi/gomega v1.7.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= -github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY= -github.com/onsi/gomega v1.9.0/go.mod h1:Ho0h+IUsWyvy1OpqCwxlQ/21gkhVunqlU8fDGcoTdcA= -github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo= -github.com/onsi/gomega v1.10.3/go.mod h1:V9xEwhxec5O8UDM77eCW8vLymOMltsqPVYWrpDsH8xc= -github.com/onsi/gomega v1.15.0/go.mod h1:cIuvLEne0aoVhAgh/O6ac0Op8WWw9H6eYCriF+tEHG0= github.com/onsi/gomega v1.27.10 h1:naR28SdDFlqrG6kScpT8VWpu1xWY5nJRCF3XaYyBjhI= github.com/onsi/gomega v1.27.10/go.mod h1:RsS8tutOdbdgzbPtzzATp12yT7kM5I5aElG3evPbQ0M= -github.com/op/go-logging v0.0.0-20160315200505-970db520ece7/go.mod h1:HzydrMdWErDVzsI23lYNej1Htcns9BCg93Dk0bBINWk= -github.com/opencontainers/go-digest v0.0.0-20170106003457-a6d0ee40d420/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s= -github.com/opencontainers/go-digest v0.0.0-20180430190053-c9281466c8b2/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s= -github.com/opencontainers/go-digest v1.0.0-rc1/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s= -github.com/opencontainers/go-digest v1.0.0-rc1.0.20180430190053-c9281466c8b2/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s= -github.com/opencontainers/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM= -github.com/opencontainers/image-spec v1.0.0/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0= -github.com/opencontainers/image-spec v1.0.1/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0= -github.com/opencontainers/image-spec v1.0.2-0.20211117181255-693428a734f5/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0= -github.com/opencontainers/image-spec v1.0.2/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0= -github.com/opencontainers/runc v0.0.0-20190115041553-12f6a991201f/go.mod h1:qT5XzbpPznkRYVz/mWwUaVBUv2rmF59PVA73FjuZG0U= -github.com/opencontainers/runc v0.1.1/go.mod h1:qT5XzbpPznkRYVz/mWwUaVBUv2rmF59PVA73FjuZG0U= -github.com/opencontainers/runc v1.0.0-rc8.0.20190926000215-3e425f80a8c9/go.mod h1:qT5XzbpPznkRYVz/mWwUaVBUv2rmF59PVA73FjuZG0U= -github.com/opencontainers/runc v1.0.0-rc9/go.mod h1:qT5XzbpPznkRYVz/mWwUaVBUv2rmF59PVA73FjuZG0U= -github.com/opencontainers/runc v1.0.0-rc93/go.mod h1:3NOsor4w32B2tC0Zbl8Knk4Wg84SM2ImC1fxBuqJ/H0= -github.com/opencontainers/runc v1.0.2/go.mod h1:aTaHFFwQXuA71CiyxOdFFIorAoemI04suvGRQFzWTD0= -github.com/opencontainers/runc v1.1.0/go.mod h1:Tj1hFw6eFWp/o33uxGf5yF2BX5yz2Z6iptFpuvbbKqc= -github.com/opencontainers/runtime-spec v0.1.2-0.20190507144316-5b71a03e2700/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= -github.com/opencontainers/runtime-spec v1.0.1/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= -github.com/opencontainers/runtime-spec v1.0.2-0.20190207185410-29686dbc5559/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= -github.com/opencontainers/runtime-spec v1.0.2/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= -github.com/opencontainers/runtime-spec v1.0.3-0.20200929063507-e6143ca7d51d/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= -github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= -github.com/opencontainers/runtime-tools v0.0.0-20181011054405-1d69bd0f9c39/go.mod h1:r3f7wjNzSs2extwzU3Y+6pKfobzPh+kKFJ3ofN+3nfs= -github.com/opencontainers/selinux v1.6.0/go.mod h1:VVGKuOLlE7v4PJyT6h7mNWvq1rzqiriPsEqVhc+svHE= -github.com/opencontainers/selinux v1.8.0/go.mod h1:RScLhm78qiWa2gbVCcGkC7tCGdgk3ogry1nUQF8Evvo= -github.com/opencontainers/selinux v1.8.2/go.mod h1:MUIHuUEvKB1wtJjQdOyYRgOnLD2xAPP8dBsCoU0KuF8= -github.com/opencontainers/selinux v1.10.0/go.mod h1:2i0OySw99QjzBBQByd1Gr9gSjvuho1lHsJxIJ3gGbJI= -github.com/opentracing-contrib/go-observer v0.0.0-20170622124052-a52f23424492/go.mod h1:Ngi6UdF0k5OKD5t5wlmGhe/EDKPoUM3BXZSSfIuJbis= -github.com/opentracing/basictracer-go v1.0.0/go.mod h1:QfBfYuafItcjQuMwinw9GhYKwFXS9KnPs5lxoYwgW74= github.com/opentracing/basictracer-go v1.1.0 h1:Oa1fTSBvAl8pa3U+IJYqrKm0NALwH9OsgwOqDv4xJW0= github.com/opentracing/basictracer-go v1.1.0/go.mod h1:V2HZueSJEp879yv285Aap1BS69fQMD+MNP1mRs6mBQc= -github.com/opentracing/opentracing-go v1.0.2/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= github.com/opentracing/opentracing-go v1.2.0 h1:uEJPy/1a5RIPAJ0Ov+OIO8OxWu77jEv+1B0VhjKrZUs= github.com/opentracing/opentracing-go v1.2.0/go.mod h1:GxEUsuufX4nBwe+T+Wl9TAgYrxe9dPLANfrWvHYVTgc= -github.com/openzipkin-contrib/zipkin-go-opentracing v0.4.5/go.mod h1:/wsWhb9smxSfWAKL3wpBW7V8scJMt8N8gnaMCS9E/cA= -github.com/openzipkin/zipkin-go v0.1.6/go.mod h1:QgAqvLzwWbR/WpD4A3cGpPtJrZXNIiJc5AZX7/PBEpw= -github.com/openzipkin/zipkin-go v0.2.1/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnhQw8ySjnjRyN4= -github.com/openzipkin/zipkin-go v0.2.2/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnhQw8ySjnjRyN4= -github.com/pact-foundation/pact-go v1.0.4/go.mod h1:uExwJY4kCzNPcHRj+hCR/HBbOOIwwtUjcrb0b5/5kLM= -github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= -github.com/pascaldekloe/goe v0.1.0 h1:cBOtyMzM9HTpWjXfbbunk26uA6nG3a8n06Wieeh0MwY= -github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= -github.com/pborman/uuid v1.2.0/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtPdI/k= -github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= -github.com/pelletier/go-toml v1.7.0/go.mod h1:vwGMzjaWMwyfHwgIBhI2YUM4fB6nL6lVAvS1LBMMhTE= -github.com/pelletier/go-toml v1.8.1/go.mod h1:T2/BmBdy8dvIRq1a/8aqjN41wvWlN4lrapLU/GW4pbc= -github.com/pelletier/go-toml v1.9.3/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= -github.com/performancecopilot/speed v3.0.0+incompatible/go.mod h1:/CLtqpZ5gBg1M9iaPbIdPPGyKcA8hKdoy6hAWba7Yac= -github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU= github.com/pgavlin/fx v0.1.6 h1:r9jEg69DhNoCd3Xh0+5mIbdbS3PqWrVWujkY76MFRTU= github.com/pgavlin/fx v0.1.6/go.mod h1:KWZJ6fqBBSh8GxHYqwYCf3rYE7Gp2p0N8tJp8xv9u9M= github.com/pgavlin/goldmark v1.1.33-0.20200616210433-b5eb04559386 h1:LoCV5cscNVWyK5ChN/uCoIFJz8jZD63VQiGJIRgr6uo= github.com/pgavlin/goldmark v1.1.33-0.20200616210433-b5eb04559386/go.mod h1:MRxHTJrf9FhdfNQ8Hdeh9gmHevC9RJE/fu8M3JIGjoE= -github.com/pierrec/lz4 v1.0.2-0.20190131084431-473cd7ce01a1/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= -github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= -github.com/pierrec/lz4 v2.5.2+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= -github.com/pierrec/lz4 v2.6.1+incompatible h1:9UY3+iC23yxF0UfGaYrGplQ+79Rg+h/q9FV9ix19jjM= -github.com/pierrec/lz4 v2.6.1+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= github.com/pjbgf/sha1cd v0.3.0 h1:4D5XXmUUBUl/xQ6IjCkEAbqXskkq/4O7LmGn0AqMDs4= github.com/pjbgf/sha1cd v0.3.0/go.mod h1:nZ1rrWOcGJ5uZgEEVL1VUM9iRQiZvWdbZjkKyFzPPsI= -github.com/pkg/browser v0.0.0-20180916011732-0a3d74bf9ce4/go.mod h1:4OwLy04Bl9Ef3GJJCoec+30X3LQs/0/m4HFRt/2LUSA= -github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4 h1:Qj1ukM4GlMWXNdMBuXcXfz/Kw9s1qm0CLY32QxuSImI= -github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4/go.mod h1:N6UoU20jOqggOuDwUaBQpluzLNDqif3kq9z2wpdYEfQ= -github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/errors v0.8.1-0.20171018195549-f15c970de5b7/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c h1:+mdjkGKdHQG3305AYmdv1U2eRNDiU2ErMBj1gwrq8eQ= +github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c/go.mod h1:7rwL4CYBLnjLxUqIJNnCWiEdr3bn6IUYi15bNlnbCCU= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= -github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= github.com/pkg/sftp v1.13.1/go.mod h1:3HaPG6Dq1ILlpPZRO0HVMrsydcdLt6HRDccSgb87qRg= github.com/pkg/term v1.1.0 h1:xIAAdCMh3QIAy+5FrE8Ad8XoDhEU4ufwbaSozViP9kk= github.com/pkg/term v1.1.0/go.mod h1:E25nymQcrSllhX42Ok8MRm1+hyBdHY0dCeiKZ9jpNGw= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= -github.com/posener/complete v1.2.3/go.mod h1:WZIdtGGp+qx0sLrYKtIRAruyNpv6hFCicSgv7Sy7s/s= -github.com/pquerna/cachecontrol v0.0.0-20171018203845-0dec1b30a021/go.mod h1:prYjPmNq4d1NPVmpShWobRqXY3q7Vp+80DqgxxUrUIA= -github.com/prashantv/gostub v1.1.0/go.mod h1:A5zLQHz7ieHGG7is6LLXLz7I8+3LZzsrV0P1IAHhP5U= -github.com/prometheus/alertmanager v0.24.0/go.mod h1:r6fy/D7FRuZh5YbnX6J3MBY0eI4Pb5yPYS7/bPSXXqI= -github.com/prometheus/client_golang v0.0.0-20180209125602-c332b6f63c06/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= -github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= -github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829/go.mod h1:p2iRAGwDERtqlqzRXnrOVns+ignqQo//hLXqYxZYVNs= -github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso= -github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= -github.com/prometheus/client_golang v1.1.0/go.mod h1:I1FGZT9+L76gKKOs5djB6ezCbFQP1xR9D75/vuwEF3g= -github.com/prometheus/client_golang v1.3.0/go.mod h1:hJaj2vgQTGQmVCsAACORcieXFeDPbaTKGT+JTgUa3og= -github.com/prometheus/client_golang v1.4.0/go.mod h1:e9GMxYsXl05ICDXkRhurwBS4Q3OK1iX/F2sw+iXX5zU= -github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= -github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= -github.com/prometheus/client_golang v1.12.1/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY= -github.com/prometheus/client_golang v1.12.2/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY= -github.com/prometheus/client_model v0.0.0-20171117100541-99fa1f4be8e5/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.1.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/common v0.0.0-20180110214958-89604d197083/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/common v0.2.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/common v0.6.0/go.mod h1:eBmuwkDJBwy6iBfxCBob6t6dR6ENT/y+J+Zk0j9GMYc= -github.com/prometheus/common v0.7.0/go.mod h1:DjGbpBbp5NYNiECxcL/VnbXCCaQpKd3tt26CguLLsqA= -github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4= -github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= -github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= -github.com/prometheus/common v0.29.0/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= -github.com/prometheus/common v0.30.0/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= -github.com/prometheus/common v0.32.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= -github.com/prometheus/common v0.34.0/go.mod h1:gB3sOl7P0TvJabZpLY5uQMpUqRCPPCyRLCZYc7JZTNE= -github.com/prometheus/common v0.37.0/go.mod h1:phzohg0JFMnBEFGxTDbfu3QyL5GI8gTQJFhYO5B3mfA= -github.com/prometheus/common/assets v0.1.0/go.mod h1:D17UVUE12bHbim7HzwUvtqm6gwBEaDQ0F+hIGbFbccI= -github.com/prometheus/common/assets v0.2.0/go.mod h1:D17UVUE12bHbim7HzwUvtqm6gwBEaDQ0F+hIGbFbccI= -github.com/prometheus/common/sigv4 v0.1.0/go.mod h1:2Jkxxk9yYvCkE5G1sQT7GuEXm57JrvHu9k5YwTjsNtI= -github.com/prometheus/exporter-toolkit v0.7.1/go.mod h1:ZUBIj498ePooX9t/2xtDjeQYwvRpiPP2lh5u4iblj2g= -github.com/prometheus/procfs v0.0.0-20180125133057-cb4147076ac7/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/prometheus/procfs v0.0.0-20190522114515-bc1a522cf7b1/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/prometheus/procfs v0.0.3/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDaekg4FpcdQ= -github.com/prometheus/procfs v0.0.5/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDaekg4FpcdQ= -github.com/prometheus/procfs v0.0.8/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A= -github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= -github.com/prometheus/procfs v0.2.0/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= -github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/prometheus/prometheus v0.35.0/go.mod h1:7HaLx5kEPKJ0GDgbODG0fZgXbQ8K/XjZNJXQmbmgQlY= -github.com/prometheus/prometheus v0.37.0/go.mod h1:egARUgz+K93zwqsVIAneFlLZefyGOON44WyAp4Xqbbk= -github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/pulumi/appdash v0.0.0-20231130102222-75f619a67231 h1:vkHw5I/plNdTr435cARxCW6q9gc0S/Yxz7Mkd38pOb0= github.com/pulumi/appdash v0.0.0-20231130102222-75f619a67231/go.mod h1:murToZ2N9hNJzewjHBgfFdXhZKjY3z5cYC1VXk+lbFE= -github.com/pulumi/esc v0.6.2 h1:+z+l8cuwIauLSwXQS0uoI3rqB+YG4SzsZYtHfNoXBvw= -github.com/pulumi/esc v0.6.2/go.mod h1:jNnYNjzsOgVTjCp0LL24NsCk8ZJxq4IoLQdCT0X7l8k= -github.com/pulumi/pulumi/pkg/v3 v3.100.0 h1:V8FATUaSraolvAolg0l5F/avLZt7Ubzykv9qeMkbI+4= -github.com/pulumi/pulumi/pkg/v3 v3.100.0/go.mod h1:ruihRCkohSpXrY6CU9dbpVe68OqdTPQkMWcJyLJyskw= -github.com/pulumi/pulumi/sdk/v3 v3.100.0 h1:2XY5+mNxn/cpVEVx06N+gO7Ub9wDoOP0WxLvune4DJo= -github.com/pulumi/pulumi/sdk/v3 v3.100.0/go.mod h1:SB8P0BEGBRaONBxwoTjUFhGPLU5P3+MHF6/tGitlHOM= -github.com/rakyll/embedmd v0.0.0-20171029212350-c8060a0752a2/go.mod h1:7jOTMgqac46PZcF54q6l2hkLEG8op93fZu61KmxWDV4= -github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= +github.com/pulumi/esc v0.9.1 h1:HH5eEv8sgyxSpY5a8yePyqFXzA8cvBvapfH8457+mIs= +github.com/pulumi/esc v0.9.1/go.mod h1:oEJ6bOsjYlQUpjf70GiX+CXn3VBmpwFDxUTlmtUN84c= +github.com/pulumi/inflector v0.1.1 h1:dvlxlWtXwOJTUUtcYDvwnl6Mpg33prhK+7mzeF+SobA= +github.com/pulumi/inflector v0.1.1/go.mod h1:HUFCjcPTz96YtTuUlwG3i3EZG4WlniBvR9bd+iJxCUY= +github.com/pulumi/pulumi/pkg/v3 v3.121.0 h1:cLUQJYGJKfgCY0ubJo8dVwmsIm2WcgTprb9Orc/yiFg= +github.com/pulumi/pulumi/pkg/v3 v3.121.0/go.mod h1:aaRixfKOh4DhGtuDJcI56dTPkb7oJBgRgH1aMF1FzbU= +github.com/pulumi/pulumi/sdk/v3 v3.121.0 h1:UsnFKIVOtJN/hQKPkWHL9cZktewPVQRbNUXbXQY/qrk= +github.com/pulumi/pulumi/sdk/v3 v3.121.0/go.mod h1:p1U24en3zt51agx+WlNboSOV8eLlPWYAkxMzVEXKbnY= github.com/rivo/uniseg v0.1.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= github.com/rivo/uniseg v0.4.4 h1:8TfxU8dW6PdqD27gjM8MVNuicgxIjxpm4K7x4jp8sis= github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= -github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= -github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= -github.com/rogpeppe/go-internal v1.1.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/rogpeppe/go-internal v1.2.2/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= -github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M= -github.com/rogpeppe/go-internal v1.11.0/go.mod h1:ddIwULY96R17DhadqLgMfk9H9tvdUzkipdSkR5nkCZA= -github.com/rs/cors v1.8.2/go.mod h1:XyqrcTp5zjWr1wsJ8PIRZssZ8b/WMcMf71DJnit4EMU= -github.com/rs/xid v1.2.1/go.mod h1:+uKXf+4Djp6Md1KODXJxgGQPKngRmWyn10oCKFzNHOQ= -github.com/rs/zerolog v1.13.0/go.mod h1:YbFCdg8HfsridGWAh22vktObvhZbQsZXe4/zB0OKkWU= -github.com/rs/zerolog v1.15.0/go.mod h1:xYTKnLHcpfU2225ny5qZjxnj9NvkumZYjJHlAThCjNc= -github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= +github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU5NdKM8= +github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= -github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= -github.com/ryanuber/columnize v2.1.0+incompatible/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= github.com/ryanuber/go-glob v1.0.0 h1:iQh3xXAumdQ+4Ufa5b25cRpC5TYKlno6hsv6Cb3pkBk= github.com/ryanuber/go-glob v1.0.0/go.mod h1:807d1WSdnB0XRJzKNil9Om6lcp/3a0v4qIHxIXzX/Yc= github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 h1:OkMGxebDjyw0ULyrTYWeN0UNCCkmCWfjPnIA2W6oviI= github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06/go.mod h1:+ePHsJ1keEjQtpvf9HHw0f4ZeJ0TLRsxhunSI2hYJSs= -github.com/safchain/ethtool v0.0.0-20190326074333-42ed695e3de8/go.mod h1:Z0q5wiBQGYcxhMZ6gUqHn6pYNLypFAvaL3UvgZLR0U4= -github.com/safchain/ethtool v0.0.0-20210803160452-9aa261dae9b1/go.mod h1:Z0q5wiBQGYcxhMZ6gUqHn6pYNLypFAvaL3UvgZLR0U4= -github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da/go.mod h1:gi+0XIa01GRL2eRQVjQkKGqKF3SF9vZR/HnPullcV2E= github.com/santhosh-tekuri/jsonschema/v5 v5.0.0 h1:TToq11gyfNlrMFZiYujSekIsPd9AmsA2Bj/iv+s4JHE= github.com/santhosh-tekuri/jsonschema/v5 v5.0.0/go.mod h1:FKdcjfQW6rpZSnxxUvEA5H/cDPdvJ/SZJQLWWXWGrZ0= -github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0= -github.com/scaleway/scaleway-sdk-go v1.0.0-beta.9/go.mod h1:fCa7OJZ/9DRTnOKmxvT6pn+LPWUptQAmHF/SBJUGEcg= -github.com/sclevine/agouti v3.0.0+incompatible/go.mod h1:b4WX9W9L1sfQKXeJf1mUTLZKJ48R1S7H23Ji7oFO5Bw= -github.com/sclevine/spec v1.2.0/go.mod h1:W4J29eT/Kzv7/b9IWLB055Z+qvVC9vt0Arko24q7p+U= -github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= -github.com/seccomp/libseccomp-golang v0.9.1/go.mod h1:GbW5+tmTXfcxTToHLXlScSlAvWlF4P2Ca7zGrPiEpWo= -github.com/seccomp/libseccomp-golang v0.9.2-0.20210429002308-3879420cc921/go.mod h1:JA8cRccbGaA1s33RQf7Y1+q9gHmZX1yB/z9WDN1C6fg= github.com/segmentio/asm v1.1.3 h1:WM03sfUOENvvKexOLp+pCqgb/WDjsi7EK8gIsICtzhc= github.com/segmentio/asm v1.1.3/go.mod h1:Ld3L4ZXGNcSLRg4JBsZ3//1+f/TjYl0Mzen/DQy1EJg= github.com/segmentio/encoding v0.3.5 h1:UZEiaZ55nlXGDL92scoVuw00RmiRCazIEmvPSbSvt8Y= github.com/segmentio/encoding v0.3.5/go.mod h1:n0JeuIqEQrQoPDGsjo8UNd1iA0U8d8+oHAA4E3G3OxM= -github.com/sergi/go-diff v1.3.1 h1:xkr+Oxo4BOQKmkn/B9eMK0g5Kg/983T9DqqPHwYqD+8= -github.com/sergi/go-diff v1.3.1/go.mod h1:aMJSSKb2lpPvRNec0+w3fl7LP9IOFzdc9Pa4NFbPK1I= -github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24/go.mod h1:M+9NzErvs504Cn4c5DxATwIqPbtswREoFCre64PpcG4= -github.com/shopspring/decimal v1.2.0/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= -github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749/go.mod h1:ZY1cvUeJuFPAdZ/B6v7RHavJWZn2YPVFQ1OSXhCGOkg= -github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= -github.com/shurcooL/vfsgen v0.0.0-20200824052919-0d455de96546/go.mod h1:TrYk7fJVaAttu97ZZKrO9UbRa8izdowaMIZcxYMbVaw= -github.com/sirupsen/logrus v1.0.4-0.20170822132746-89742aefa4b2/go.mod h1:pMByvHTf9Beacp5x1UXfOR9xyW/9antXMhjMPG0dEzc= -github.com/sirupsen/logrus v1.0.6/go.mod h1:pMByvHTf9Beacp5x1UXfOR9xyW/9antXMhjMPG0dEzc= -github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= -github.com/sirupsen/logrus v1.4.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= -github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= -github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= -github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= +github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 h1:n661drycOFuPLCN3Uc8sB6B/s6Z4t2xvBgU1htSHuq8= +github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3/go.mod h1:A0bzQcvG0E7Rwjx0REVgAGH58e96+X0MeOfepqsbeW4= github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= -github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= -github.com/skeema/knownhosts v1.2.1 h1:SHWdIUa82uGZz+F+47k8SY4QhhI291cXCpopT1lK2AQ= -github.com/skeema/knownhosts v1.2.1/go.mod h1:xYbVRSPxqBZFrdmDyMmsOs+uX1UZC3nTN3ThzgDxUwo= -github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= -github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= -github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= -github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= -github.com/soheilhy/cmux v0.1.5/go.mod h1:T7TcVDs9LWfQgPlPsdngu6I6QIoyIFZDDC6sNE1GqG0= -github.com/sony/gobreaker v0.4.1/go.mod h1:ZKptC7FHNvhBz7dN2LGjPVBz2sZJmc0/PkyDJOjmxWY= -github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= -github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= -github.com/spf13/afero v1.2.2/go.mod h1:9ZxEEn6pIJ8Rxe320qSDBk6AsU0r9pR7Q4OcevTdifk= -github.com/spf13/afero v1.3.3/go.mod h1:5KUK8ByomD5Ti5Artl0RtHeI5pTF7MIDuXL3yY520V4= -github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= +github.com/skeema/knownhosts v1.2.2 h1:Iug2P4fLmDw9f41PB6thxUkNUkJzB5i+1/exaj40L3A= +github.com/skeema/knownhosts v1.2.2/go.mod h1:xYbVRSPxqBZFrdmDyMmsOs+uX1UZC3nTN3ThzgDxUwo= github.com/spf13/afero v1.9.5 h1:stMpOSZFs//0Lv29HduCmli3GUfpFoF3Y1Q/aXj/wVM= github.com/spf13/afero v1.9.5/go.mod h1:UBogFpq8E9Hx+xc5CNTTEpTnuHVmXDwZcZcE1eb/UhQ= -github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= -github.com/spf13/cast v1.3.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= -github.com/spf13/cobra v0.0.2-0.20171109065643-2da4a54c5cee/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= -github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= -github.com/spf13/cobra v1.0.0/go.mod h1:/6GTrnGXV9HjY+aR4k0oJ5tcvakLuG6EuKReYlHNrgE= -github.com/spf13/cobra v1.1.3/go.mod h1:pGADOWyqRD/YMrPZigI/zbliZ2wVD/23d+is3pSWzOo= -github.com/spf13/cobra v1.7.0 h1:hyqWnYt1ZQShIddO5kBpj3vu05/++x6tJ6dg8EC572I= -github.com/spf13/cobra v1.7.0/go.mod h1:uLxZILRyS/50WlhOIKD7W6V5bgeIt+4sICxh6uRMrb0= -github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= -github.com/spf13/pflag v0.0.0-20170130214245-9ff6c6923cff/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= -github.com/spf13/pflag v1.0.1-0.20171106142849-4c012f6dcd95/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= -github.com/spf13/pflag v1.0.1/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= -github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= +github.com/spf13/cobra v1.8.0 h1:7aJaZx1B85qltLMc546zn58BxxfZdR/W22ej9CFoEf0= +github.com/spf13/cobra v1.8.0/go.mod h1:WXLWApfZ71AjXPya3WOlMsY9yMs7YeiHhFVlvLyhcho= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= -github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE= -github.com/spf13/viper v1.7.0/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg= -github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980/go.mod h1:AO3tvPzVZ/ayst6UlUKUv6rcPQInYe3IknH3jYhAKu8= -github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8= -github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= -github.com/streadway/amqp v0.0.0-20190827072141-edfb9018d271/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= -github.com/streadway/handy v0.0.0-20190108123426-d5acb3125c2a/go.mod h1:qNTQ5P5JnDBl6z3cMAg/SywNDC5ABu5ApDIw6lUbRmI= -github.com/stretchr/objx v0.0.0-20180129172003-8a3f7159479f/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= -github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= -github.com/stretchr/testify v0.0.0-20180303142811-b89eecf5ca5d/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= +github.com/stretchr/objx v0.5.2 h1:xuMeJ0Sdp5ZMRXx/aWO6RZxdr3beISkG5/G/aIRr3pY= +github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/8L+MA= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= @@ -1590,217 +494,75 @@ github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5 github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.7.2/go.mod h1:R6va5+xMeoiuVRoj+gSkQ7d3FALtqAAGI1FQKckRals= -github.com/stretchr/testify v1.7.5/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= -github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= -github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= -github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw= -github.com/syndtr/gocapability v0.0.0-20170704070218-db04d3cc01c8/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww= -github.com/syndtr/gocapability v0.0.0-20180916011248-d98352740cb2/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww= -github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww= -github.com/tchap/go-patricia v2.2.6+incompatible/go.mod h1:bmLyhP68RS6kStMGxByiQ23RP/odRBOTVjwp2cDyi6I= -github.com/tedsuo/ifrit v0.0.0-20180802180643-bea94bb476cc/go.mod h1:eyZnKCc955uh98WQvzOm0dgAeLnf2O0Rz0LPoC5ze+0= +github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= +github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/texttheater/golang-levenshtein v1.0.1 h1:+cRNoVrfiwufQPhoMzB6N0Yf/Mqajr6t1lOv8GyGE2U= github.com/texttheater/golang-levenshtein v1.0.1/go.mod h1:PYAKrbF5sAiq9wd+H82hs7gNaen0CplQ9uvm6+enD/8= -github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk= -github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= -github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= -github.com/tmc/grpc-websocket-proxy v0.0.0-20201229170055-e5319fda7802/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= -github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM= -github.com/tv42/httpunix v0.0.0-20191220191345-2ba4b9c3382c/go.mod h1:hzIxponao9Kjc7aWznkXaL4U4TWaDSs8zcsY4Ka08nM= github.com/tweekmonster/luser v0.0.0-20161003172636-3fa38070dbd7 h1:X9dsIWPuuEJlPX//UmRKophhOKCGXc46RVIGuttks68= github.com/tweekmonster/luser v0.0.0-20161003172636-3fa38070dbd7/go.mod h1:UxoP3EypF8JfGEjAII8jx1q8rQyDnX8qdTCs/UQBVIE= github.com/uber/jaeger-client-go v2.30.0+incompatible h1:D6wyKGCecFaSRUpo8lCVbaOOb6ThwMmTEbhRwtKR97o= github.com/uber/jaeger-client-go v2.30.0+incompatible/go.mod h1:WVhlPFC8FDjOFMMWRy2pZqQJSXxYSwNYOkTr/Z6d3Kk= github.com/uber/jaeger-lib v2.4.1+incompatible h1:td4jdvLcExb4cBISKIpHuGoVXh+dVKhn2Um6rjCsSsg= github.com/uber/jaeger-lib v2.4.1+incompatible/go.mod h1:ComeNDZlWwrWnDv8aPp0Ba6+uUTzImX/AauajbLI56U= -github.com/ugorji/go v1.1.4/go.mod h1:uQMGLiO92mf5W77hV/PUCpI3pbzQx3CRekS0kk+RGrc= -github.com/ugorji/go v1.1.7/go.mod h1:kZn38zHttfInRq0xu/PH0az30d+z6vm202qpg1oXVMw= -github.com/ugorji/go/codec v1.1.7/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLYF3GoBXY= -github.com/urfave/cli v0.0.0-20171014202726-7bc6a0acffa5/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= -github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= -github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= -github.com/urfave/cli v1.22.2/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= -github.com/vishvananda/netlink v0.0.0-20181108222139-023a6dafdcdf/go.mod h1:+SR5DhBJrl6ZM7CoCKvpw5BKroDKQ+PJqOg65H/2ktk= -github.com/vishvananda/netlink v1.1.0/go.mod h1:cTgwzPIzzgDAYoQrMm0EdrjRUBkTqKYppBueQtXaqoE= -github.com/vishvananda/netlink v1.1.1-0.20201029203352-d40f9887b852/go.mod h1:twkDnbuQxJYemMlGd4JFIcuhgX83tXhKS2B/PRMpOho= -github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5/go.mod h1:twkDnbuQxJYemMlGd4JFIcuhgX83tXhKS2B/PRMpOho= -github.com/vishvananda/netns v0.0.0-20180720170159-13995c7128cc/go.mod h1:ZjcWmFBXmLKZu9Nxj3WKYEafiSqer2rnvPr0en9UNpI= -github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df/go.mod h1:JP3t17pCcGlemwknint6hfoeCVQrEMVwxRLRjXpq+BU= -github.com/vishvananda/netns v0.0.0-20200728191858-db3c7e526aae/go.mod h1:DD4vA1DwXk04H54A1oHXtwZmA0grkVMdPxx/VGLCah0= -github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f/go.mod h1:DD4vA1DwXk04H54A1oHXtwZmA0grkVMdPxx/VGLCah0= -github.com/vultr/govultr/v2 v2.17.2/go.mod h1:ZFOKGWmgjytfyjeyAdhQlSWwTjh2ig+X49cAp50dzXI= -github.com/willf/bitset v1.1.11-0.20200630133818-d5bec3311243/go.mod h1:RjeCKbqT1RxIR/KWY6phxZiaY1IyutSBfGjNPySAYV4= -github.com/willf/bitset v1.1.11/go.mod h1:83CECat5yLh5zVOf4P1ErAgKA5UDvKtgyUABdr3+MjI= github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM= github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw= -github.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI= -github.com/xdg-go/scram v1.0.2/go.mod h1:1WAq6h33pAW+iRreB34OORO2Nf7qel3VV3fjBj+hCSs= -github.com/xdg-go/stringprep v1.0.2/go.mod h1:8F9zXuvzgwmyT5DUm4GUfZGDdT3W+LCvS6+da4O5kxM= github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f h1:J9EGpcZtP0E/raorCMxlFGSTBrsSlaDGf3jU/qvAE2c= github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 h1:EzJWgHovont7NscjpAxXsDA8S8BMYve8Y5+7cuRE7R0= github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ= -github.com/xeipuuv/gojsonschema v0.0.0-20180618132009-1d523034197f/go.mod h1:5yf86TLmAcydyeJq5YvxkGPE2fm/u4myDekKRoLuqhs= github.com/xeipuuv/gojsonschema v1.2.0 h1:LhYJRs+L4fBtjZUfuSZIKGeVu0QRy8e5Xi7D17UxZ74= github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y= -github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= -github.com/xlab/treeprint v1.1.0/go.mod h1:gj5Gd3gPdKtR1ikdDK6fnFLdmIS0X30kTTuNd/WEJu0= -github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= -github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d/go.mod h1:rHwXgn7JulP+udvsHwJoVG1YGAP6VLg4y9I5dyZdqmA= github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= -github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -github.com/yvasiyarov/go-metrics v0.0.0-20140926110328-57bccd1ccd43/go.mod h1:aX5oPXxHm3bOH+xeAttToC8pqch2ScQN/JoXYupl6xs= -github.com/yvasiyarov/gorelic v0.0.0-20141212073537-a9bba5b9ab50/go.mod h1:NUSPSUX/bi6SeDMUh6brw0nXpxHnc96TguQh0+r/ssA= -github.com/yvasiyarov/newrelic_platform_go v0.0.0-20140908184405-b21fdbd4370f/go.mod h1:GlGEuHIJweS1mbCqG+7vt2nvWLzLLnRHbXz5JKd/Qbg= github.com/zclconf/go-cty v1.13.2 h1:4GvrUxe/QUDYuJKAav4EYqdM47/kZa672LwmXFmEKT0= github.com/zclconf/go-cty v1.13.2/go.mod h1:YKQzy/7pZ7iq2jNFzy5go57xdxdWoLLpaEp4u238AE0= -github.com/zenazn/goji v0.9.0/go.mod h1:7S9M489iMyHBNxwZnk9/EHS098H4/F6TATF2mIxtB1Q= -go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= -go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= -go.etcd.io/bbolt v1.3.5/go.mod h1:G5EMThwa9y8QZGBClrRx5EY+Yw9kAhnjy3bSjsnlVTQ= -go.etcd.io/bbolt v1.3.6/go.mod h1:qXsaaIqmgQH0T+OPdb99Bf+PKfBBQVAdyD6TY9G8XM4= -go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738/go.mod h1:dnLIgRNXwCJa5e+c6mIZCrds/GIG4ncV9HhK5PX7jPg= -go.etcd.io/etcd v0.5.0-alpha.5.0.20200910180754-dd1b699fc489/go.mod h1:yVHk9ub3CSBatqGNg7GRmsnfLWtoW60w4eDYfh7vHDg= -go.etcd.io/etcd/api/v3 v3.5.0/go.mod h1:cbVKeC6lCfl7j/8jBhAK6aIYO9XOjdptoxU/nLQcPvs= -go.etcd.io/etcd/client/pkg/v3 v3.5.0/go.mod h1:IJHfcCEKxYu1Os13ZdwCwIUTUVGYTSAM3YSwc9/Ac1g= -go.etcd.io/etcd/client/v2 v2.305.0/go.mod h1:h9puh54ZTgAKtEbut2oe9P4L/oqKCVB6xsXlzd7alYQ= -go.etcd.io/etcd/client/v3 v3.5.0/go.mod h1:AIKXXVX/DQXtfTEqBryiLTUXwON+GuvO6Z7lLS/oTh0= -go.etcd.io/etcd/pkg/v3 v3.5.0/go.mod h1:UzJGatBQ1lXChBkQF0AuAtkRQMYnHubxAEYIrC3MSsE= -go.etcd.io/etcd/raft/v3 v3.5.0/go.mod h1:UFOHSIvO/nKwd4lhkwabrTD3cqW5yVyYYf/KlD00Szc= -go.etcd.io/etcd/server/v3 v3.5.0/go.mod h1:3Ah5ruV+M+7RZr0+Y/5mNLwC+eQlni+mQmOVdCRJoS4= -go.mongodb.org/mongo-driver v1.7.3/go.mod h1:NqaYOwnXWr5Pm7AOpO5QFxKJ503nbMse/R79oO62zWg= -go.mongodb.org/mongo-driver v1.7.5/go.mod h1:VXEWRZ6URJIkUq2SCAyapmhH0ZLRBP+FT4xhp5Zvxng= -go.mongodb.org/mongo-driver v1.8.3/go.mod h1:0sQWfOeY63QTntERDJJ/0SuKK0T1uVSgKCuAROlKEPY= -go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1/go.mod h1:SNgMg+EgDFwmvSmLRTNKC5fegJjB7v23qTQ0XLGUNHk= -go.opencensus.io v0.15.0/go.mod h1:UffZAU+4sDEINUGP/B7UfBBkq4fqLu9zXAX7ke6CHW0= -go.opencensus.io v0.20.1/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= -go.opencensus.io v0.20.2/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= -go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/contrib v0.20.0/go.mod h1:G/EtFaa6qaN7+LxqfIAT3GiZa7Wv5DTBUzl5H4LY0Kc= -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.20.0/go.mod h1:oVGt1LRbBOBq1A5BQLlUg9UaU/54aiHw8cgjV3aWZ/E= -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.28.0/go.mod h1:vEhqr0m4eTc+DWxfsXoXue2GBgV2uUwVznkGIHW/e5w= -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.20.0/go.mod h1:2AboqHi0CiIZU0qwhtUfCYD1GeUzvvIXWNkhDt7ZMG4= -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.31.0/go.mod h1:PFmBsWbldL1kiWZk9+0LBZz2brhByaGsvp6pRICMlPE= -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.32.0/go.mod h1:5eCOqeGphOyz6TsY3ZDNjE33SM/TFAK3RGuCL2naTgY= -go.opentelemetry.io/otel v0.20.0/go.mod h1:Y3ugLH2oa81t5QO+Lty+zXf8zC9L26ax4Nzoxm/dooo= -go.opentelemetry.io/otel v1.3.0/go.mod h1:PWIKzi6JCp7sM0k9yZ43VX+T345uNbAkDKwHVjb2PTs= -go.opentelemetry.io/otel v1.6.0/go.mod h1:bfJD2DZVw0LBxghOTlgnlI0CV3hLDu9XF/QKOUXMTQQ= -go.opentelemetry.io/otel v1.6.1/go.mod h1:blzUabWHkX6LJewxvadmzafgh/wnvBSDBdOuwkAtrWQ= -go.opentelemetry.io/otel v1.7.0/go.mod h1:5BdUoMIz5WEs0vt0CUEMtSSaTSHBBVwrhnz7+nrD5xk= -go.opentelemetry.io/otel/exporters/otlp v0.20.0/go.mod h1:YIieizyaN77rtLJra0buKiNBOm9XQfkPEKBeuhoMwAM= -go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.3.0/go.mod h1:VpP4/RMn8bv8gNo9uK7/IMY4mtWLELsS+JIP0inH0h4= -go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.6.1/go.mod h1:NEu79Xo32iVb+0gVNV8PMd7GoWqnyDXRlj04yFjqz40= -go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.7.0/go.mod h1:M1hVZHNxcbkAlcvrOMlpQ4YOO3Awf+4N2dxkZL3xm04= -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.3.0/go.mod h1:hO1KLR7jcKaDDKDkvI9dP/FIhpmna5lkqPUQdEjFAM8= -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.6.1/go.mod h1:YJ/JbY5ag/tSQFXzH3mtDmHqzF3aFn3DI/aB1n7pt4w= -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.7.0/go.mod h1:ceUgdyfNv4h4gLxHR0WNfDiiVmZFodZhZSbOLhpxqXE= -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.3.0/go.mod h1:keUU7UfnwWTWpJ+FWnyqmogPa82nuU5VUANFq49hlMY= -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.6.1/go.mod h1:UJJXJj0rltNIemDMwkOJyggsvyMG9QHfJeFH0HS5JjM= -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.7.0/go.mod h1:E+/KKhwOSw8yoPxSSuUHG6vKppkvhN+S1Jc7Nib3k3o= -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.3.0/go.mod h1:QNX1aly8ehqqX1LEa6YniTU7VY9I6R3X/oPxhGdTceE= -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.6.1/go.mod h1:DAKwdo06hFLc0U88O10x4xnb5sc7dDRDqRuiN+io8JE= -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.7.0/go.mod h1:aFXT9Ng2seM9eizF+LfKiyPBGy8xIZKwhusC1gIu3hA= -go.opentelemetry.io/otel/metric v0.20.0/go.mod h1:598I5tYlH1vzBjn+BTuhzTCSb/9debfNp6R3s7Pr1eU= -go.opentelemetry.io/otel/metric v0.28.0/go.mod h1:TrzsfQAmQaB1PDcdhBauLMk7nyyg9hm+GoQq/ekE9Iw= -go.opentelemetry.io/otel/metric v0.30.0/go.mod h1:/ShZ7+TS4dHzDFmfi1kSXMhMVubNoP0oIaBp70J6UXU= -go.opentelemetry.io/otel/oteltest v0.20.0/go.mod h1:L7bgKf9ZB7qCwT9Up7i9/pn0PWIa9FqQ2IQ8LoxiGnw= -go.opentelemetry.io/otel/sdk v0.20.0/go.mod h1:g/IcepuwNsoiX5Byy2nNV0ySUF1em498m7hBWC279Yc= -go.opentelemetry.io/otel/sdk v1.3.0/go.mod h1:rIo4suHNhQwBIPg9axF8V9CA72Wz2mKF1teNrup8yzs= -go.opentelemetry.io/otel/sdk v1.6.1/go.mod h1:IVYrddmFZ+eJqu2k38qD3WezFR2pymCzm8tdxyh3R4E= -go.opentelemetry.io/otel/sdk v1.7.0/go.mod h1:uTEOTwaqIVuTGiJN7ii13Ibp75wJmYUDe374q6cZwUU= -go.opentelemetry.io/otel/sdk/export/metric v0.20.0/go.mod h1:h7RBNMsDJ5pmI1zExLi+bJK+Dr8NQCh0qGhm1KDnNlE= -go.opentelemetry.io/otel/sdk/metric v0.20.0/go.mod h1:knxiS8Xd4E/N+ZqKmUPf3gTTZ4/0TjTXukfxjzSTpHE= -go.opentelemetry.io/otel/trace v0.20.0/go.mod h1:6GjCW8zgDjwGHGa6GkyeB8+/5vjT16gUEi0Nf1iBdgw= -go.opentelemetry.io/otel/trace v1.3.0/go.mod h1:c/VDhno8888bvQYmbYLqe41/Ldmr/KKunbvWM4/fEjk= -go.opentelemetry.io/otel/trace v1.6.0/go.mod h1:qs7BrU5cZ8dXQHBGxHMOxwME/27YH2qEp4/+tZLLwJE= -go.opentelemetry.io/otel/trace v1.6.1/go.mod h1:RkFRM1m0puWIq10oxImnGEduNBzxiN7TXluRBtE+5j0= -go.opentelemetry.io/otel/trace v1.7.0/go.mod h1:fzLSB9nqR2eXzxPXb2JW9IKE+ScyXA48yyE4TNvoHqU= -go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= -go.opentelemetry.io/proto/otlp v0.11.0/go.mod h1:QpEjXPrNQzrFDZgoTo49dgHR9RYRSrg3NAKnUGl9YpQ= -go.opentelemetry.io/proto/otlp v0.12.1/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= -go.opentelemetry.io/proto/otlp v0.15.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= -go.opentelemetry.io/proto/otlp v0.16.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= -go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= -go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= -go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= -go.uber.org/atomic v1.6.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= -go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 h1:4Pp6oUg3+e/6M4C0A/3kJ2VYa++dsWVTtGgLVj5xtHg= +go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0/go.mod h1:Mjt1i1INqiaoZOMGR1RIUJN+i3ChKoFRqzrRQhlkbs0= +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 h1:jq9TW8u3so/bN+JPT166wjOI6/vQPF6Xe7nMNIltagk= +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0/go.mod h1:p8pYQP+m5XfbZm9fxtSKAbM6oIllS7s2AfxrChvc7iw= +go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= +go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= +go.opentelemetry.io/otel/metric v1.24.0 h1:6EhoGWWK28x1fbpA4tYTOWBkPefTDQnb8WSGXlc88kI= +go.opentelemetry.io/otel/metric v1.24.0/go.mod h1:VYhLe1rFfxuTXLgj4CBiyz+9WYBA8pNGJgDcSFRKBco= +go.opentelemetry.io/otel/sdk v1.22.0 h1:6coWHw9xw7EfClIC/+O31R8IY3/+EiRFHevmHafB2Gw= +go.opentelemetry.io/otel/sdk v1.22.0/go.mod h1:iu7luyVGYovrRpe2fmj3CVKouQNdTOkxtLzPvPz1DOc= +go.opentelemetry.io/otel/trace v1.24.0 h1:CsKnnL4dUAr/0llH9FKuc698G04IrpWV0MQA/Y1YELI= +go.opentelemetry.io/otel/trace v1.24.0/go.mod h1:HPc3Xr/cOApsBI154IU0OI0HJexz+aw5uPdbs3UCjNU= go.uber.org/atomic v1.9.0 h1:ECmE8Bn/WFTYwEW/bpKD3M8VtR/zQVbavAoalC1PYyE= go.uber.org/atomic v1.9.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= -go.uber.org/automaxprocs v1.5.1/go.mod h1:BF4eumQw0P9GtnuxxovUd06vwm1o18oMzFtK66vU6XU= -go.uber.org/goleak v1.1.10/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A= -go.uber.org/goleak v1.1.11/go.mod h1:cwTWslyiVhfpKIDGSZEM2HlOvcqm+tG4zioyIeLoqMQ= -go.uber.org/goleak v1.1.12/go.mod h1:cwTWslyiVhfpKIDGSZEM2HlOvcqm+tG4zioyIeLoqMQ= -go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= -go.uber.org/multierr v1.3.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4= -go.uber.org/multierr v1.5.0/go.mod h1:FeouvMocqHpRaaGuG9EjoKcStLC43Zu/fmqdUMPcKYU= -go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU= -go.uber.org/multierr v1.8.0/go.mod h1:7EAYxJLBy9rStEaz58O2t4Uvip6FSURkq8/ppBp95ak= -go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA= -go.uber.org/zap v1.9.1/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= -go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= -go.uber.org/zap v1.13.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM= -go.uber.org/zap v1.17.0/go.mod h1:MXVU+bhUf/A7Xi2HNOnopQOrmycQ5Ih87HtOu4q5SSo= -go.uber.org/zap v1.21.0/go.mod h1:wjWOCqI0f2ZZrJF/UufIOkiC8ii6tm1iqIsLo76RfJw= -gocloud.dev v0.27.0 h1:j0WTUsnKTxCsWO7y8T+YCiBZUmLl9w/WIowqAY3yo0g= -gocloud.dev v0.27.0/go.mod h1:YlYKhYsY5/1JdHGWQDkAuqkezVKowu7qbe9aIeUF6p0= -gocloud.dev/secrets/hashivault v0.27.0 h1:AAeGJXr0tiHHJgg5tL8atOGktB4eK9EJAqkZbPKAcOo= -gocloud.dev/secrets/hashivault v0.27.0/go.mod h1:offqsI5oj0B0bVHZdfk/88uIb3NnN93ia8py0yvRlHY= -golang.org/x/crypto v0.0.0-20171113213409-9f005a07e0d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20181009213950-7c1a557ab941/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +gocloud.dev v0.37.0 h1:XF1rN6R0qZI/9DYjN16Uy0durAmSlf58DHOcb28GPro= +gocloud.dev v0.37.0/go.mod h1:7/O4kqdInCNsc6LqgmuFnS0GRew4XNNYWpA44yQnwco= +gocloud.dev/secrets/hashivault v0.37.0 h1:5ehGtUBP29DFAgAs6bPw7fVSgqQ3TxaoK2xVcLp1x+c= +gocloud.dev/secrets/hashivault v0.37.0/go.mod h1:4ClUWjBfP8wLdGts56acjHz3mWLuATMoH9vi74FjIv8= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190411191339-88737f569e3a/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= -golang.org/x/crypto v0.0.0-20190422162423-af44ce270edf/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190923035154-9ee001bba392/go.mod h1:/lpIB1dKB+9EgE3H3cr1v9wB50oz8l4C4h62xy7jSTY= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20201203163018-be400aefbc4c/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= -golang.org/x/crypto v0.0.0-20201216223049-8b5274cf687f/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= -golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= -golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= -golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20211202192323-5770296d904e/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.0.0-20220214200702-86341886e292/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.0.0-20220314234659-1baeb1ce4c0b/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.3.1-0.20221117191849-2c476679df9a/go.mod h1:hebNnKkNXi2UzZN1eVRvBB7co0a+JxK6XbPiWVs/3J4= golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= -golang.org/x/crypto v0.17.0 h1:r8bRNjWL3GshPW3gkd+RpvzWrZAwPS49OmTGZ/uhM4k= -golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= +golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc= +golang.org/x/crypto v0.18.0/go.mod h1:R0j02AL6hcrfOiy9T4ZYp/rcWeMxM3L6QYxlOuEG1mg= +golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU= +golang.org/x/crypto v0.24.0 h1:mnl8DM0o513X8fdIkmyFE/5hTYxbwYOjDS/+rK6qpRI= +golang.org/x/crypto v0.24.0/go.mod h1:Z1PMYSOR5nyMcyAVAIQSKCDwalqy85Aqn1x3Ws4L5DM= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= @@ -1811,8 +573,8 @@ golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u0 golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa h1:FRnLl4eNAQl8hwxVVC17teOw8kdjVDVAiFMtgUdTSRQ= -golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa/go.mod h1:zk2irFbV9DP96SEBUUAy67IdHUaZuSnrz1n472HUCLE= +golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8 h1:LoYXNGAShUG3m/ehNk4iFctuhGX/+R1ZpfJ4/ia80JM= +golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8/go.mod h1:jj3sYF3dwk5D+ghuXyeI3r5MFf+NT2An6/9dOA95KSI= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= @@ -1826,7 +588,6 @@ golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRu golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= @@ -1837,41 +598,24 @@ golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.5.0/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= -golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= -golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3/go.mod h1:3p9vT2HGsQu2K1YbXdKPJLVgG5VJdoTa1poYQBtP1AY= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.14.0 h1:dGoOF9QVLYng8IHTm7BAyWqCqSheQ5pYWGhzW00YJr0= +golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.14.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= -golang.org/x/net v0.0.0-20180530234432-1e491301e022/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/mod v0.18.0 h1:5+9lSbEzPSdWkH32vYPBwEpX8KwDbM52Ud9xBUvNlb0= +golang.org/x/mod v0.18.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181011144130-49bb7cea24b1/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190125091013-d26f9f9a57f3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= -golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190619014844-b5b0513f8c1b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190923162816-aa69164e4478/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20191004110552-13f9640d40b9/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= @@ -1883,53 +627,26 @@ golang.org/x/net v0.0.0-20200421231249-e086a090c8fd/go.mod h1:qpuaurCH72eLCgpAm/ golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20201006153459-a7d1128ccaa0/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201010224723-4f7140c49acb/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201202161906-c7110b5ffcbb/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= -golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= -golang.org/x/net v0.0.0-20210410081132-afb366fc7cd1/go.mod h1:9tjilg8BloeKEkVJvy7fQ90B1CfIiPueXVOjqfkSzI8= -golang.org/x/net v0.0.0-20210421230115-4e50805a0758/go.mod h1:72T/g9IO56b78aLF+1Kcs5dz7/ng1VjMUvfKvpfy+jM= -golang.org/x/net v0.0.0-20210428140749-89ef3d95e781/go.mod h1:OJAsFXCWl8Ukc7SiCT/9KSuxbyM7479/AVlXFRxuMCk= -golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210520170846-37e1c6afe023/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210610132358-84b48f89b13b/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210726213435-c6fcb2dbf985/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210825183410-e898025ed96a/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20211209124913-491a49abca63/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20211216030914-fe4d6282115f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220325170049-de3da57026de/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220412020605-290c469a71a5/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220607020251-c690dde0001d/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220617184016-355a448f1bc9/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220802222814-0bcc04d9c69b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= -golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY= golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= -golang.org/x/net v0.19.0 h1:zTwKpTd2XuCqf8huc7Fo2iSy+4RHPd10s4KzeTnVr1c= -golang.org/x/net v0.19.0/go.mod h1:CfAk/cbD4CthTvqiEl8NpboMuiuOYsAr/7NOjZJtv1U= +golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= +golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk= +golang.org/x/net v0.20.0/go.mod h1:z8BVo6PvndSri0LbOE3hAn0apkU+1YvI6E70E9jsnvY= +golang.org/x/net v0.26.0 h1:soB7SVo0PWrY4vPW/+ay0jKDNScG2X9wFeYlXIvJsOQ= +golang.org/x/net v0.26.0/go.mod h1:5YKkiSynbBIh3p6iOc/vibscux0x38BZDkn8sCUPxHE= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -1939,96 +656,43 @@ golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210427180440-81ed05c6b58c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20211005180243-6b3c2da341f1/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220608161450-d0670ef3b1eb/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= -golang.org/x/oauth2 v0.0.0-20220622183110-fd043fe589d2/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= -golang.org/x/oauth2 v0.0.0-20220628200809-02e64fa58f26/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= -golang.org/x/oauth2 v0.0.0-20220722155238-128564f6959c/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.8.0 h1:6dkIjl3j3LtZ/O3sTgZTMsLKSftL/B8Zgq4huOIIUu8= -golang.org/x/oauth2 v0.8.0/go.mod h1:yr7u4HXZRm1R1kBWqr/xKNqewf0plRYoB7sla+BCIXE= +golang.org/x/oauth2 v0.18.0 h1:09qnuIAgzdx1XplqJvW6CQqMCtGZykZWcXzPMPUusvI= +golang.org/x/oauth2 v0.18.0/go.mod h1:Wf7knwG0MPoWIMMBgFlEaSUDaKskp0dCfrlJRJXbBi8= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190412183630-56d357773e84/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.5.0 h1:60k92dhOjHxJkrqnwsfl8KuaHbn/5dl0lUPUklKo3qE= -golang.org/x/sync v0.5.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= -golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= +golang.org/x/sync v0.6.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M= +golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181026203630-95b1ffbd15a5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181122145206-62eef0e2fa9b/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190419153524-e8e3143a4f4a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190514135907-3a4b5fb9f71f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190522044717-8097e1b27ff5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190531175056-4c3a928424d2/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190602015325-4c4f7f33c9ed/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190606203320-7fc4e5ec1444/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190616124812-15dcb6c0061f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190801041406-cbf593c0f2f3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190812073006-9eafafc0a87e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190922100055-0a153f010e69/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191022100944-742c48ecaeb7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191115151921-52ab43148777/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191210023423-ac6580df4449/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191220142924-d4481acd189f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200120151820-655fe14d7479/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200217220822-9197077df867/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -2036,168 +700,84 @@ golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200519105757-fe76b779f299/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200622214017-ed371f2e16b4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200728102440-3e129f6d46b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200817155316-9781c653f443/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200831180312-196b9ba8737a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200909081042-eff7692f9009/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200916030750-2334cc1a136f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200922070232-aee5d888a860/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200923182605-d9f96fdee20d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201112073958-5cba982894dd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201117170446-d9b008d0a637/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201202213521-69691e467435/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210112080510-489259a85091/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210303074136-134d130e1a04/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210324051608-47abb6519492/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210420072515-93ed5bcd2bfe/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210426230700-d19ff857e887/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210503080704-8803ae5d1324/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210831042530-f4d43177bf5e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210903071746-97244b99971b/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210906170528-6f6e22806c34/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210917161153-d61c044b1678/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211025201205-69cdffdb9359/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211110154304-99a53858aa08/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211116061358-0a5406a5449c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211210111614-af8b64212486/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220502124256-b6088ccd6cba/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220624220833-87e55d714810/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220627191245-f75cf1eec38b/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220731174439-a90be440212d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= -golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= +golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws= +golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= -golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= -golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= -golang.org/x/term v0.15.0 h1:y/Oo/a/q3IXu26lQgl04j/gjuBDOBlx7X6Om1j2CPW4= -golang.org/x/term v0.15.0/go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0= +golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= +golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU= +golang.org/x/term v0.16.0/go.mod h1:yn7UURbUtPyrVJPGPq404EukNFxcm/foM+bV/bfcDsY= +golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk= +golang.org/x/term v0.21.0 h1:WVXCp+/EBEHOj53Rvu+7KiT/iElMrO8ACK16SMZ3jaA= +golang.org/x/term v0.21.0/go.mod h1:ooXLefLobQVslOqselCNF4SxFAaoS6KujMbsGzSDmX0= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= -golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= +golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= +golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= -golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/text v0.16.0 h1:a94ExnEXNtEwYLGJSIUxnWoxoRz/ZcCsV63ROupILh4= +golang.org/x/text v0.16.0/go.mod h1:GhwF1Be+LQoKShO3cGOHzqOgRrGaYc9AvblQOmPVHnI= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20220210224613-90d013bbcef8/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20220224211638-0e9765cccd65/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20220609170525-579cf78fd858/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9 h1:ftMN5LMiBFjbzleLqtoBZk7KdJwhuybIU+FckUHgoyQ= -golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20180828015842-6cd1fcedba52/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/time v0.5.0 h1:o7cqy6amK/52YcAKIPlM3a+Fpj35zvRj2TP+e1xFSfk= +golang.org/x/time v0.5.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20181011042414-1f849cf54d09/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190329151228-23e29df326fe/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190416151739-9c9e1878f421/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190420181800-aa740d480789/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190422233926-fe54fb35175b/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190425163242-31fd60d6bfdc/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190531172133-b3315ee88b7d/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190614205625-5aca471b1d59/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190624222133-a101b041ded4/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190706070813-72ffa07ba3db/go.mod h1:jcCCGcm9btYwXyDqrUWc6MKQKKGJCWEQ3AfLSRIbEuI= golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190823170909-c4a336ef6a2f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190907020128-2ca718005c18/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191112195655-aa38f8e97acc/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= @@ -2205,7 +785,6 @@ golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtn golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200103221440-774c71fcf114/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= @@ -2218,51 +797,33 @@ golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjs golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200505023115-26f46d2f7ef8/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200616133436-c1934b75d054/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= -golang.org/x/tools v0.0.0-20200916195026-c9a70fc28ce3/go.mod h1:z6u4i615ZeAfBE4XtMziQW1fSVJXACjjbWkB/mvPzlU= golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201224043029-2b0845dc783e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= -golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.6-0.20210726203631-07bc1bf47fb2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= -golang.org/x/tools v0.1.10/go.mod h1:Uh6Zz+xoGYZom868N8YTex3t7RhtHDBrE8Gzo9bV56E= -golang.org/x/tools v0.1.11/go.mod h1:SgwaegtQh8clINPpECJMqnxLv9I09HLqnW3RMqW0CA4= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= -golang.org/x/tools v0.15.0 h1:zdAyfUGbYmuVokhzVmghFl2ZJh5QhcfebBgmVPFYA+8= -golang.org/x/tools v0.15.0/go.mod h1:hpksKq4dtpQWS1uQ61JkdqWM3LscIS6Slf+VVkm+wQk= -golang.org/x/xerrors v0.0.0-20190410155217-1f06c39b4373/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20190513163551-3ee3066db522/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/tools v0.13.0/go.mod h1:HvlwmtVNQAhOuCjW7xxvovg8wbNq7LwfXh/k7wXUl58= +golang.org/x/tools v0.17.0/go.mod h1:xsh6VxdV005rRVaS6SSAf9oiAqljS7UZUacMZ8Bnsps= +golang.org/x/tools v0.22.0 h1:gqSGLZqv+AI9lIQzniJ0nZDRG5GBPsSi+DRNHWNz6yA= +golang.org/x/tools v0.22.0/go.mod h1:aCwcsjqvq7Yqt6TNyX7QMU2enbQ/Gt0bo6krSeEri+c= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= -golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= -golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk= -golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= -google.golang.org/api v0.0.0-20160322025152-9bf6e6e569ff/go.mod h1:4mhQ8q/RsB7i+udVvVy5NUi08OU8ZlA0gRVgrF7VFY0= -google.golang.org/api v0.3.1/go.mod h1:6wY9I6uQWHQ8EM57III9mq/AjF+i8G65rmVagqKMtkk= +golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 h1:+cNy6SZtPcJQH3LJVLOSmiC7MMxXNOb3PU/VUEz+EhU= +golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028/go.mod h1:NDW/Ps6MPRej6fsCIbMTohpP40sJ/P/vI1MoTEGwX90= google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= @@ -2282,53 +843,22 @@ google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz513 google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= -google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= -google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= -google.golang.org/api v0.46.0/go.mod h1:ceL4oozhkAiTID8XMmJBsIxID/9wMXJVVFXPg4ylg3I= -google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= -google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= -google.golang.org/api v0.50.0/go.mod h1:4bNT5pAuq5ji4SRZm+5QIkjny9JAyVD/3gaSihNefaw= -google.golang.org/api v0.51.0/go.mod h1:t4HdrdoNgyN5cbEfm7Lum0lcLDLiise1F8qDKX00sOU= -google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6z3k= -google.golang.org/api v0.55.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.57.0/go.mod h1:dVPlbZyBo2/OjBpmvNdpn2GRm6rPy75jyU7bmhdrMgI= -google.golang.org/api v0.58.0/go.mod h1:cAbP2FsxoGVNwtgNAmmn3y5G1TWAiVYRmg4yku3lv+E= -google.golang.org/api v0.59.0/go.mod h1:sT2boj7M9YJxZzgeZqXogmhfmRWDtPzT31xkieUbuZU= -google.golang.org/api v0.61.0/go.mod h1:xQRti5UdCmoCEqFxcz93fTl338AVqDgyaDRuOZ3hg9I= -google.golang.org/api v0.63.0/go.mod h1:gs4ij2ffTRXwuzzgJl/56BdwJaA194ijkfn++9tDuPo= -google.golang.org/api v0.67.0/go.mod h1:ShHKP8E60yPsKNw/w8w+VYaj9H6buA5UqDp8dhbQZ6g= -google.golang.org/api v0.70.0/go.mod h1:Bs4ZM2HGifEvXwd50TtW70ovgJffJYw2oRCOFU/SkfA= -google.golang.org/api v0.71.0/go.mod h1:4PyU6e6JogV1f9eA4voyrTY2batOLdgZ5qZ5HOCc4j8= -google.golang.org/api v0.74.0/go.mod h1:ZpfMZOVRMywNyvJFeqL9HRWBgAuRfSjJFpe9QtRRyDs= -google.golang.org/api v0.75.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= -google.golang.org/api v0.78.0/go.mod h1:1Sg78yoMLOhlQTeF+ARBoytAcH1NNyyl390YMy6rKmw= -google.golang.org/api v0.80.0/go.mod h1:xY3nI94gbvBrE0J6NHXhxOmW97HG7Khjkku6AFB3Hyg= -google.golang.org/api v0.84.0/go.mod h1:NTsGnUFJMYROtiquksZHBWtHfeMC7iYthki7Eq3pa8o= -google.golang.org/api v0.85.0/go.mod h1:AqZf8Ep9uZ2pyTvgL+x0D3Zt0eoT9b5E8fmzfu6FO2g= -google.golang.org/api v0.86.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= -google.golang.org/api v0.90.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= -google.golang.org/api v0.91.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= -google.golang.org/api v0.126.0 h1:q4GJq+cAdMAC7XP7njvQ4tvohGLiSlytuL4BQxbIZ+o= -google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= +google.golang.org/api v0.169.0 h1:QwWPy71FgMWqJN/l6jVlFHUa29a7dcUy02I8o799nPY= +google.golang.org/api v0.169.0/go.mod h1:gpNOiMA2tZ4mf5R9Iwf4rK/Dcz0fbdIgWYWVoxmsyLg= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.2.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/appengine v1.6.7 h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c= google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/cloud v0.0.0-20151119220103-975617b05ea8/go.mod h1:0H1ncTHf11KCFhTc/+EFRbzSCOZx+VUbRMk55Yv5MYk= -google.golang.org/genproto v0.0.0-20170818010345-ee236bd376b0/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= +google.golang.org/appengine v1.6.8 h1:IhEN5q69dyKagZPYMSdIjS2HqprW324FRQZJcGqPAsM= +google.golang.org/appengine v1.6.8/go.mod h1:1jJ3jBArFh5pcgW8gCtRJnepW8FzD1V44FJffLiz/Ds= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190522204451-c2c4e71fbf69/go.mod h1:z3L6/3dTEVtUr6QSP8miRzeRqwQOioJ9I66odjN4I7s= -google.golang.org/genproto v0.0.0-20190530194941-fb225487d101/go.mod h1:z3L6/3dTEVtUr6QSP8miRzeRqwQOioJ9I66odjN4I7s= google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= @@ -2337,7 +867,6 @@ google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvx google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200117163144-32f20d992d24/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= @@ -2346,100 +875,31 @@ google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfG google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200423170343-7949de9c1215/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= -google.golang.org/genproto v0.0.0-20200527145253-8367513e4ece/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20200904004341-0bd0a958aa1d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201019141844-1ed22bb0c154/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201110150050-8816d57aaa9a/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210329143202-679c6ae281ee/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= -google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= -google.golang.org/genproto v0.0.0-20210429181445-86c259c2b4ab/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= -google.golang.org/genproto v0.0.0-20210513213006-bf773b8c8384/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= -google.golang.org/genproto v0.0.0-20210517163617-5e0236093d7a/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= -google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210608205507-b6d2f5bf0d7d/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84/go.mod h1:SzzZ/N+nwJDaO1kznhnlzqS8ocJICar6hYhVyhi++24= -google.golang.org/genproto v0.0.0-20210713002101-d411969a0d9a/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= -google.golang.org/genproto v0.0.0-20210716133855-ce7ef5c701ea/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= -google.golang.org/genproto v0.0.0-20210728212813-7823e685a01f/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= -google.golang.org/genproto v0.0.0-20210805201207-89edb61ffb67/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= -google.golang.org/genproto v0.0.0-20210813162853-db860fec028c/go.mod h1:cFeNkxwySK631ADgubI+/XFU/xp8FD5KIVV4rj8UC5w= -google.golang.org/genproto v0.0.0-20210821163610-241b8fcbd6c8/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210903162649-d08c68adba83/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210909211513-a8c4777a87af/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210917145530-b395a37504d4/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210921142501-181ce0d877f6/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211008145708-270636b82663/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211018162055-cf77aa76bad2/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211028162531-8db9c33dc351/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211221195035-429b39de9b1c/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220126215142-9970aeb2e350/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220207164111-0872dc986b00/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220218161850-94dd64e39d7c/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220222213610-43724f9ea8cf/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220304144024-325a89244dc8/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220324131243-acbaeb5b85eb/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E= -google.golang.org/genproto v0.0.0-20220329172620-7be39ac1afc7/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220413183235-5e96e2839df9/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220414192740-2d67ff6cf2b4/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220421151946-72621c1f0bd3/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220429170224-98d788798c3e/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220518221133-4f43b3371335/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220519153652-3a47de7e79bd/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220523171625-347a074981d8/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220608133413-ed9918b62aac/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220616135557-88e70c0c3a90/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220617124728-180714bec0ad/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220624142145-8cd45d7dbd1f/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220628213854-d9e0b6570c03/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220802133213-ce4fa296bf78/go.mod h1:iHe1svFLAZg9VWz891+QbRMwUv9O/1Ww+/mngYeThbc= -google.golang.org/genproto v0.0.0-20230726155614-23370e0ffb3e h1:xIXmWJ303kJCuogpj0bHq+dcjcZHU+XFyc1I0Yl9cRg= -google.golang.org/genproto v0.0.0-20230726155614-23370e0ffb3e/go.mod h1:0ggbjUrZYpy1q+ANUS30SEoGZ53cdfwtbuG7Ptgy108= -google.golang.org/genproto/googleapis/api v0.0.0-20230706204954-ccb25ca9f130 h1:XVeBY8d/FaK4848myy41HBqnDwvxeV3zMZhwN1TvAMU= -google.golang.org/genproto/googleapis/api v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:mPBs5jNgx2GuQGvFwUvVKqtn6HsUw9nP64BedgvqEsQ= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230706204954-ccb25ca9f130 h1:2FZP5XuJY9zQyGM5N0rtovnoXjiMUEIUMvw0m9wlpLc= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:8mL13HKkDa+IuJ8yruA3ci0q+0vsUz4m//+ottjwS5o= -google.golang.org/grpc v0.0.0-20160317175043-d3ddb4469d5a/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= -google.golang.org/grpc v1.8.0/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= -google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs= +google.golang.org/genproto v0.0.0-20240311173647-c811ad7063a7 h1:ImUcDPHjTrAqNhlOkSocDLfG9rrNHH7w7uoKWPaWZ8s= +google.golang.org/genproto v0.0.0-20240311173647-c811ad7063a7/go.mod h1:/3XmxOjePkvmKrHuBy4zNFw7IzxJXtAgdpXi8Ll990U= +google.golang.org/genproto/googleapis/api v0.0.0-20240311173647-c811ad7063a7 h1:oqta3O3AnlWbmIE3bFnWbu4bRxZjfbWCp0cKSuZh01E= +google.golang.org/genproto/googleapis/api v0.0.0-20240311173647-c811ad7063a7/go.mod h1:VQW3tUculP/D4B+xVCo+VgSq8As6wA9ZjHl//pmk+6s= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240311173647-c811ad7063a7 h1:8EeVk1VKMD+GD/neyEHGmz7pFblqPjHoi+PGQIlLx2s= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240311173647-c811ad7063a7/go.mod h1:WtryC6hu0hhx87FDGxWCDptyssuo68sk10vYjF+T9fY= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.0/go.mod h1:chYK+tFQF0nDUGJgXMSgLCQk3phJEuONr2DCgLDdAQM= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= -google.golang.org/grpc v1.22.1/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= -google.golang.org/grpc v1.23.1/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= -google.golang.org/grpc v1.24.0/go.mod h1:XDChyiUovWa60DnaeDeZmSW86xtLtjtZbwvSiRnRtcA= google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= @@ -2449,31 +909,11 @@ google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3Iji google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= google.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.37.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.37.1/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= -google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= -google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.40.1/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.41.0/go.mod h1:U3l9uK9J0sini8mHphKoXyaqDA/8VyGnDee1zzIUK6k= -google.golang.org/grpc v1.42.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.43.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.44.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ= -google.golang.org/grpc v1.46.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.46.2/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.47.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.48.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.57.1 h1:upNTNqv0ES+2ZOOqACwVtS3Il8M12/+Hz41RCPzAjQg= -google.golang.org/grpc v1.57.1/go.mod h1:Sd+9RMTACXwmub0zcNY2c4arhtrbBYD1AUHI/dt16Mo= -google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= +google.golang.org/grpc v1.63.2 h1:MUeiw1B2maTVZthpU5xvASfTh3LDbxHd6IJ6QQVU+xM= +google.golang.org/grpc v1.63.2/go.mod h1:WAX/8DgncnokcFUldAxq7GeB5DXHDbMF+lLvDomNkRA= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= @@ -2486,61 +926,24 @@ google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGj google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= -google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -gopkg.in/airbrake/gobrake.v2 v2.0.9/go.mod h1:/h5ZAUhDkGaJfjzjKLSjv6zCL6O0LLBxU4K+aSYdM/U= -gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI= +google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20141024133853-64131543e789/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= -gopkg.in/cheggaaa/pb.v1 v1.0.25/go.mod h1:V/YB90LKu/1FcN3WVnfiiE5oMCibMjukxqG/qStrOgw= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= -gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= -gopkg.in/gcfg.v1 v1.2.3/go.mod h1:yesOnuUOFQAhST5vPY4nbZsb/huCgGGXlipJsBn0b3o= -gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2/go.mod h1:Xk6kEKp8OKb+X14hQBKWaSkCsqBpgog8nAV2xsGOxlo= -gopkg.in/inconshreveable/log15.v2 v2.0.0-20180818164646-67afb5ed74ec/go.mod h1:aPpfJ7XW+gOuirDoZ8gHhLh3kZ1B08FtV2bbmy7Jv3s= -gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= -gopkg.in/ini.v1 v1.51.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= -gopkg.in/ini.v1 v1.66.4/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= -gopkg.in/natefinch/lumberjack.v2 v2.0.0/go.mod h1:l0ndWWf7gzL7RNwBG7wST/UCcT4T24xpD6X8LsfU/+k= -gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= -gopkg.in/square/go-jose.v2 v2.2.2/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI= -gopkg.in/square/go-jose.v2 v2.3.1/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI= -gopkg.in/square/go-jose.v2 v2.5.1/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI= -gopkg.in/square/go-jose.v2 v2.6.0 h1:NGk74WTnPKBNUhNzQX7PYcTLUjoq7mzKk2OKbvwk2iI= -gopkg.in/square/go-jose.v2 v2.6.0/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI= -gopkg.in/telebot.v3 v3.0.0/go.mod h1:7rExV8/0mDDNu9epSrDm/8j22KLaActH1Tbee6YjzWg= -gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= gopkg.in/warnings.v0 v0.1.2 h1:wFXVbFY8DY5/xOe1ECiWdKCzZlxgshcYVNkBHstARME= gopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI= -gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= -gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gopkg.in/yaml.v3 v3.0.0-20200605160147-a5ece683394c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.0/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= -gotest.tools/v3 v3.0.2/go.mod h1:3SzNCllyD9/Y+b5r9JIKQ474KzkZyqLqEfYqMsX94Bk= -gotest.tools/v3 v3.0.3/go.mod h1:Z7Lb0S5l+klDB31fvDQX8ss/FlKDxtlFlw3Oa8Ymbl8= -honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= @@ -2548,84 +951,10 @@ honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWh honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -k8s.io/api v0.20.1/go.mod h1:KqwcCVogGxQY3nBlRpwt+wpAMF/KjaCc7RpywacvqUo= -k8s.io/api v0.20.4/go.mod h1:++lNL1AJMkDymriNniQsWRkMDzRaX2Y/POTUi8yvqYQ= -k8s.io/api v0.20.6/go.mod h1:X9e8Qag6JV/bL5G6bU8sdVRltWKmdHsFUGS3eVndqE8= -k8s.io/api v0.22.5/go.mod h1:mEhXyLaSD1qTOf40rRiKXkc+2iCem09rWLlFwhCEiAs= -k8s.io/api v0.23.5/go.mod h1:Na4XuKng8PXJ2JsploYYrivXrINeTaycCGcYgF91Xm8= -k8s.io/api v0.24.2/go.mod h1:AHqbSkTm6YrQ0ObxjO3Pmp/ubFF/KuM7jU+3khoBsOg= -k8s.io/apimachinery v0.20.1/go.mod h1:WlLqWAHZGg07AeltaI0MV5uk1Omp8xaN0JGLY6gkRpU= -k8s.io/apimachinery v0.20.4/go.mod h1:WlLqWAHZGg07AeltaI0MV5uk1Omp8xaN0JGLY6gkRpU= -k8s.io/apimachinery v0.20.6/go.mod h1:ejZXtW1Ra6V1O5H8xPBGz+T3+4gfkTCeExAHKU57MAc= -k8s.io/apimachinery v0.22.1/go.mod h1:O3oNtNadZdeOMxHFVxOreoznohCpy0z6mocxbZr7oJ0= -k8s.io/apimachinery v0.22.5/go.mod h1:xziclGKwuuJ2RM5/rSFQSYAj0zdbci3DH8kj+WvyN0U= -k8s.io/apimachinery v0.23.5/go.mod h1:BEuFMMBaIbcOqVIJqNZJXGFTP4W6AycEpb5+m/97hrM= -k8s.io/apimachinery v0.24.2/go.mod h1:82Bi4sCzVBdpYjyI4jY6aHX+YCUchUIrZrXKedjd2UM= -k8s.io/apiserver v0.20.1/go.mod h1:ro5QHeQkgMS7ZGpvf4tSMx6bBOgPfE+f52KwvXfScaU= -k8s.io/apiserver v0.20.4/go.mod h1:Mc80thBKOyy7tbvFtB4kJv1kbdD0eIH8k8vianJcbFM= -k8s.io/apiserver v0.20.6/go.mod h1:QIJXNt6i6JB+0YQRNcS0hdRHJlMhflFmsBDeSgT1r8Q= -k8s.io/apiserver v0.22.5/go.mod h1:s2WbtgZAkTKt679sYtSudEQrTGWUSQAPe6MupLnlmaQ= -k8s.io/client-go v0.20.1/go.mod h1:/zcHdt1TeWSd5HoUe6elJmHSQ6uLLgp4bIJHVEuy+/Y= -k8s.io/client-go v0.20.4/go.mod h1:LiMv25ND1gLUdBeYxBIwKpkSC5IsozMMmOOeSJboP+k= -k8s.io/client-go v0.20.6/go.mod h1:nNQMnOvEUEsOzRRFIIkdmYOjAZrC8bgq0ExboWSU1I0= -k8s.io/client-go v0.22.5/go.mod h1:cs6yf/61q2T1SdQL5Rdcjg9J1ElXSwbjSrW2vFImM4Y= -k8s.io/client-go v0.23.5/go.mod h1:flkeinTO1CirYgzMPRWxUCnV0G4Fbu2vLhYCObnt/r4= -k8s.io/client-go v0.24.2/go.mod h1:zg4Xaoo+umDsfCWr4fCnmLEtQXyCNXCvJuSsglNcV30= -k8s.io/code-generator v0.19.7/go.mod h1:lwEq3YnLYb/7uVXLorOJfxg+cUu2oihFhHZ0n9NIla0= -k8s.io/component-base v0.20.1/go.mod h1:guxkoJnNoh8LNrbtiQOlyp2Y2XFCZQmrcg2n/DeYNLk= -k8s.io/component-base v0.20.4/go.mod h1:t4p9EdiagbVCJKrQ1RsA5/V4rFQNDfRlevJajlGwgjI= -k8s.io/component-base v0.20.6/go.mod h1:6f1MPBAeI+mvuts3sIdtpjljHWBQ2cIy38oBIWMYnrM= -k8s.io/component-base v0.22.5/go.mod h1:VK3I+TjuF9eaa+Ln67dKxhGar5ynVbwnGrUiNF4MqCI= -k8s.io/cri-api v0.17.3/go.mod h1:X1sbHmuXhwaHs9xxYffLqJogVsnI+f6cPRcgPel7ywM= -k8s.io/cri-api v0.20.1/go.mod h1:2JRbKt+BFLTjtrILYVqQK5jqhI+XNdF6UiGMgczeBCI= -k8s.io/cri-api v0.20.4/go.mod h1:2JRbKt+BFLTjtrILYVqQK5jqhI+XNdF6UiGMgczeBCI= -k8s.io/cri-api v0.20.6/go.mod h1:ew44AjNXwyn1s0U4xCKGodU7J1HzBeZ1MpGrpa5r8Yc= -k8s.io/cri-api v0.23.1/go.mod h1:REJE3PSU0h/LOV1APBrupxrEJqnoxZC8KWzkBUHwrK4= -k8s.io/gengo v0.0.0-20200413195148-3a45101e95ac/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0= -k8s.io/gengo v0.0.0-20200428234225-8167cfdcfc14/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0= -k8s.io/gengo v0.0.0-20201113003025-83324d819ded/go.mod h1:FiNAH4ZV3gBg2Kwh89tzAEV2be7d5xI0vBa/VySYy3E= -k8s.io/gengo v0.0.0-20210813121822-485abfe95c7c/go.mod h1:FiNAH4ZV3gBg2Kwh89tzAEV2be7d5xI0vBa/VySYy3E= -k8s.io/klog v1.0.0/go.mod h1:4Bi6QPql/J/LkTDqv7R/cd3hPo4k2DG6Ptcz060Ez5I= -k8s.io/klog/v2 v2.0.0/go.mod h1:PBfzABfn139FHAV07az/IF9Wp1bkk3vpT2XSJ76fSDE= -k8s.io/klog/v2 v2.2.0/go.mod h1:Od+F08eJP+W3HUb4pSrPpgp9DGU4GzlpG/TmITuYh/Y= -k8s.io/klog/v2 v2.4.0/go.mod h1:Od+F08eJP+W3HUb4pSrPpgp9DGU4GzlpG/TmITuYh/Y= -k8s.io/klog/v2 v2.9.0/go.mod h1:hy9LJ/NvuK+iVyP4Ehqva4HxZG/oXyIS3n3Jmire4Ec= -k8s.io/klog/v2 v2.30.0/go.mod h1:y1WjHnz7Dj687irZUWR/WLkLc5N1YHtjLdmgWjndZn0= -k8s.io/klog/v2 v2.40.1/go.mod h1:y1WjHnz7Dj687irZUWR/WLkLc5N1YHtjLdmgWjndZn0= -k8s.io/klog/v2 v2.60.1/go.mod h1:y1WjHnz7Dj687irZUWR/WLkLc5N1YHtjLdmgWjndZn0= -k8s.io/klog/v2 v2.70.0/go.mod h1:y1WjHnz7Dj687irZUWR/WLkLc5N1YHtjLdmgWjndZn0= -k8s.io/kube-openapi v0.0.0-20200805222855-6aeccd4b50c6/go.mod h1:UuqjUnNftUyPE5H64/qeyjQoUZhGpeFDVdxjTeEVN2o= -k8s.io/kube-openapi v0.0.0-20201113171705-d219536bb9fd/go.mod h1:WOJ3KddDSol4tAGcJo0Tvi+dK12EcqSLqcWsryKMpfM= -k8s.io/kube-openapi v0.0.0-20210421082810-95288971da7e/go.mod h1:vHXdDvt9+2spS2Rx9ql3I8tycm3H9FDfdUoIuKCefvw= -k8s.io/kube-openapi v0.0.0-20211109043538-20434351676c/go.mod h1:vHXdDvt9+2spS2Rx9ql3I8tycm3H9FDfdUoIuKCefvw= -k8s.io/kube-openapi v0.0.0-20211115234752-e816edb12b65/go.mod h1:sX9MT8g7NVZM5lVL/j8QyCCJe8YSMW30QvGZWaCIDIk= -k8s.io/kube-openapi v0.0.0-20220328201542-3ee0da9b0b42/go.mod h1:Z/45zLw8lUo4wdiUkI+v/ImEGAvu3WatcZl3lPMR4Rk= -k8s.io/kubernetes v1.13.0/go.mod h1:ocZa8+6APFNC2tX1DZASIbocyYT5jHzqFVsY5aoB7Jk= -k8s.io/utils v0.0.0-20201110183641-67b214c5f920/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= -k8s.io/utils v0.0.0-20210802155522-efc7438f0176/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= -k8s.io/utils v0.0.0-20210819203725-bdf08cb9a70a/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= -k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= -k8s.io/utils v0.0.0-20211116205334-6203023598ed/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= -k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= lukechampine.com/frand v1.4.2 h1:RzFIpOvkMXuPMBb9maa4ND4wjBn71E1Jpf8BzJHMaVw= lukechampine.com/frand v1.4.2/go.mod h1:4S/TM2ZgrKejMcKMbeLjISpJMO+/eZ1zu3vYX9dtj3s= -nhooyr.io/websocket v1.8.6/go.mod h1:B70DZP8IakI65RVQ51MsWP/8jndNma26DVA/nFSCgW0= pgregory.net/rapid v0.6.1 h1:4eyrDxyht86tT4Ztm+kvlyNBLIk071gR+ZQdhphc9dQ= pgregory.net/rapid v0.6.1/go.mod h1:PY5XlDGj0+V1FCq0o192FdRhpKHGTRIWBgqjDBTrq04= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= -sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.14/go.mod h1:LEScyzhFmoF5pso/YSeBstl57mOzx9xlU9n85RGrDQg= -sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.15/go.mod h1:LEScyzhFmoF5pso/YSeBstl57mOzx9xlU9n85RGrDQg= -sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.22/go.mod h1:LEScyzhFmoF5pso/YSeBstl57mOzx9xlU9n85RGrDQg= -sigs.k8s.io/json v0.0.0-20211020170558-c049b76a60c6/go.mod h1:p4QtZmO4uMYipTQNzagwnNoseA6OxSUutVw05NhYDRs= -sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2/go.mod h1:B+TnT182UBxE84DiCz4CVE26eOSDAeYCpfDnC2kdKMY= -sigs.k8s.io/structured-merge-diff/v4 v4.0.1/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw= -sigs.k8s.io/structured-merge-diff/v4 v4.0.2/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw= -sigs.k8s.io/structured-merge-diff/v4 v4.0.3/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw= -sigs.k8s.io/structured-merge-diff/v4 v4.1.2/go.mod h1:j/nl6xW8vLS49O8YvXW1ocPhZawJtm+Yrr7PPRQ0Vg4= -sigs.k8s.io/structured-merge-diff/v4 v4.2.1/go.mod h1:j/nl6xW8vLS49O8YvXW1ocPhZawJtm+Yrr7PPRQ0Vg4= -sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= -sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc= -sigs.k8s.io/yaml v1.3.0/go.mod h1:GeOyir5tyXNByN85N/dRIT9es5UQNerPYEKK56eTBm8= -sourcegraph.com/sourcegraph/appdash v0.0.0-20190731080439-ebfcffb1b5c0/go.mod h1:hI742Nqp5OhwiqlzhgfbWU4mW4yO10fP+LoT9WOswdU= diff --git a/provider/pkg/gen/schema.go b/provider/pkg/gen/schema.go index 9f3a2bd2bc..116f5c9cb6 100644 --- a/provider/pkg/gen/schema.go +++ b/provider/pkg/gen/schema.go @@ -286,6 +286,7 @@ func PulumiSchema() (*schema.PackageSpec, *resources.CloudAPIMetadata, error) { "importBasePath": goBasePath, "packageImportAliases": golangImportAliases, "liftSingleValueMethodReturns": true, + "respectSchemaVersion": true, }) pkg.Language["nodejs"] = rawMessage(map[string]interface{}{ "dependencies": map[string]string{ @@ -296,6 +297,7 @@ programs. This provider uses the Google Cloud REST API directly and therefore pr The provider is currently in public preview and is not recommended for production deployments yet. Breaking changes will be introduced in minor version releases.`, "liftSingleValueMethodReturns": true, + "respectSchemaVersion": true, }) pkg.Language["python"] = rawMessage(map[string]interface{}{ @@ -312,6 +314,7 @@ will be introduced in minor version releases.`, "pyproject": map[string]bool{ "enabled": true, }, + "respectSchemaVersion": true, }) pkg.Language["csharp"] = rawMessage(map[string]interface{}{ @@ -320,11 +323,13 @@ will be introduced in minor version releases.`, }, "namespaces": csharpNamespaces, "liftSingleValueMethodReturns": true, + "respectSchemaVersion": true, }) pkg.Language["java"] = rawMessage(map[string]interface{}{ "packages": javaPackages, "liftSingleValueMethodReturns": true, + "respectSchemaVersion": true, }) return &pkg, &metadata, nil diff --git a/sdk/dotnet/Pulumi.GoogleNative.csproj b/sdk/dotnet/Pulumi.GoogleNative.csproj index c22911674c..4aa47572fa 100644 --- a/sdk/dotnet/Pulumi.GoogleNative.csproj +++ b/sdk/dotnet/Pulumi.GoogleNative.csproj @@ -9,6 +9,7 @@ https://pulumi.com https://github.com/pulumi/pulumi-google-native logo.png + 0.0.1-alpha.0+dev net6.0 enable diff --git a/sdk/dotnet/go.mod b/sdk/dotnet/go.mod index ba4294727f..3b19254dd8 100644 --- a/sdk/dotnet/go.mod +++ b/sdk/dotnet/go.mod @@ -1,3 +1 @@ -module fake_dotnet_module // Exclude this directory from Go tools - -go 1.17 +module fake_dotnet_module // Exclude this directory from Go tools\n\ngo 1.17 diff --git a/sdk/dotnet/pulumi-plugin.json b/sdk/dotnet/pulumi-plugin.json index b5986d128c..62865ea91e 100644 --- a/sdk/dotnet/pulumi-plugin.json +++ b/sdk/dotnet/pulumi-plugin.json @@ -1,4 +1,5 @@ { "resource": true, - "name": "google-native" + "name": "google-native", + "version": "0.0.1-alpha.0+dev" } diff --git a/sdk/go.mod b/sdk/go.mod index 58f7ffe361..af83d83be8 100644 --- a/sdk/go.mod +++ b/sdk/go.mod @@ -4,34 +4,35 @@ go 1.21 require ( github.com/blang/semver v3.5.1+incompatible - github.com/pulumi/pulumi/sdk/v3 v3.100.0 + github.com/pulumi/pulumi/sdk/v3 v3.121.0 ) require ( dario.cat/mergo v1.0.0 // indirect + github.com/BurntSushi/toml v1.2.1 // indirect github.com/Microsoft/go-winio v0.6.1 // indirect - github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 // indirect + github.com/ProtonMail/go-crypto v1.0.0 // indirect github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect github.com/agext/levenshtein v1.2.3 // indirect github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect github.com/atotto/clipboard v0.1.4 // indirect github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect github.com/charmbracelet/bubbles v0.16.1 // indirect - github.com/charmbracelet/bubbletea v0.24.2 // indirect + github.com/charmbracelet/bubbletea v0.25.0 // indirect github.com/charmbracelet/lipgloss v0.7.1 // indirect github.com/cheggaaa/pb v1.0.29 // indirect - github.com/cloudflare/circl v1.3.3 // indirect + github.com/cloudflare/circl v1.3.7 // indirect github.com/containerd/console v1.0.4-0.20230313162750-1ae8d489ac81 // indirect github.com/cyphar/filepath-securejoin v0.2.4 // indirect github.com/djherbis/times v1.5.0 // indirect github.com/emirpasic/gods v1.18.1 // indirect github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect github.com/go-git/go-billy/v5 v5.5.0 // indirect - github.com/go-git/go-git/v5 v5.11.0 // indirect + github.com/go-git/go-git/v5 v5.12.0 // indirect github.com/gogo/protobuf v1.3.2 // indirect - github.com/golang/glog v1.1.0 // indirect + github.com/golang/glog v1.2.0 // indirect github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect - github.com/golang/protobuf v1.5.3 // indirect + github.com/google/uuid v1.6.0 // indirect github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645 // indirect github.com/hashicorp/errwrap v1.1.0 // indirect github.com/hashicorp/go-multierror v1.1.1 // indirect @@ -56,13 +57,13 @@ require ( github.com/pkg/errors v0.9.1 // indirect github.com/pkg/term v1.1.0 // indirect github.com/pulumi/appdash v0.0.0-20231130102222-75f619a67231 // indirect - github.com/pulumi/esc v0.6.2 // indirect + github.com/pulumi/esc v0.9.1 // indirect github.com/rivo/uniseg v0.4.4 // indirect github.com/rogpeppe/go-internal v1.11.0 // indirect github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 // indirect github.com/santhosh-tekuri/jsonschema/v5 v5.0.0 // indirect - github.com/sergi/go-diff v1.3.1 // indirect - github.com/skeema/knownhosts v1.2.1 // indirect + github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect + github.com/skeema/knownhosts v1.2.2 // indirect github.com/spf13/cast v1.4.1 // indirect github.com/spf13/cobra v1.7.0 // indirect github.com/spf13/pflag v1.0.5 // indirect @@ -73,18 +74,18 @@ require ( github.com/xanzy/ssh-agent v0.3.3 // indirect github.com/zclconf/go-cty v1.13.2 // indirect go.uber.org/atomic v1.9.0 // indirect - golang.org/x/crypto v0.17.0 // indirect - golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect - golang.org/x/mod v0.14.0 // indirect - golang.org/x/net v0.19.0 // indirect - golang.org/x/sync v0.5.0 // indirect - golang.org/x/sys v0.15.0 // indirect - golang.org/x/term v0.15.0 // indirect - golang.org/x/text v0.14.0 // indirect - golang.org/x/tools v0.15.0 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20230706204954-ccb25ca9f130 // indirect - google.golang.org/grpc v1.57.1 // indirect - google.golang.org/protobuf v1.31.0 // indirect + golang.org/x/crypto v0.24.0 // indirect + golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8 // indirect + golang.org/x/mod v0.18.0 // indirect + golang.org/x/net v0.26.0 // indirect + golang.org/x/sync v0.7.0 // indirect + golang.org/x/sys v0.21.0 // indirect + golang.org/x/term v0.21.0 // indirect + golang.org/x/text v0.16.0 // indirect + golang.org/x/tools v0.22.0 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240227224415-6ceb2ff114de // indirect + google.golang.org/grpc v1.63.2 // indirect + google.golang.org/protobuf v1.33.0 // indirect gopkg.in/warnings.v0 v0.1.2 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect lukechampine.com/frand v1.4.2 // indirect diff --git a/sdk/go.sum b/sdk/go.sum index 371a1803a8..cad6cb9a8b 100644 --- a/sdk/go.sum +++ b/sdk/go.sum @@ -1,12 +1,14 @@ dario.cat/mergo v1.0.0 h1:AGCNq9Evsj31mOgNPcLyXc+4PNABt905YmuqPYYpBWk= dario.cat/mergo v1.0.0/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk= +github.com/BurntSushi/toml v1.2.1 h1:9F2/+DoOYIOksmaJFPw1tGFy1eDnIJXg+UHjuD8lTak= +github.com/BurntSushi/toml v1.2.1/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= github.com/HdrHistogram/hdrhistogram-go v1.1.2 h1:5IcZpTvzydCQeHzK4Ef/D5rrSqwxob0t8PQPMybUNFM= github.com/HdrHistogram/hdrhistogram-go v1.1.2/go.mod h1:yDgFjdqOqDEKOvasDdhWNXYg9BVp4O+o5f6V/ehm6Oo= github.com/Microsoft/go-winio v0.5.2/go.mod h1:WpS1mjBmmwHBEWmogvA2mj8546UReBk4v8QkMxJ6pZY= github.com/Microsoft/go-winio v0.6.1 h1:9/kr64B9VUZrLm5YYwbGtUJnMgqWVOdUAXu6Migciow= github.com/Microsoft/go-winio v0.6.1/go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM= -github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 h1:kkhsdkhsCvIsutKu5zLMgWtgh9YxGCNAw8Ad8hjwfYg= -github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371/go.mod h1:EjAoLdwvbIOoOQr3ihjnSoLZRtE8azugULFRteWMNc0= +github.com/ProtonMail/go-crypto v1.0.0 h1:LRuvITjQWX+WIfr930YHG2HNfjR1uOfyf5vE0kC2U78= +github.com/ProtonMail/go-crypto v1.0.0/go.mod h1:EjAoLdwvbIOoOQr3ihjnSoLZRtE8azugULFRteWMNc0= github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da h1:KjTM2ks9d14ZYCvmHS9iAKVt9AyzRSqNU1qabPih5BY= github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da/go.mod h1:eHEWzANqSiWQsof+nXEI9bUVUyV6F53Fp89EuCh2EAA= github.com/agext/levenshtein v1.2.3 h1:YB2fHEn0UJagG8T1rrWknE3ZQzWM06O8AMAatNn7lmo= @@ -26,14 +28,15 @@ github.com/blang/semver v3.5.1+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnweb github.com/bwesterb/go-ristretto v1.2.3/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0= github.com/charmbracelet/bubbles v0.16.1 h1:6uzpAAaT9ZqKssntbvZMlksWHruQLNxg49H5WdeuYSY= github.com/charmbracelet/bubbles v0.16.1/go.mod h1:2QCp9LFlEsBQMvIYERr7Ww2H2bA7xen1idUDIzm/+Xc= -github.com/charmbracelet/bubbletea v0.24.2 h1:uaQIKx9Ai6Gdh5zpTbGiWpytMU+CfsPp06RaW2cx/SY= -github.com/charmbracelet/bubbletea v0.24.2/go.mod h1:XdrNrV4J8GiyshTtx3DNuYkR1FDaJmO3l2nejekbsgg= +github.com/charmbracelet/bubbletea v0.25.0 h1:bAfwk7jRz7FKFl9RzlIULPkStffg5k6pNt5dywy4TcM= +github.com/charmbracelet/bubbletea v0.25.0/go.mod h1:EN3QDR1T5ZdWmdfDzYcqOCAps45+QIJbLOBxmVNWNNg= github.com/charmbracelet/lipgloss v0.7.1 h1:17WMwi7N1b1rVWOjMT+rCh7sQkvDU75B2hbZpc5Kc1E= github.com/charmbracelet/lipgloss v0.7.1/go.mod h1:yG0k3giv8Qj8edTCbbg6AlQ5e8KNWpFujkNawKNhE2c= github.com/cheggaaa/pb v1.0.29 h1:FckUN5ngEk2LpvuG0fw1GEFx6LtyY2pWI/Z2QgCnEYo= github.com/cheggaaa/pb v1.0.29/go.mod h1:W40334L7FMC5JKWldsTWbdGjLo0RxUKK73K+TuPxX30= -github.com/cloudflare/circl v1.3.3 h1:fE/Qz0QdIGqeWfnwq0RE0R7MI51s0M2E4Ga9kq5AEMs= github.com/cloudflare/circl v1.3.3/go.mod h1:5XYMA4rFBvNIrhs50XuiBJ15vF2pZn4nnUKZrLbUZFA= +github.com/cloudflare/circl v1.3.7 h1:qlCDlTPz2n9fu58M0Nh1J/JzcFpfgkFHHX3O35r5vcU= +github.com/cloudflare/circl v1.3.7/go.mod h1:sRTcRWXGLrKw6yIGJ+l7amYJFfAXbZG0kBSc8r4zxgA= github.com/containerd/console v1.0.4-0.20230313162750-1ae8d489ac81 h1:q2hJAaP1k2wIvVRd/hEHD7lacgqrCPS+k8g1MndzfWY= github.com/containerd/console v1.0.4-0.20230313162750-1ae8d489ac81/go.mod h1:YynlIjWYF8myEu6sdkwKIvGQq+cOckRm6So2avqoYAk= github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= @@ -51,29 +54,29 @@ github.com/emirpasic/gods v1.18.1/go.mod h1:8tpGGwCnJ5H4r6BWwaV6OrWmMoPhUl5jm/FM github.com/fatih/color v1.9.0/go.mod h1:eQcE1qtQxscV5RaZvpXrrb8Drkc3/DdQ+uUYCNjL+zU= github.com/fatih/color v1.13.0 h1:8LOYc1KYPPmyKMuN8QV2DNRWNbLo6LZ0iLs8+mlH53w= github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= -github.com/gliderlabs/ssh v0.3.5 h1:OcaySEmAQJgyYcArR+gGGTHCyE7nvhEMTlYY+Dp8CpY= -github.com/gliderlabs/ssh v0.3.5/go.mod h1:8XB4KraRrX39qHhT6yxPsHedjA08I/uBVwj4xC+/+z4= +github.com/gliderlabs/ssh v0.3.7 h1:iV3Bqi942d9huXnzEF2Mt+CY9gLu8DNM4Obd+8bODRE= +github.com/gliderlabs/ssh v0.3.7/go.mod h1:zpHEXBstFnQYtGnB8k8kQLol82umzn/2/snG7alWVD8= github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 h1:+zs/tPmkDkHx3U66DAb0lQFJrpS6731Oaa12ikc+DiI= github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376/go.mod h1:an3vInlBmSxCcxctByoQdvwPiA7DTK7jaaFDBTtu0ic= github.com/go-git/go-billy/v5 v5.5.0 h1:yEY4yhzCDuMGSv83oGxiBotRzhwhNr8VZyphhiu+mTU= github.com/go-git/go-billy/v5 v5.5.0/go.mod h1:hmexnoNsr2SJU1Ju67OaNz5ASJY3+sHgFRpCtpDCKow= github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399 h1:eMje31YglSBqCdIqdhKBW8lokaMrL3uTkpGYlE2OOT4= github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399/go.mod h1:1OCfN199q1Jm3HZlxleg+Dw/mwps2Wbk9frAWm+4FII= -github.com/go-git/go-git/v5 v5.11.0 h1:XIZc1p+8YzypNr34itUfSvYJcv+eYdTnTvOZ2vD3cA4= -github.com/go-git/go-git/v5 v5.11.0/go.mod h1:6GFcX2P3NM7FPBfpePbpLd21XxsgdAt+lKqXmCUiUCY= +github.com/go-git/go-git/v5 v5.12.0 h1:7Md+ndsjrzZxbddRDZjF14qK+NN56sy6wkqaVrjZtys= +github.com/go-git/go-git/v5 v5.12.0/go.mod h1:FTM9VKtnI2m65hNI/TenDDDnUf2Q9FHnXYjuz9i5OEY= github.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= -github.com/golang/glog v1.1.0 h1:/d3pCKDPWNnvIWe0vVUpNP32qc8U3PDVxySP/y360qE= -github.com/golang/glog v1.1.0/go.mod h1:pfYeQZ3JWZoXTV5sFc986z3HTpwQs9At6P4ImfuP3NQ= +github.com/golang/glog v1.2.0 h1:uCdmnmatrKCgMBlM4rMuJZWOkPDqdbZPnrMXDY4gI68= +github.com/golang/glog v1.2.0/go.mod h1:6AhwSGph0fcJtXVM/PEHPqZlFeoLxhs7/t5UDAwmO+w= github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da h1:oI5xCqsCo564l8iNU+DwB5epxmsaqB+rhGL0m5jtYqE= github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= -github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= -github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= -github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek= +github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps= github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= +github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645 h1:MJG/KsmcqMwFAkh8mTnAwhyKoB+sTAnY4CACC110tbU= github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645/go.mod h1:6iZfnjpejD4L/4DwD7NryNaJyCQdzwWwH2MWhCA90Kw= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= @@ -145,10 +148,10 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/pulumi/appdash v0.0.0-20231130102222-75f619a67231 h1:vkHw5I/plNdTr435cARxCW6q9gc0S/Yxz7Mkd38pOb0= github.com/pulumi/appdash v0.0.0-20231130102222-75f619a67231/go.mod h1:murToZ2N9hNJzewjHBgfFdXhZKjY3z5cYC1VXk+lbFE= -github.com/pulumi/esc v0.6.2 h1:+z+l8cuwIauLSwXQS0uoI3rqB+YG4SzsZYtHfNoXBvw= -github.com/pulumi/esc v0.6.2/go.mod h1:jNnYNjzsOgVTjCp0LL24NsCk8ZJxq4IoLQdCT0X7l8k= -github.com/pulumi/pulumi/sdk/v3 v3.100.0 h1:2XY5+mNxn/cpVEVx06N+gO7Ub9wDoOP0WxLvune4DJo= -github.com/pulumi/pulumi/sdk/v3 v3.100.0/go.mod h1:SB8P0BEGBRaONBxwoTjUFhGPLU5P3+MHF6/tGitlHOM= +github.com/pulumi/esc v0.9.1 h1:HH5eEv8sgyxSpY5a8yePyqFXzA8cvBvapfH8457+mIs= +github.com/pulumi/esc v0.9.1/go.mod h1:oEJ6bOsjYlQUpjf70GiX+CXn3VBmpwFDxUTlmtUN84c= +github.com/pulumi/pulumi/sdk/v3 v3.121.0 h1:UsnFKIVOtJN/hQKPkWHL9cZktewPVQRbNUXbXQY/qrk= +github.com/pulumi/pulumi/sdk/v3 v3.121.0/go.mod h1:p1U24en3zt51agx+WlNboSOV8eLlPWYAkxMzVEXKbnY= github.com/rivo/uniseg v0.1.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= github.com/rivo/uniseg v0.4.4 h1:8TfxU8dW6PdqD27gjM8MVNuicgxIjxpm4K7x4jp8sis= @@ -160,11 +163,11 @@ github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 h1:OkMGxebDj github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06/go.mod h1:+ePHsJ1keEjQtpvf9HHw0f4ZeJ0TLRsxhunSI2hYJSs= github.com/santhosh-tekuri/jsonschema/v5 v5.0.0 h1:TToq11gyfNlrMFZiYujSekIsPd9AmsA2Bj/iv+s4JHE= github.com/santhosh-tekuri/jsonschema/v5 v5.0.0/go.mod h1:FKdcjfQW6rpZSnxxUvEA5H/cDPdvJ/SZJQLWWXWGrZ0= -github.com/sergi/go-diff v1.3.1 h1:xkr+Oxo4BOQKmkn/B9eMK0g5Kg/983T9DqqPHwYqD+8= -github.com/sergi/go-diff v1.3.1/go.mod h1:aMJSSKb2lpPvRNec0+w3fl7LP9IOFzdc9Pa4NFbPK1I= +github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 h1:n661drycOFuPLCN3Uc8sB6B/s6Z4t2xvBgU1htSHuq8= +github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3/go.mod h1:A0bzQcvG0E7Rwjx0REVgAGH58e96+X0MeOfepqsbeW4= github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= -github.com/skeema/knownhosts v1.2.1 h1:SHWdIUa82uGZz+F+47k8SY4QhhI291cXCpopT1lK2AQ= -github.com/skeema/knownhosts v1.2.1/go.mod h1:xYbVRSPxqBZFrdmDyMmsOs+uX1UZC3nTN3ThzgDxUwo= +github.com/skeema/knownhosts v1.2.2 h1:Iug2P4fLmDw9f41PB6thxUkNUkJzB5i+1/exaj40L3A= +github.com/skeema/knownhosts v1.2.2/go.mod h1:xYbVRSPxqBZFrdmDyMmsOs+uX1UZC3nTN3ThzgDxUwo= github.com/spf13/cast v1.4.1 h1:s0hze+J0196ZfEMTs80N7UlFt0BDuQ7Q+JDnHiMWKdA= github.com/spf13/cast v1.4.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= github.com/spf13/cobra v1.7.0 h1:hyqWnYt1ZQShIddO5kBpj3vu05/++x6tJ6dg8EC572I= @@ -178,8 +181,8 @@ github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UV github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= -github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= +github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= +github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/texttheater/golang-levenshtein v1.0.1 h1:+cRNoVrfiwufQPhoMzB6N0Yf/Mqajr6t1lOv8GyGE2U= github.com/texttheater/golang-levenshtein v1.0.1/go.mod h1:PYAKrbF5sAiq9wd+H82hs7gNaen0CplQ9uvm6+enD/8= github.com/tweekmonster/luser v0.0.0-20161003172636-3fa38070dbd7 h1:X9dsIWPuuEJlPX//UmRKophhOKCGXc46RVIGuttks68= @@ -204,18 +207,18 @@ golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5y golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.3.1-0.20221117191849-2c476679df9a/go.mod h1:hebNnKkNXi2UzZN1eVRvBB7co0a+JxK6XbPiWVs/3J4= golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= -golang.org/x/crypto v0.17.0 h1:r8bRNjWL3GshPW3gkd+RpvzWrZAwPS49OmTGZ/uhM4k= -golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= -golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa h1:FRnLl4eNAQl8hwxVVC17teOw8kdjVDVAiFMtgUdTSRQ= -golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa/go.mod h1:zk2irFbV9DP96SEBUUAy67IdHUaZuSnrz1n472HUCLE= +golang.org/x/crypto v0.24.0 h1:mnl8DM0o513X8fdIkmyFE/5hTYxbwYOjDS/+rK6qpRI= +golang.org/x/crypto v0.24.0/go.mod h1:Z1PMYSOR5nyMcyAVAIQSKCDwalqy85Aqn1x3Ws4L5DM= +golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8 h1:LoYXNGAShUG3m/ehNk4iFctuhGX/+R1ZpfJ4/ia80JM= +golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8/go.mod h1:jj3sYF3dwk5D+ghuXyeI3r5MFf+NT2An6/9dOA95KSI= golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.14.0 h1:dGoOF9QVLYng8IHTm7BAyWqCqSheQ5pYWGhzW00YJr0= -golang.org/x/mod v0.14.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= +golang.org/x/mod v0.18.0 h1:5+9lSbEzPSdWkH32vYPBwEpX8KwDbM52Ud9xBUvNlb0= +golang.org/x/mod v0.18.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= @@ -227,15 +230,15 @@ golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY= golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= -golang.org/x/net v0.19.0 h1:zTwKpTd2XuCqf8huc7Fo2iSy+4RHPd10s4KzeTnVr1c= -golang.org/x/net v0.19.0/go.mod h1:CfAk/cbD4CthTvqiEl8NpboMuiuOYsAr/7NOjZJtv1U= +golang.org/x/net v0.26.0 h1:soB7SVo0PWrY4vPW/+ay0jKDNScG2X9wFeYlXIvJsOQ= +golang.org/x/net v0.26.0/go.mod h1:5YKkiSynbBIh3p6iOc/vibscux0x38BZDkn8sCUPxHE= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.5.0 h1:60k92dhOjHxJkrqnwsfl8KuaHbn/5dl0lUPUklKo3qE= -golang.org/x/sync v0.5.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M= +golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -256,15 +259,15 @@ golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= -golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws= +golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= -golang.org/x/term v0.15.0 h1:y/Oo/a/q3IXu26lQgl04j/gjuBDOBlx7X6Om1j2CPW4= -golang.org/x/term v0.15.0/go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0= +golang.org/x/term v0.21.0 h1:WVXCp+/EBEHOj53Rvu+7KiT/iElMrO8ACK16SMZ3jaA= +golang.org/x/term v0.21.0/go.mod h1:ooXLefLobQVslOqselCNF4SxFAaoS6KujMbsGzSDmX0= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= @@ -272,8 +275,8 @@ golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= -golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= -golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= +golang.org/x/text v0.16.0 h1:a94ExnEXNtEwYLGJSIUxnWoxoRz/ZcCsV63ROupILh4= +golang.org/x/text v0.16.0/go.mod h1:GhwF1Be+LQoKShO3cGOHzqOgRrGaYc9AvblQOmPVHnI= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= @@ -282,20 +285,18 @@ golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roY golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= -golang.org/x/tools v0.15.0 h1:zdAyfUGbYmuVokhzVmghFl2ZJh5QhcfebBgmVPFYA+8= -golang.org/x/tools v0.15.0/go.mod h1:hpksKq4dtpQWS1uQ61JkdqWM3LscIS6Slf+VVkm+wQk= +golang.org/x/tools v0.22.0 h1:gqSGLZqv+AI9lIQzniJ0nZDRG5GBPsSi+DRNHWNz6yA= +golang.org/x/tools v0.22.0/go.mod h1:aCwcsjqvq7Yqt6TNyX7QMU2enbQ/Gt0bo6krSeEri+c= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230706204954-ccb25ca9f130 h1:2FZP5XuJY9zQyGM5N0rtovnoXjiMUEIUMvw0m9wlpLc= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:8mL13HKkDa+IuJ8yruA3ci0q+0vsUz4m//+ottjwS5o= -google.golang.org/grpc v1.57.1 h1:upNTNqv0ES+2ZOOqACwVtS3Il8M12/+Hz41RCPzAjQg= -google.golang.org/grpc v1.57.1/go.mod h1:Sd+9RMTACXwmub0zcNY2c4arhtrbBYD1AUHI/dt16Mo= -google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= -google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= -google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240227224415-6ceb2ff114de h1:cZGRis4/ot9uVm639a+rHCUaG0JJHEsdyzSQTMX+suY= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240227224415-6ceb2ff114de/go.mod h1:H4O17MA/PE9BsGx3w+a+W2VOLLD1Qf7oJneAoU6WktY= +google.golang.org/grpc v1.63.2 h1:MUeiw1B2maTVZthpU5xvASfTh3LDbxHd6IJ6QQVU+xM= +google.golang.org/grpc v1.63.2/go.mod h1:WAX/8DgncnokcFUldAxq7GeB5DXHDbMF+lLvDomNkRA= +google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI= +google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= diff --git a/sdk/go/google/accesscontextmanager/v1/pulumiEnums.go b/sdk/go/google/accesscontextmanager/v1/pulumiEnums.go index b9c4b77f87..9d1b82bd32 100644 --- a/sdk/go/google/accesscontextmanager/v1/pulumiEnums.go +++ b/sdk/go/google/accesscontextmanager/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // The asset type of this authorized orgs desc. Valid values are `ASSET_TYPE_DEVICE`, and `ASSET_TYPE_CREDENTIAL_STRENGTH`. type AuthorizedOrgsDescAssetType string @@ -362,12 +355,6 @@ func (in *authorizedOrgsDescAssetTypePtr) ToAuthorizedOrgsDescAssetTypePtrOutput return pulumi.ToOutputWithContext(ctx, in).(AuthorizedOrgsDescAssetTypePtrOutput) } -func (in *authorizedOrgsDescAssetTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuthorizedOrgsDescAssetType] { - return pulumix.Output[*AuthorizedOrgsDescAssetType]{ - OutputState: in.ToAuthorizedOrgsDescAssetTypePtrOutputWithContext(ctx).OutputState, - } -} - // The direction of the authorization relationship between this organization and the organizations listed in the `orgs` field. The valid values for this field include the following: `AUTHORIZATION_DIRECTION_FROM`: Allows this organization to evaluate traffic in the organizations listed in the `orgs` field. `AUTHORIZATION_DIRECTION_TO`: Allows the organizations listed in the `orgs` field to evaluate the traffic in this organization. For the authorization relationship to take effect, all of the organizations must authorize and specify the appropriate relationship direction. For example, if organization A authorized organization B and C to evaluate its traffic, by specifying `AUTHORIZATION_DIRECTION_TO` as the authorization direction, organizations B and C must specify `AUTHORIZATION_DIRECTION_FROM` as the authorization direction in their `AuthorizedOrgsDesc` resource. type AuthorizedOrgsDescAuthorizationDirection string @@ -539,12 +526,6 @@ func (in *authorizedOrgsDescAuthorizationDirectionPtr) ToAuthorizedOrgsDescAutho return pulumi.ToOutputWithContext(ctx, in).(AuthorizedOrgsDescAuthorizationDirectionPtrOutput) } -func (in *authorizedOrgsDescAuthorizationDirectionPtr) ToOutput(ctx context.Context) pulumix.Output[*AuthorizedOrgsDescAuthorizationDirection] { - return pulumix.Output[*AuthorizedOrgsDescAuthorizationDirection]{ - OutputState: in.ToAuthorizedOrgsDescAuthorizationDirectionPtrOutputWithContext(ctx).OutputState, - } -} - // A granular control type for authorization levels. Valid value is `AUTHORIZATION_TYPE_TRUST`. type AuthorizedOrgsDescAuthorizationType string @@ -713,12 +694,6 @@ func (in *authorizedOrgsDescAuthorizationTypePtr) ToAuthorizedOrgsDescAuthorizat return pulumi.ToOutputWithContext(ctx, in).(AuthorizedOrgsDescAuthorizationTypePtrOutput) } -func (in *authorizedOrgsDescAuthorizationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuthorizedOrgsDescAuthorizationType] { - return pulumix.Output[*AuthorizedOrgsDescAuthorizationType]{ - OutputState: in.ToAuthorizedOrgsDescAuthorizationTypePtrOutputWithContext(ctx).OutputState, - } -} - // How the `conditions` list should be combined to determine if a request is granted this `AccessLevel`. If AND is used, each `Condition` in `conditions` must be satisfied for the `AccessLevel` to be applied. If OR is used, at least one `Condition` in `conditions` must be satisfied for the `AccessLevel` to be applied. Default behavior is AND. type BasicLevelCombiningFunction string @@ -887,12 +862,6 @@ func (in *basicLevelCombiningFunctionPtr) ToBasicLevelCombiningFunctionPtrOutput return pulumi.ToOutputWithContext(ctx, in).(BasicLevelCombiningFunctionPtrOutput) } -func (in *basicLevelCombiningFunctionPtr) ToOutput(ctx context.Context) pulumix.Output[*BasicLevelCombiningFunction] { - return pulumix.Output[*BasicLevelCombiningFunction]{ - OutputState: in.ToBasicLevelCombiningFunctionPtrOutputWithContext(ctx).OutputState, - } -} - type DevicePolicyAllowedDeviceManagementLevelsItem string const ( @@ -1066,12 +1035,6 @@ func (in *devicePolicyAllowedDeviceManagementLevelsItemPtr) ToDevicePolicyAllowe return pulumi.ToOutputWithContext(ctx, in).(DevicePolicyAllowedDeviceManagementLevelsItemPtrOutput) } -func (in *devicePolicyAllowedDeviceManagementLevelsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*DevicePolicyAllowedDeviceManagementLevelsItem] { - return pulumix.Output[*DevicePolicyAllowedDeviceManagementLevelsItem]{ - OutputState: in.ToDevicePolicyAllowedDeviceManagementLevelsItemPtrOutputWithContext(ctx).OutputState, - } -} - // DevicePolicyAllowedDeviceManagementLevelsItemArrayInput is an input type that accepts DevicePolicyAllowedDeviceManagementLevelsItemArray and DevicePolicyAllowedDeviceManagementLevelsItemArrayOutput values. // You can construct a concrete instance of `DevicePolicyAllowedDeviceManagementLevelsItemArrayInput` via: // @@ -1290,12 +1253,6 @@ func (in *devicePolicyAllowedEncryptionStatusesItemPtr) ToDevicePolicyAllowedEnc return pulumi.ToOutputWithContext(ctx, in).(DevicePolicyAllowedEncryptionStatusesItemPtrOutput) } -func (in *devicePolicyAllowedEncryptionStatusesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*DevicePolicyAllowedEncryptionStatusesItem] { - return pulumix.Output[*DevicePolicyAllowedEncryptionStatusesItem]{ - OutputState: in.ToDevicePolicyAllowedEncryptionStatusesItemPtrOutputWithContext(ctx).OutputState, - } -} - // DevicePolicyAllowedEncryptionStatusesItemArrayInput is an input type that accepts DevicePolicyAllowedEncryptionStatusesItemArray and DevicePolicyAllowedEncryptionStatusesItemArrayOutput values. // You can construct a concrete instance of `DevicePolicyAllowedEncryptionStatusesItemArrayInput` via: // @@ -1515,12 +1472,6 @@ func (in *egressFromIdentityTypePtr) ToEgressFromIdentityTypePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(EgressFromIdentityTypePtrOutput) } -func (in *egressFromIdentityTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EgressFromIdentityType] { - return pulumix.Output[*EgressFromIdentityType]{ - OutputState: in.ToEgressFromIdentityTypePtrOutputWithContext(ctx).OutputState, - } -} - // Whether to enforce traffic restrictions based on `sources` field. If the `sources` fields is non-empty, then this field must be set to `SOURCE_RESTRICTION_ENABLED`. type EgressFromSourceRestriction string @@ -1692,12 +1643,6 @@ func (in *egressFromSourceRestrictionPtr) ToEgressFromSourceRestrictionPtrOutput return pulumi.ToOutputWithContext(ctx, in).(EgressFromSourceRestrictionPtrOutput) } -func (in *egressFromSourceRestrictionPtr) ToOutput(ctx context.Context) pulumix.Output[*EgressFromSourceRestriction] { - return pulumix.Output[*EgressFromSourceRestriction]{ - OutputState: in.ToEgressFromSourceRestrictionPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of identities that are allowed access from outside the perimeter. If left unspecified, then members of `identities` field will be allowed access. type IngressFromIdentityType string @@ -1872,12 +1817,6 @@ func (in *ingressFromIdentityTypePtr) ToIngressFromIdentityTypePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(IngressFromIdentityTypePtrOutput) } -func (in *ingressFromIdentityTypePtr) ToOutput(ctx context.Context) pulumix.Output[*IngressFromIdentityType] { - return pulumix.Output[*IngressFromIdentityType]{ - OutputState: in.ToIngressFromIdentityTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The allowed OS type. type OsConstraintOsType string @@ -2061,12 +2000,6 @@ func (in *osConstraintOsTypePtr) ToOsConstraintOsTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(OsConstraintOsTypePtrOutput) } -func (in *osConstraintOsTypePtr) ToOutput(ctx context.Context) pulumix.Output[*OsConstraintOsType] { - return pulumix.Output[*OsConstraintOsType]{ - OutputState: in.ToOsConstraintOsTypePtrOutputWithContext(ctx).OutputState, - } -} - // Perimeter type indicator. A single project or VPC network is allowed to be a member of single regular perimeter, but multiple service perimeter bridges. A project cannot be a included in a perimeter bridge without being included in regular perimeter. For perimeter bridges, the restricted service list as well as access level lists must be empty. type ServicePerimeterPerimeterType string @@ -2235,12 +2168,6 @@ func (in *servicePerimeterPerimeterTypePtr) ToServicePerimeterPerimeterTypePtrOu return pulumi.ToOutputWithContext(ctx, in).(ServicePerimeterPerimeterTypePtrOutput) } -func (in *servicePerimeterPerimeterTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ServicePerimeterPerimeterType] { - return pulumix.Output[*ServicePerimeterPerimeterType]{ - OutputState: in.ToServicePerimeterPerimeterTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/accesscontextmanager/v1beta/pulumiEnums.go b/sdk/go/google/accesscontextmanager/v1beta/pulumiEnums.go index 67db67d072..b53afa1efc 100644 --- a/sdk/go/google/accesscontextmanager/v1beta/pulumiEnums.go +++ b/sdk/go/google/accesscontextmanager/v1beta/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // How the `conditions` list should be combined to determine if a request is granted this `AccessLevel`. If AND is used, each `Condition` in `conditions` must be satisfied for the `AccessLevel` to be applied. If OR is used, at least one `Condition` in `conditions` must be satisfied for the `AccessLevel` to be applied. Default behavior is AND. @@ -179,12 +178,6 @@ func (in *basicLevelCombiningFunctionPtr) ToBasicLevelCombiningFunctionPtrOutput return pulumi.ToOutputWithContext(ctx, in).(BasicLevelCombiningFunctionPtrOutput) } -func (in *basicLevelCombiningFunctionPtr) ToOutput(ctx context.Context) pulumix.Output[*BasicLevelCombiningFunction] { - return pulumix.Output[*BasicLevelCombiningFunction]{ - OutputState: in.ToBasicLevelCombiningFunctionPtrOutputWithContext(ctx).OutputState, - } -} - type DevicePolicyAllowedDeviceManagementLevelsItem string const ( @@ -358,12 +351,6 @@ func (in *devicePolicyAllowedDeviceManagementLevelsItemPtr) ToDevicePolicyAllowe return pulumi.ToOutputWithContext(ctx, in).(DevicePolicyAllowedDeviceManagementLevelsItemPtrOutput) } -func (in *devicePolicyAllowedDeviceManagementLevelsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*DevicePolicyAllowedDeviceManagementLevelsItem] { - return pulumix.Output[*DevicePolicyAllowedDeviceManagementLevelsItem]{ - OutputState: in.ToDevicePolicyAllowedDeviceManagementLevelsItemPtrOutputWithContext(ctx).OutputState, - } -} - // DevicePolicyAllowedDeviceManagementLevelsItemArrayInput is an input type that accepts DevicePolicyAllowedDeviceManagementLevelsItemArray and DevicePolicyAllowedDeviceManagementLevelsItemArrayOutput values. // You can construct a concrete instance of `DevicePolicyAllowedDeviceManagementLevelsItemArrayInput` via: // @@ -582,12 +569,6 @@ func (in *devicePolicyAllowedEncryptionStatusesItemPtr) ToDevicePolicyAllowedEnc return pulumi.ToOutputWithContext(ctx, in).(DevicePolicyAllowedEncryptionStatusesItemPtrOutput) } -func (in *devicePolicyAllowedEncryptionStatusesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*DevicePolicyAllowedEncryptionStatusesItem] { - return pulumix.Output[*DevicePolicyAllowedEncryptionStatusesItem]{ - OutputState: in.ToDevicePolicyAllowedEncryptionStatusesItemPtrOutputWithContext(ctx).OutputState, - } -} - // DevicePolicyAllowedEncryptionStatusesItemArrayInput is an input type that accepts DevicePolicyAllowedEncryptionStatusesItemArray and DevicePolicyAllowedEncryptionStatusesItemArrayOutput values. // You can construct a concrete instance of `DevicePolicyAllowedEncryptionStatusesItemArrayInput` via: // @@ -816,12 +797,6 @@ func (in *osConstraintOsTypePtr) ToOsConstraintOsTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(OsConstraintOsTypePtrOutput) } -func (in *osConstraintOsTypePtr) ToOutput(ctx context.Context) pulumix.Output[*OsConstraintOsType] { - return pulumix.Output[*OsConstraintOsType]{ - OutputState: in.ToOsConstraintOsTypePtrOutputWithContext(ctx).OutputState, - } -} - // Perimeter type indicator. A single project is allowed to be a member of single regular perimeter, but multiple service perimeter bridges. A project cannot be a included in a perimeter bridge without being included in regular perimeter. For perimeter bridges, restricted/unrestricted service lists as well as access lists must be empty. type ServicePerimeterPerimeterType string @@ -990,12 +965,6 @@ func (in *servicePerimeterPerimeterTypePtr) ToServicePerimeterPerimeterTypePtrOu return pulumi.ToOutputWithContext(ctx, in).(ServicePerimeterPerimeterTypePtrOutput) } -func (in *servicePerimeterPerimeterTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ServicePerimeterPerimeterType] { - return pulumix.Output[*ServicePerimeterPerimeterType]{ - OutputState: in.ToServicePerimeterPerimeterTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*BasicLevelCombiningFunctionInput)(nil)).Elem(), BasicLevelCombiningFunction("AND")) pulumi.RegisterInputType(reflect.TypeOf((*BasicLevelCombiningFunctionPtrInput)(nil)).Elem(), BasicLevelCombiningFunction("AND")) diff --git a/sdk/go/google/aiplatform/v1/pulumiEnums.go b/sdk/go/google/aiplatform/v1/pulumiEnums.go index dabd485d75..1761868d29 100644 --- a/sdk/go/google/aiplatform/v1/pulumiEnums.go +++ b/sdk/go/google/aiplatform/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The state of this Artifact. This is a property of the Artifact, and does not imply or capture any ongoing process. This property is managed by clients (such as Vertex AI Pipelines), and the system does not prescribe or check the validity of state transitions. @@ -182,12 +181,6 @@ func (in *artifactStateEnumPtr) ToArtifactStateEnumPtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(ArtifactStateEnumPtrOutput) } -func (in *artifactStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*ArtifactStateEnum] { - return pulumix.Output[*ArtifactStateEnum]{ - OutputState: in.ToArtifactStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // The state of this Execution. This is a property of the Execution, and does not imply or capture any ongoing process. This property is managed by clients (such as Vertex AI Pipelines) and the system does not prescribe or check the validity of state transitions. type ExecutionStateEnum string @@ -371,12 +364,6 @@ func (in *executionStateEnumPtr) ToExecutionStateEnumPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(ExecutionStateEnumPtrOutput) } -func (in *executionStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*ExecutionStateEnum] { - return pulumix.Output[*ExecutionStateEnum]{ - OutputState: in.ToExecutionStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. Only applicable for Vertex AI Feature Store (Legacy). Type of Feature value. type FeatureGroupFeatureValueType string @@ -569,12 +556,6 @@ func (in *featureGroupFeatureValueTypePtr) ToFeatureGroupFeatureValueTypePtrOutp return pulumi.ToOutputWithContext(ctx, in).(FeatureGroupFeatureValueTypePtrOutput) } -func (in *featureGroupFeatureValueTypePtr) ToOutput(ctx context.Context) pulumix.Output[*FeatureGroupFeatureValueType] { - return pulumix.Output[*FeatureGroupFeatureValueType]{ - OutputState: in.ToFeatureGroupFeatureValueTypePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. Only applicable for Vertex AI Feature Store (Legacy). Type of Feature value. type FeatureStoreFeatureValueType string @@ -767,12 +748,6 @@ func (in *featureStoreFeatureValueTypePtr) ToFeatureStoreFeatureValueTypePtrOutp return pulumi.ToOutputWithContext(ctx, in).(FeatureStoreFeatureValueTypePtrOutput) } -func (in *featureStoreFeatureValueTypePtr) ToOutput(ctx context.Context) pulumix.Output[*FeatureStoreFeatureValueType] { - return pulumix.Output[*FeatureStoreFeatureValueType]{ - OutputState: in.ToFeatureStoreFeatureValueTypePtrOutputWithContext(ctx).OutputState, - } -} - // The format in which instances are given, if not specified, assume it's JSONL format. Currently only JSONL format is supported. type GoogleCloudAiplatformV1ExamplesExampleGcsSourceDataFormat string @@ -941,12 +916,6 @@ func (in *googleCloudAiplatformV1ExamplesExampleGcsSourceDataFormatPtr) ToGoogle return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1ExamplesExampleGcsSourceDataFormatPtrOutput) } -func (in *googleCloudAiplatformV1ExamplesExampleGcsSourceDataFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1ExamplesExampleGcsSourceDataFormat] { - return pulumix.Output[*GoogleCloudAiplatformV1ExamplesExampleGcsSourceDataFormat]{ - OutputState: in.ToGoogleCloudAiplatformV1ExamplesExampleGcsSourceDataFormatPtrOutputWithContext(ctx).OutputState, - } -} - // The baseline used to do anomaly detection for the statistics generated by import features analysis. type GoogleCloudAiplatformV1FeaturestoreMonitoringConfigImportFeaturesAnalysisAnomalyDetectionBaseline string @@ -1121,12 +1090,6 @@ func (in *googleCloudAiplatformV1FeaturestoreMonitoringConfigImportFeaturesAnaly return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1FeaturestoreMonitoringConfigImportFeaturesAnalysisAnomalyDetectionBaselinePtrOutput) } -func (in *googleCloudAiplatformV1FeaturestoreMonitoringConfigImportFeaturesAnalysisAnomalyDetectionBaselinePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1FeaturestoreMonitoringConfigImportFeaturesAnalysisAnomalyDetectionBaseline] { - return pulumix.Output[*GoogleCloudAiplatformV1FeaturestoreMonitoringConfigImportFeaturesAnalysisAnomalyDetectionBaseline]{ - OutputState: in.ToGoogleCloudAiplatformV1FeaturestoreMonitoringConfigImportFeaturesAnalysisAnomalyDetectionBaselinePtrOutputWithContext(ctx).OutputState, - } -} - // Whether to enable / disable / inherite default hebavior for import features analysis. type GoogleCloudAiplatformV1FeaturestoreMonitoringConfigImportFeaturesAnalysisState string @@ -1301,12 +1264,6 @@ func (in *googleCloudAiplatformV1FeaturestoreMonitoringConfigImportFeaturesAnaly return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1FeaturestoreMonitoringConfigImportFeaturesAnalysisStatePtrOutput) } -func (in *googleCloudAiplatformV1FeaturestoreMonitoringConfigImportFeaturesAnalysisStatePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1FeaturestoreMonitoringConfigImportFeaturesAnalysisState] { - return pulumix.Output[*GoogleCloudAiplatformV1FeaturestoreMonitoringConfigImportFeaturesAnalysisState]{ - OutputState: in.ToGoogleCloudAiplatformV1FeaturestoreMonitoringConfigImportFeaturesAnalysisStatePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The type of accelerator(s) that may be attached to the machine as per accelerator_count. type GoogleCloudAiplatformV1MachineSpecAcceleratorType string @@ -1505,12 +1462,6 @@ func (in *googleCloudAiplatformV1MachineSpecAcceleratorTypePtr) ToGoogleCloudAip return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1MachineSpecAcceleratorTypePtrOutput) } -func (in *googleCloudAiplatformV1MachineSpecAcceleratorTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1MachineSpecAcceleratorType] { - return pulumix.Output[*GoogleCloudAiplatformV1MachineSpecAcceleratorType]{ - OutputState: in.ToGoogleCloudAiplatformV1MachineSpecAcceleratorTypePtrOutputWithContext(ctx).OutputState, - } -} - // The storage format of the predictions generated BatchPrediction job. type GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigExplanationConfigExplanationBaselinePredictionFormat string @@ -1682,12 +1633,6 @@ func (in *googleCloudAiplatformV1ModelMonitoringObjectiveConfigExplanationConfig return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigExplanationConfigExplanationBaselinePredictionFormatPtrOutput) } -func (in *googleCloudAiplatformV1ModelMonitoringObjectiveConfigExplanationConfigExplanationBaselinePredictionFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigExplanationConfigExplanationBaselinePredictionFormat] { - return pulumix.Output[*GoogleCloudAiplatformV1ModelMonitoringObjectiveConfigExplanationConfigExplanationBaselinePredictionFormat]{ - OutputState: in.ToGoogleCloudAiplatformV1ModelMonitoringObjectiveConfigExplanationConfigExplanationBaselinePredictionFormatPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The optimization goal of the metric. type GoogleCloudAiplatformV1NasJobSpecMultiTrialAlgorithmSpecMetricSpecGoal string @@ -1859,12 +1804,6 @@ func (in *googleCloudAiplatformV1NasJobSpecMultiTrialAlgorithmSpecMetricSpecGoal return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1NasJobSpecMultiTrialAlgorithmSpecMetricSpecGoalPtrOutput) } -func (in *googleCloudAiplatformV1NasJobSpecMultiTrialAlgorithmSpecMetricSpecGoalPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1NasJobSpecMultiTrialAlgorithmSpecMetricSpecGoal] { - return pulumix.Output[*GoogleCloudAiplatformV1NasJobSpecMultiTrialAlgorithmSpecMetricSpecGoal]{ - OutputState: in.ToGoogleCloudAiplatformV1NasJobSpecMultiTrialAlgorithmSpecMetricSpecGoalPtrOutputWithContext(ctx).OutputState, - } -} - // The multi-trial Neural Architecture Search (NAS) algorithm type. Defaults to `REINFORCEMENT_LEARNING`. type GoogleCloudAiplatformV1NasJobSpecMultiTrialAlgorithmSpecMultiTrialAlgorithm string @@ -2036,12 +1975,6 @@ func (in *googleCloudAiplatformV1NasJobSpecMultiTrialAlgorithmSpecMultiTrialAlgo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1NasJobSpecMultiTrialAlgorithmSpecMultiTrialAlgorithmPtrOutput) } -func (in *googleCloudAiplatformV1NasJobSpecMultiTrialAlgorithmSpecMultiTrialAlgorithmPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1NasJobSpecMultiTrialAlgorithmSpecMultiTrialAlgorithm] { - return pulumix.Output[*GoogleCloudAiplatformV1NasJobSpecMultiTrialAlgorithmSpecMultiTrialAlgorithm]{ - OutputState: in.ToGoogleCloudAiplatformV1NasJobSpecMultiTrialAlgorithmSpecMultiTrialAlgorithmPtrOutputWithContext(ctx).OutputState, - } -} - // Represents the failure policy of a pipeline. Currently, the default of a pipeline is that the pipeline will continue to run until no more tasks can be executed, also known as PIPELINE_FAILURE_POLICY_FAIL_SLOW. However, if a pipeline is set to PIPELINE_FAILURE_POLICY_FAIL_FAST, it will stop scheduling any new tasks when a task has failed. Any scheduled tasks will continue to completion. type GoogleCloudAiplatformV1PipelineJobRuntimeConfigFailurePolicy string @@ -2213,12 +2146,6 @@ func (in *googleCloudAiplatformV1PipelineJobRuntimeConfigFailurePolicyPtr) ToGoo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1PipelineJobRuntimeConfigFailurePolicyPtrOutput) } -func (in *googleCloudAiplatformV1PipelineJobRuntimeConfigFailurePolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1PipelineJobRuntimeConfigFailurePolicy] { - return pulumix.Output[*GoogleCloudAiplatformV1PipelineJobRuntimeConfigFailurePolicy]{ - OutputState: in.ToGoogleCloudAiplatformV1PipelineJobRuntimeConfigFailurePolicyPtrOutputWithContext(ctx).OutputState, - } -} - // The modality of the uploaded model, which automatically configures the distance measurement and feature normalization for the underlying example index and queries. If your model does not precisely fit one of these types, it is okay to choose the closest type. type GoogleCloudAiplatformV1PresetsModality string @@ -2393,12 +2320,6 @@ func (in *googleCloudAiplatformV1PresetsModalityPtr) ToGoogleCloudAiplatformV1Pr return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1PresetsModalityPtrOutput) } -func (in *googleCloudAiplatformV1PresetsModalityPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1PresetsModality] { - return pulumix.Output[*GoogleCloudAiplatformV1PresetsModality]{ - OutputState: in.ToGoogleCloudAiplatformV1PresetsModalityPtrOutputWithContext(ctx).OutputState, - } -} - // Preset option controlling parameters for speed-precision trade-off when querying for examples. If omitted, defaults to `PRECISE`. type GoogleCloudAiplatformV1PresetsQuery string @@ -2567,12 +2488,6 @@ func (in *googleCloudAiplatformV1PresetsQueryPtr) ToGoogleCloudAiplatformV1Prese return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1PresetsQueryPtrOutput) } -func (in *googleCloudAiplatformV1PresetsQueryPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1PresetsQuery] { - return pulumix.Output[*GoogleCloudAiplatformV1PresetsQuery]{ - OutputState: in.ToGoogleCloudAiplatformV1PresetsQueryPtrOutputWithContext(ctx).OutputState, - } -} - // Field to choose sampling strategy. Sampling strategy will decide which data should be selected for human labeling in every batch. type GoogleCloudAiplatformV1SampleConfigSampleStrategy string @@ -2741,12 +2656,6 @@ func (in *googleCloudAiplatformV1SampleConfigSampleStrategyPtr) ToGoogleCloudAip return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1SampleConfigSampleStrategyPtrOutput) } -func (in *googleCloudAiplatformV1SampleConfigSampleStrategyPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1SampleConfigSampleStrategy] { - return pulumix.Output[*GoogleCloudAiplatformV1SampleConfigSampleStrategy]{ - OutputState: in.ToGoogleCloudAiplatformV1SampleConfigSampleStrategyPtrOutputWithContext(ctx).OutputState, - } -} - // The search algorithm specified for the Study. type GoogleCloudAiplatformV1StudySpecAlgorithm string @@ -2918,12 +2827,6 @@ func (in *googleCloudAiplatformV1StudySpecAlgorithmPtr) ToGoogleCloudAiplatformV return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1StudySpecAlgorithmPtrOutput) } -func (in *googleCloudAiplatformV1StudySpecAlgorithmPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1StudySpecAlgorithm] { - return pulumix.Output[*GoogleCloudAiplatformV1StudySpecAlgorithm]{ - OutputState: in.ToGoogleCloudAiplatformV1StudySpecAlgorithmPtrOutputWithContext(ctx).OutputState, - } -} - // Describe which measurement selection type will be used type GoogleCloudAiplatformV1StudySpecMeasurementSelectionType string @@ -3095,12 +2998,6 @@ func (in *googleCloudAiplatformV1StudySpecMeasurementSelectionTypePtr) ToGoogleC return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1StudySpecMeasurementSelectionTypePtrOutput) } -func (in *googleCloudAiplatformV1StudySpecMeasurementSelectionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1StudySpecMeasurementSelectionType] { - return pulumix.Output[*GoogleCloudAiplatformV1StudySpecMeasurementSelectionType]{ - OutputState: in.ToGoogleCloudAiplatformV1StudySpecMeasurementSelectionTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The optimization goal of the metric. type GoogleCloudAiplatformV1StudySpecMetricSpecGoal string @@ -3272,12 +3169,6 @@ func (in *googleCloudAiplatformV1StudySpecMetricSpecGoalPtr) ToGoogleCloudAiplat return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1StudySpecMetricSpecGoalPtrOutput) } -func (in *googleCloudAiplatformV1StudySpecMetricSpecGoalPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1StudySpecMetricSpecGoal] { - return pulumix.Output[*GoogleCloudAiplatformV1StudySpecMetricSpecGoal]{ - OutputState: in.ToGoogleCloudAiplatformV1StudySpecMetricSpecGoalPtrOutputWithContext(ctx).OutputState, - } -} - // The observation noise level of the study. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. type GoogleCloudAiplatformV1StudySpecObservationNoise string @@ -3449,12 +3340,6 @@ func (in *googleCloudAiplatformV1StudySpecObservationNoisePtr) ToGoogleCloudAipl return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1StudySpecObservationNoisePtrOutput) } -func (in *googleCloudAiplatformV1StudySpecObservationNoisePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1StudySpecObservationNoise] { - return pulumix.Output[*GoogleCloudAiplatformV1StudySpecObservationNoise]{ - OutputState: in.ToGoogleCloudAiplatformV1StudySpecObservationNoisePtrOutputWithContext(ctx).OutputState, - } -} - // How the parameter should be scaled. Leave unset for `CATEGORICAL` parameters. type GoogleCloudAiplatformV1StudySpecParameterSpecScaleType string @@ -3629,12 +3514,6 @@ func (in *googleCloudAiplatformV1StudySpecParameterSpecScaleTypePtr) ToGoogleClo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1StudySpecParameterSpecScaleTypePtrOutput) } -func (in *googleCloudAiplatformV1StudySpecParameterSpecScaleTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1StudySpecParameterSpecScaleType] { - return pulumix.Output[*GoogleCloudAiplatformV1StudySpecParameterSpecScaleType]{ - OutputState: in.ToGoogleCloudAiplatformV1StudySpecParameterSpecScaleTypePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The update method to use with this Index. If not set, BATCH_UPDATE will be used by default. type IndexIndexUpdateMethod string @@ -3806,12 +3685,6 @@ func (in *indexIndexUpdateMethodPtr) ToIndexIndexUpdateMethodPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(IndexIndexUpdateMethodPtrOutput) } -func (in *indexIndexUpdateMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*IndexIndexUpdateMethod] { - return pulumix.Output[*IndexIndexUpdateMethod]{ - OutputState: in.ToIndexIndexUpdateMethodPtrOutputWithContext(ctx).OutputState, - } -} - // The type of the MetadataSchema. This is a property that identifies which metadata types will use the MetadataSchema. type MetadataSchemaSchemaType string @@ -3986,12 +3859,6 @@ func (in *metadataSchemaSchemaTypePtr) ToMetadataSchemaSchemaTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(MetadataSchemaSchemaTypePtrOutput) } -func (in *metadataSchemaSchemaTypePtr) ToOutput(ctx context.Context) pulumix.Output[*MetadataSchemaSchemaType] { - return pulumix.Output[*MetadataSchemaSchemaType]{ - OutputState: in.ToMetadataSchemaSchemaTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Immutable. The type of the notebook runtime template. type NotebookRuntimeTemplateNotebookRuntimeType string @@ -4163,12 +4030,6 @@ func (in *notebookRuntimeTemplateNotebookRuntimeTypePtr) ToNotebookRuntimeTempla return pulumi.ToOutputWithContext(ctx, in).(NotebookRuntimeTemplateNotebookRuntimeTypePtrOutput) } -func (in *notebookRuntimeTemplateNotebookRuntimeTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NotebookRuntimeTemplateNotebookRuntimeType] { - return pulumix.Output[*NotebookRuntimeTemplateNotebookRuntimeType]{ - OutputState: in.ToNotebookRuntimeTemplateNotebookRuntimeTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Immutable. Type of TensorboardTimeSeries value. type TimeSeriesValueType string @@ -4343,12 +4204,6 @@ func (in *timeSeriesValueTypePtr) ToTimeSeriesValueTypePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(TimeSeriesValueTypePtrOutput) } -func (in *timeSeriesValueTypePtr) ToOutput(ctx context.Context) pulumix.Output[*TimeSeriesValueType] { - return pulumix.Output[*TimeSeriesValueType]{ - OutputState: in.ToTimeSeriesValueTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ArtifactStateEnumInput)(nil)).Elem(), ArtifactStateEnum("STATE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*ArtifactStateEnumPtrInput)(nil)).Elem(), ArtifactStateEnum("STATE_UNSPECIFIED")) diff --git a/sdk/go/google/aiplatform/v1beta1/pulumiEnums.go b/sdk/go/google/aiplatform/v1beta1/pulumiEnums.go index f2026f9ef9..650e79e6cb 100644 --- a/sdk/go/google/aiplatform/v1beta1/pulumiEnums.go +++ b/sdk/go/google/aiplatform/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The state of this Artifact. This is a property of the Artifact, and does not imply or capture any ongoing process. This property is managed by clients (such as Vertex AI Pipelines), and the system does not prescribe or check the validity of state transitions. @@ -182,12 +181,6 @@ func (in *artifactStateEnumPtr) ToArtifactStateEnumPtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(ArtifactStateEnumPtrOutput) } -func (in *artifactStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*ArtifactStateEnum] { - return pulumix.Output[*ArtifactStateEnum]{ - OutputState: in.ToArtifactStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // The state of this Execution. This is a property of the Execution, and does not imply or capture any ongoing process. This property is managed by clients (such as Vertex AI Pipelines) and the system does not prescribe or check the validity of state transitions. type ExecutionStateEnum string @@ -371,12 +364,6 @@ func (in *executionStateEnumPtr) ToExecutionStateEnumPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(ExecutionStateEnumPtrOutput) } -func (in *executionStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*ExecutionStateEnum] { - return pulumix.Output[*ExecutionStateEnum]{ - OutputState: in.ToExecutionStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. Only applicable for Vertex AI Feature Store (Legacy). Type of Feature value. type FeatureGroupFeatureValueType string @@ -569,12 +556,6 @@ func (in *featureGroupFeatureValueTypePtr) ToFeatureGroupFeatureValueTypePtrOutp return pulumi.ToOutputWithContext(ctx, in).(FeatureGroupFeatureValueTypePtrOutput) } -func (in *featureGroupFeatureValueTypePtr) ToOutput(ctx context.Context) pulumix.Output[*FeatureGroupFeatureValueType] { - return pulumix.Output[*FeatureGroupFeatureValueType]{ - OutputState: in.ToFeatureGroupFeatureValueTypePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. Only applicable for Vertex AI Feature Store (Legacy). Type of Feature value. type FeatureStoreFeatureValueType string @@ -767,12 +748,6 @@ func (in *featureStoreFeatureValueTypePtr) ToFeatureStoreFeatureValueTypePtrOutp return pulumi.ToOutputWithContext(ctx, in).(FeatureStoreFeatureValueTypePtrOutput) } -func (in *featureStoreFeatureValueTypePtr) ToOutput(ctx context.Context) pulumix.Output[*FeatureStoreFeatureValueType] { - return pulumix.Output[*FeatureStoreFeatureValueType]{ - OutputState: in.ToFeatureStoreFeatureValueTypePtrOutputWithContext(ctx).OutputState, - } -} - // The format in which instances are given, if not specified, assume it's JSONL format. Currently only JSONL format is supported. type GoogleCloudAiplatformV1beta1ExamplesExampleGcsSourceDataFormat string @@ -941,12 +916,6 @@ func (in *googleCloudAiplatformV1beta1ExamplesExampleGcsSourceDataFormatPtr) ToG return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1beta1ExamplesExampleGcsSourceDataFormatPtrOutput) } -func (in *googleCloudAiplatformV1beta1ExamplesExampleGcsSourceDataFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1beta1ExamplesExampleGcsSourceDataFormat] { - return pulumix.Output[*GoogleCloudAiplatformV1beta1ExamplesExampleGcsSourceDataFormat]{ - OutputState: in.ToGoogleCloudAiplatformV1beta1ExamplesExampleGcsSourceDataFormatPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The distance measure used in nearest neighbor search. type GoogleCloudAiplatformV1beta1FeatureViewVectorSearchConfigDistanceMeasureType string @@ -1121,12 +1090,6 @@ func (in *googleCloudAiplatformV1beta1FeatureViewVectorSearchConfigDistanceMeasu return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1beta1FeatureViewVectorSearchConfigDistanceMeasureTypePtrOutput) } -func (in *googleCloudAiplatformV1beta1FeatureViewVectorSearchConfigDistanceMeasureTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1beta1FeatureViewVectorSearchConfigDistanceMeasureType] { - return pulumix.Output[*GoogleCloudAiplatformV1beta1FeatureViewVectorSearchConfigDistanceMeasureType]{ - OutputState: in.ToGoogleCloudAiplatformV1beta1FeatureViewVectorSearchConfigDistanceMeasureTypePtrOutputWithContext(ctx).OutputState, - } -} - // The baseline used to do anomaly detection for the statistics generated by import features analysis. type GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfigImportFeaturesAnalysisAnomalyDetectionBaseline string @@ -1301,12 +1264,6 @@ func (in *googleCloudAiplatformV1beta1FeaturestoreMonitoringConfigImportFeatures return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfigImportFeaturesAnalysisAnomalyDetectionBaselinePtrOutput) } -func (in *googleCloudAiplatformV1beta1FeaturestoreMonitoringConfigImportFeaturesAnalysisAnomalyDetectionBaselinePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfigImportFeaturesAnalysisAnomalyDetectionBaseline] { - return pulumix.Output[*GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfigImportFeaturesAnalysisAnomalyDetectionBaseline]{ - OutputState: in.ToGoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfigImportFeaturesAnalysisAnomalyDetectionBaselinePtrOutputWithContext(ctx).OutputState, - } -} - // Whether to enable / disable / inherite default hebavior for import features analysis. type GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfigImportFeaturesAnalysisState string @@ -1481,12 +1438,6 @@ func (in *googleCloudAiplatformV1beta1FeaturestoreMonitoringConfigImportFeatures return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfigImportFeaturesAnalysisStatePtrOutput) } -func (in *googleCloudAiplatformV1beta1FeaturestoreMonitoringConfigImportFeaturesAnalysisStatePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfigImportFeaturesAnalysisState] { - return pulumix.Output[*GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfigImportFeaturesAnalysisState]{ - OutputState: in.ToGoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfigImportFeaturesAnalysisStatePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The type of accelerator(s) that may be attached to the machine as per accelerator_count. type GoogleCloudAiplatformV1beta1MachineSpecAcceleratorType string @@ -1691,12 +1642,6 @@ func (in *googleCloudAiplatformV1beta1MachineSpecAcceleratorTypePtr) ToGoogleClo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1beta1MachineSpecAcceleratorTypePtrOutput) } -func (in *googleCloudAiplatformV1beta1MachineSpecAcceleratorTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1beta1MachineSpecAcceleratorType] { - return pulumix.Output[*GoogleCloudAiplatformV1beta1MachineSpecAcceleratorType]{ - OutputState: in.ToGoogleCloudAiplatformV1beta1MachineSpecAcceleratorTypePtrOutputWithContext(ctx).OutputState, - } -} - // The storage format of the predictions generated BatchPrediction job. type GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveConfigExplanationConfigExplanationBaselinePredictionFormat string @@ -1868,12 +1813,6 @@ func (in *googleCloudAiplatformV1beta1ModelMonitoringObjectiveConfigExplanationC return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveConfigExplanationConfigExplanationBaselinePredictionFormatPtrOutput) } -func (in *googleCloudAiplatformV1beta1ModelMonitoringObjectiveConfigExplanationConfigExplanationBaselinePredictionFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveConfigExplanationConfigExplanationBaselinePredictionFormat] { - return pulumix.Output[*GoogleCloudAiplatformV1beta1ModelMonitoringObjectiveConfigExplanationConfigExplanationBaselinePredictionFormat]{ - OutputState: in.ToGoogleCloudAiplatformV1beta1ModelMonitoringObjectiveConfigExplanationConfigExplanationBaselinePredictionFormatPtrOutputWithContext(ctx).OutputState, - } -} - // Model Monitoring Objective those stats and anomalies belonging to. type GoogleCloudAiplatformV1beta1ModelMonitoringStatsAnomaliesObjective string @@ -2051,12 +1990,6 @@ func (in *googleCloudAiplatformV1beta1ModelMonitoringStatsAnomaliesObjectivePtr) return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1beta1ModelMonitoringStatsAnomaliesObjectivePtrOutput) } -func (in *googleCloudAiplatformV1beta1ModelMonitoringStatsAnomaliesObjectivePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1beta1ModelMonitoringStatsAnomaliesObjective] { - return pulumix.Output[*GoogleCloudAiplatformV1beta1ModelMonitoringStatsAnomaliesObjective]{ - OutputState: in.ToGoogleCloudAiplatformV1beta1ModelMonitoringStatsAnomaliesObjectivePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The optimization goal of the metric. type GoogleCloudAiplatformV1beta1NasJobSpecMultiTrialAlgorithmSpecMetricSpecGoal string @@ -2228,12 +2161,6 @@ func (in *googleCloudAiplatformV1beta1NasJobSpecMultiTrialAlgorithmSpecMetricSpe return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1beta1NasJobSpecMultiTrialAlgorithmSpecMetricSpecGoalPtrOutput) } -func (in *googleCloudAiplatformV1beta1NasJobSpecMultiTrialAlgorithmSpecMetricSpecGoalPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1beta1NasJobSpecMultiTrialAlgorithmSpecMetricSpecGoal] { - return pulumix.Output[*GoogleCloudAiplatformV1beta1NasJobSpecMultiTrialAlgorithmSpecMetricSpecGoal]{ - OutputState: in.ToGoogleCloudAiplatformV1beta1NasJobSpecMultiTrialAlgorithmSpecMetricSpecGoalPtrOutputWithContext(ctx).OutputState, - } -} - // The multi-trial Neural Architecture Search (NAS) algorithm type. Defaults to `REINFORCEMENT_LEARNING`. type GoogleCloudAiplatformV1beta1NasJobSpecMultiTrialAlgorithmSpecMultiTrialAlgorithm string @@ -2405,12 +2332,6 @@ func (in *googleCloudAiplatformV1beta1NasJobSpecMultiTrialAlgorithmSpecMultiTria return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1beta1NasJobSpecMultiTrialAlgorithmSpecMultiTrialAlgorithmPtrOutput) } -func (in *googleCloudAiplatformV1beta1NasJobSpecMultiTrialAlgorithmSpecMultiTrialAlgorithmPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1beta1NasJobSpecMultiTrialAlgorithmSpecMultiTrialAlgorithm] { - return pulumix.Output[*GoogleCloudAiplatformV1beta1NasJobSpecMultiTrialAlgorithmSpecMultiTrialAlgorithm]{ - OutputState: in.ToGoogleCloudAiplatformV1beta1NasJobSpecMultiTrialAlgorithmSpecMultiTrialAlgorithmPtrOutputWithContext(ctx).OutputState, - } -} - // Represents the failure policy of a pipeline. Currently, the default of a pipeline is that the pipeline will continue to run until no more tasks can be executed, also known as PIPELINE_FAILURE_POLICY_FAIL_SLOW. However, if a pipeline is set to PIPELINE_FAILURE_POLICY_FAIL_FAST, it will stop scheduling any new tasks when a task has failed. Any scheduled tasks will continue to completion. type GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfigFailurePolicy string @@ -2582,12 +2503,6 @@ func (in *googleCloudAiplatformV1beta1PipelineJobRuntimeConfigFailurePolicyPtr) return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfigFailurePolicyPtrOutput) } -func (in *googleCloudAiplatformV1beta1PipelineJobRuntimeConfigFailurePolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfigFailurePolicy] { - return pulumix.Output[*GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfigFailurePolicy]{ - OutputState: in.ToGoogleCloudAiplatformV1beta1PipelineJobRuntimeConfigFailurePolicyPtrOutputWithContext(ctx).OutputState, - } -} - // The modality of the uploaded model, which automatically configures the distance measurement and feature normalization for the underlying example index and queries. If your model does not precisely fit one of these types, it is okay to choose the closest type. type GoogleCloudAiplatformV1beta1PresetsModality string @@ -2762,12 +2677,6 @@ func (in *googleCloudAiplatformV1beta1PresetsModalityPtr) ToGoogleCloudAiplatfor return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1beta1PresetsModalityPtrOutput) } -func (in *googleCloudAiplatformV1beta1PresetsModalityPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1beta1PresetsModality] { - return pulumix.Output[*GoogleCloudAiplatformV1beta1PresetsModality]{ - OutputState: in.ToGoogleCloudAiplatformV1beta1PresetsModalityPtrOutputWithContext(ctx).OutputState, - } -} - // Preset option controlling parameters for speed-precision trade-off when querying for examples. If omitted, defaults to `PRECISE`. type GoogleCloudAiplatformV1beta1PresetsQuery string @@ -2936,12 +2845,6 @@ func (in *googleCloudAiplatformV1beta1PresetsQueryPtr) ToGoogleCloudAiplatformV1 return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1beta1PresetsQueryPtrOutput) } -func (in *googleCloudAiplatformV1beta1PresetsQueryPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1beta1PresetsQuery] { - return pulumix.Output[*GoogleCloudAiplatformV1beta1PresetsQuery]{ - OutputState: in.ToGoogleCloudAiplatformV1beta1PresetsQueryPtrOutputWithContext(ctx).OutputState, - } -} - // Field to choose sampling strategy. Sampling strategy will decide which data should be selected for human labeling in every batch. type GoogleCloudAiplatformV1beta1SampleConfigSampleStrategy string @@ -3110,12 +3013,6 @@ func (in *googleCloudAiplatformV1beta1SampleConfigSampleStrategyPtr) ToGoogleClo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1beta1SampleConfigSampleStrategyPtrOutput) } -func (in *googleCloudAiplatformV1beta1SampleConfigSampleStrategyPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1beta1SampleConfigSampleStrategy] { - return pulumix.Output[*GoogleCloudAiplatformV1beta1SampleConfigSampleStrategy]{ - OutputState: in.ToGoogleCloudAiplatformV1beta1SampleConfigSampleStrategyPtrOutputWithContext(ctx).OutputState, - } -} - // The search algorithm specified for the Study. type GoogleCloudAiplatformV1beta1StudySpecAlgorithm string @@ -3287,12 +3184,6 @@ func (in *googleCloudAiplatformV1beta1StudySpecAlgorithmPtr) ToGoogleCloudAiplat return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1beta1StudySpecAlgorithmPtrOutput) } -func (in *googleCloudAiplatformV1beta1StudySpecAlgorithmPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1beta1StudySpecAlgorithm] { - return pulumix.Output[*GoogleCloudAiplatformV1beta1StudySpecAlgorithm]{ - OutputState: in.ToGoogleCloudAiplatformV1beta1StudySpecAlgorithmPtrOutputWithContext(ctx).OutputState, - } -} - // Describe which measurement selection type will be used type GoogleCloudAiplatformV1beta1StudySpecMeasurementSelectionType string @@ -3464,12 +3355,6 @@ func (in *googleCloudAiplatformV1beta1StudySpecMeasurementSelectionTypePtr) ToGo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1beta1StudySpecMeasurementSelectionTypePtrOutput) } -func (in *googleCloudAiplatformV1beta1StudySpecMeasurementSelectionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1beta1StudySpecMeasurementSelectionType] { - return pulumix.Output[*GoogleCloudAiplatformV1beta1StudySpecMeasurementSelectionType]{ - OutputState: in.ToGoogleCloudAiplatformV1beta1StudySpecMeasurementSelectionTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The optimization goal of the metric. type GoogleCloudAiplatformV1beta1StudySpecMetricSpecGoal string @@ -3641,12 +3526,6 @@ func (in *googleCloudAiplatformV1beta1StudySpecMetricSpecGoalPtr) ToGoogleCloudA return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1beta1StudySpecMetricSpecGoalPtrOutput) } -func (in *googleCloudAiplatformV1beta1StudySpecMetricSpecGoalPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1beta1StudySpecMetricSpecGoal] { - return pulumix.Output[*GoogleCloudAiplatformV1beta1StudySpecMetricSpecGoal]{ - OutputState: in.ToGoogleCloudAiplatformV1beta1StudySpecMetricSpecGoalPtrOutputWithContext(ctx).OutputState, - } -} - // The observation noise level of the study. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline. type GoogleCloudAiplatformV1beta1StudySpecObservationNoise string @@ -3818,12 +3697,6 @@ func (in *googleCloudAiplatformV1beta1StudySpecObservationNoisePtr) ToGoogleClou return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1beta1StudySpecObservationNoisePtrOutput) } -func (in *googleCloudAiplatformV1beta1StudySpecObservationNoisePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1beta1StudySpecObservationNoise] { - return pulumix.Output[*GoogleCloudAiplatformV1beta1StudySpecObservationNoise]{ - OutputState: in.ToGoogleCloudAiplatformV1beta1StudySpecObservationNoisePtrOutputWithContext(ctx).OutputState, - } -} - // How the parameter should be scaled. Leave unset for `CATEGORICAL` parameters. type GoogleCloudAiplatformV1beta1StudySpecParameterSpecScaleType string @@ -3998,12 +3871,6 @@ func (in *googleCloudAiplatformV1beta1StudySpecParameterSpecScaleTypePtr) ToGoog return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAiplatformV1beta1StudySpecParameterSpecScaleTypePtrOutput) } -func (in *googleCloudAiplatformV1beta1StudySpecParameterSpecScaleTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAiplatformV1beta1StudySpecParameterSpecScaleType] { - return pulumix.Output[*GoogleCloudAiplatformV1beta1StudySpecParameterSpecScaleType]{ - OutputState: in.ToGoogleCloudAiplatformV1beta1StudySpecParameterSpecScaleTypePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The update method to use with this Index. If not set, BATCH_UPDATE will be used by default. type IndexIndexUpdateMethod string @@ -4175,12 +4042,6 @@ func (in *indexIndexUpdateMethodPtr) ToIndexIndexUpdateMethodPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(IndexIndexUpdateMethodPtrOutput) } -func (in *indexIndexUpdateMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*IndexIndexUpdateMethod] { - return pulumix.Output[*IndexIndexUpdateMethod]{ - OutputState: in.ToIndexIndexUpdateMethodPtrOutputWithContext(ctx).OutputState, - } -} - // The type of the MetadataSchema. This is a property that identifies which metadata types will use the MetadataSchema. type MetadataSchemaSchemaType string @@ -4355,12 +4216,6 @@ func (in *metadataSchemaSchemaTypePtr) ToMetadataSchemaSchemaTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(MetadataSchemaSchemaTypePtrOutput) } -func (in *metadataSchemaSchemaTypePtr) ToOutput(ctx context.Context) pulumix.Output[*MetadataSchemaSchemaType] { - return pulumix.Output[*MetadataSchemaSchemaType]{ - OutputState: in.ToMetadataSchemaSchemaTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Immutable. The type of the notebook runtime template. type NotebookRuntimeTemplateNotebookRuntimeType string @@ -4532,12 +4387,6 @@ func (in *notebookRuntimeTemplateNotebookRuntimeTypePtr) ToNotebookRuntimeTempla return pulumi.ToOutputWithContext(ctx, in).(NotebookRuntimeTemplateNotebookRuntimeTypePtrOutput) } -func (in *notebookRuntimeTemplateNotebookRuntimeTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NotebookRuntimeTemplateNotebookRuntimeType] { - return pulumix.Output[*NotebookRuntimeTemplateNotebookRuntimeType]{ - OutputState: in.ToNotebookRuntimeTemplateNotebookRuntimeTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Immutable. Type of TensorboardTimeSeries value. type TimeSeriesValueType string @@ -4712,12 +4561,6 @@ func (in *timeSeriesValueTypePtr) ToTimeSeriesValueTypePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(TimeSeriesValueTypePtrOutput) } -func (in *timeSeriesValueTypePtr) ToOutput(ctx context.Context) pulumix.Output[*TimeSeriesValueType] { - return pulumix.Output[*TimeSeriesValueType]{ - OutputState: in.ToTimeSeriesValueTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ArtifactStateEnumInput)(nil)).Elem(), ArtifactStateEnum("STATE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*ArtifactStateEnumPtrInput)(nil)).Elem(), ArtifactStateEnum("STATE_UNSPECIFIED")) diff --git a/sdk/go/google/alloydb/v1/pulumiEnums.go b/sdk/go/google/alloydb/v1/pulumiEnums.go index 07cfd2e1ad..9461fcdb13 100644 --- a/sdk/go/google/alloydb/v1/pulumiEnums.go +++ b/sdk/go/google/alloydb/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The backup type, which suggests the trigger for the backup. @@ -185,12 +184,6 @@ func (in *backupTypePtr) ToBackupTypePtrOutputWithContext(ctx context.Context) B return pulumi.ToOutputWithContext(ctx, in).(BackupTypePtrOutput) } -func (in *backupTypePtr) ToOutput(ctx context.Context) pulumix.Output[*BackupType] { - return pulumix.Output[*BackupType]{ - OutputState: in.ToBackupTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The database engine major version. This is an optional field and it is populated at the Cluster creation time. If a database version is not supplied at cluster creation time, then a default database version will be used. type ClusterDatabaseVersion string @@ -365,12 +358,6 @@ func (in *clusterDatabaseVersionPtr) ToClusterDatabaseVersionPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(ClusterDatabaseVersionPtrOutput) } -func (in *clusterDatabaseVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*ClusterDatabaseVersion] { - return pulumix.Output[*ClusterDatabaseVersion]{ - OutputState: in.ToClusterDatabaseVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Availability type of an Instance. If empty, defaults to REGIONAL for primary instances. For read pools, availability_type is always UNSPECIFIED. Instances in the read pools are evenly distributed across available zones within the region (i.e. read pools with more than one node will have a node in at least two zones). type InstanceAvailabilityType string @@ -542,12 +529,6 @@ func (in *instanceAvailabilityTypePtr) ToInstanceAvailabilityTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(InstanceAvailabilityTypePtrOutput) } -func (in *instanceAvailabilityTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceAvailabilityType] { - return pulumix.Output[*InstanceAvailabilityType]{ - OutputState: in.ToInstanceAvailabilityTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of the instance. Specified at creation time. type InstanceInstanceType string @@ -722,12 +703,6 @@ func (in *instanceInstanceTypePtr) ToInstanceInstanceTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(InstanceInstanceTypePtrOutput) } -func (in *instanceInstanceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceInstanceType] { - return pulumix.Output[*InstanceInstanceType]{ - OutputState: in.ToInstanceInstanceTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Certificate Authority (CA) source. Only CA_SOURCE_MANAGED is supported currently, and is the default value. type SslConfigCaSource string @@ -896,12 +871,6 @@ func (in *sslConfigCaSourcePtr) ToSslConfigCaSourcePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(SslConfigCaSourcePtrOutput) } -func (in *sslConfigCaSourcePtr) ToOutput(ctx context.Context) pulumix.Output[*SslConfigCaSource] { - return pulumix.Output[*SslConfigCaSource]{ - OutputState: in.ToSslConfigCaSourcePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. SSL mode. Specifies client-server SSL/TLS connection behavior. type SslConfigSslMode string @@ -1082,12 +1051,6 @@ func (in *sslConfigSslModePtr) ToSslConfigSslModePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(SslConfigSslModePtrOutput) } -func (in *sslConfigSslModePtr) ToOutput(ctx context.Context) pulumix.Output[*SslConfigSslMode] { - return pulumix.Output[*SslConfigSslMode]{ - OutputState: in.ToSslConfigSslModePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Type of this user. type UserUserType string @@ -1259,12 +1222,6 @@ func (in *userUserTypePtr) ToUserUserTypePtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(UserUserTypePtrOutput) } -func (in *userUserTypePtr) ToOutput(ctx context.Context) pulumix.Output[*UserUserType] { - return pulumix.Output[*UserUserType]{ - OutputState: in.ToUserUserTypePtrOutputWithContext(ctx).OutputState, - } -} - type WeeklyScheduleDaysOfWeekItem string const ( @@ -1450,12 +1407,6 @@ func (in *weeklyScheduleDaysOfWeekItemPtr) ToWeeklyScheduleDaysOfWeekItemPtrOutp return pulumi.ToOutputWithContext(ctx, in).(WeeklyScheduleDaysOfWeekItemPtrOutput) } -func (in *weeklyScheduleDaysOfWeekItemPtr) ToOutput(ctx context.Context) pulumix.Output[*WeeklyScheduleDaysOfWeekItem] { - return pulumix.Output[*WeeklyScheduleDaysOfWeekItem]{ - OutputState: in.ToWeeklyScheduleDaysOfWeekItemPtrOutputWithContext(ctx).OutputState, - } -} - // WeeklyScheduleDaysOfWeekItemArrayInput is an input type that accepts WeeklyScheduleDaysOfWeekItemArray and WeeklyScheduleDaysOfWeekItemArrayOutput values. // You can construct a concrete instance of `WeeklyScheduleDaysOfWeekItemArrayInput` via: // diff --git a/sdk/go/google/alloydb/v1alpha/pulumiEnums.go b/sdk/go/google/alloydb/v1alpha/pulumiEnums.go index 956c5b7380..7c8ef32c90 100644 --- a/sdk/go/google/alloydb/v1alpha/pulumiEnums.go +++ b/sdk/go/google/alloydb/v1alpha/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The backup type, which suggests the trigger for the backup. @@ -185,12 +184,6 @@ func (in *backupTypePtr) ToBackupTypePtrOutputWithContext(ctx context.Context) B return pulumi.ToOutputWithContext(ctx, in).(BackupTypePtrOutput) } -func (in *backupTypePtr) ToOutput(ctx context.Context) pulumix.Output[*BackupType] { - return pulumix.Output[*BackupType]{ - OutputState: in.ToBackupTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The database engine major version. This is an optional field and it is populated at the Cluster creation time. If a database version is not supplied at cluster creation time, then a default database version will be used. type ClusterDatabaseVersion string @@ -365,12 +358,6 @@ func (in *clusterDatabaseVersionPtr) ToClusterDatabaseVersionPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(ClusterDatabaseVersionPtrOutput) } -func (in *clusterDatabaseVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*ClusterDatabaseVersion] { - return pulumix.Output[*ClusterDatabaseVersion]{ - OutputState: in.ToClusterDatabaseVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Availability type of an Instance. If empty, defaults to REGIONAL for primary instances. For read pools, availability_type is always UNSPECIFIED. Instances in the read pools are evenly distributed across available zones within the region (i.e. read pools with more than one node will have a node in at least two zones). type InstanceAvailabilityType string @@ -542,12 +529,6 @@ func (in *instanceAvailabilityTypePtr) ToInstanceAvailabilityTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(InstanceAvailabilityTypePtrOutput) } -func (in *instanceAvailabilityTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceAvailabilityType] { - return pulumix.Output[*InstanceAvailabilityType]{ - OutputState: in.ToInstanceAvailabilityTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of the instance. Specified at creation time. type InstanceInstanceType string @@ -722,12 +703,6 @@ func (in *instanceInstanceTypePtr) ToInstanceInstanceTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(InstanceInstanceTypePtrOutput) } -func (in *instanceInstanceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceInstanceType] { - return pulumix.Output[*InstanceInstanceType]{ - OutputState: in.ToInstanceInstanceTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Certificate Authority (CA) source. Only CA_SOURCE_MANAGED is supported currently, and is the default value. type SslConfigCaSource string @@ -896,12 +871,6 @@ func (in *sslConfigCaSourcePtr) ToSslConfigCaSourcePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(SslConfigCaSourcePtrOutput) } -func (in *sslConfigCaSourcePtr) ToOutput(ctx context.Context) pulumix.Output[*SslConfigCaSource] { - return pulumix.Output[*SslConfigCaSource]{ - OutputState: in.ToSslConfigCaSourcePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. SSL mode. Specifies client-server SSL/TLS connection behavior. type SslConfigSslMode string @@ -1082,12 +1051,6 @@ func (in *sslConfigSslModePtr) ToSslConfigSslModePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(SslConfigSslModePtrOutput) } -func (in *sslConfigSslModePtr) ToOutput(ctx context.Context) pulumix.Output[*SslConfigSslMode] { - return pulumix.Output[*SslConfigSslMode]{ - OutputState: in.ToSslConfigSslModePtrOutputWithContext(ctx).OutputState, - } -} - // Mode for updating the instance. type UpdatePolicyMode string @@ -1259,12 +1222,6 @@ func (in *updatePolicyModePtr) ToUpdatePolicyModePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(UpdatePolicyModePtrOutput) } -func (in *updatePolicyModePtr) ToOutput(ctx context.Context) pulumix.Output[*UpdatePolicyMode] { - return pulumix.Output[*UpdatePolicyMode]{ - OutputState: in.ToUpdatePolicyModePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Type of this user. type UserUserType string @@ -1436,12 +1393,6 @@ func (in *userUserTypePtr) ToUserUserTypePtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(UserUserTypePtrOutput) } -func (in *userUserTypePtr) ToOutput(ctx context.Context) pulumix.Output[*UserUserType] { - return pulumix.Output[*UserUserType]{ - OutputState: in.ToUserUserTypePtrOutputWithContext(ctx).OutputState, - } -} - type WeeklyScheduleDaysOfWeekItem string const ( @@ -1627,12 +1578,6 @@ func (in *weeklyScheduleDaysOfWeekItemPtr) ToWeeklyScheduleDaysOfWeekItemPtrOutp return pulumi.ToOutputWithContext(ctx, in).(WeeklyScheduleDaysOfWeekItemPtrOutput) } -func (in *weeklyScheduleDaysOfWeekItemPtr) ToOutput(ctx context.Context) pulumix.Output[*WeeklyScheduleDaysOfWeekItem] { - return pulumix.Output[*WeeklyScheduleDaysOfWeekItem]{ - OutputState: in.ToWeeklyScheduleDaysOfWeekItemPtrOutputWithContext(ctx).OutputState, - } -} - // WeeklyScheduleDaysOfWeekItemArrayInput is an input type that accepts WeeklyScheduleDaysOfWeekItemArray and WeeklyScheduleDaysOfWeekItemArrayOutput values. // You can construct a concrete instance of `WeeklyScheduleDaysOfWeekItemArrayInput` via: // diff --git a/sdk/go/google/alloydb/v1beta/pulumiEnums.go b/sdk/go/google/alloydb/v1beta/pulumiEnums.go index 8ee0bc48e3..cd22aaa231 100644 --- a/sdk/go/google/alloydb/v1beta/pulumiEnums.go +++ b/sdk/go/google/alloydb/v1beta/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The backup type, which suggests the trigger for the backup. @@ -185,12 +184,6 @@ func (in *backupTypePtr) ToBackupTypePtrOutputWithContext(ctx context.Context) B return pulumi.ToOutputWithContext(ctx, in).(BackupTypePtrOutput) } -func (in *backupTypePtr) ToOutput(ctx context.Context) pulumix.Output[*BackupType] { - return pulumix.Output[*BackupType]{ - OutputState: in.ToBackupTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The database engine major version. This is an optional field and it is populated at the Cluster creation time. If a database version is not supplied at cluster creation time, then a default database version will be used. type ClusterDatabaseVersion string @@ -365,12 +358,6 @@ func (in *clusterDatabaseVersionPtr) ToClusterDatabaseVersionPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(ClusterDatabaseVersionPtrOutput) } -func (in *clusterDatabaseVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*ClusterDatabaseVersion] { - return pulumix.Output[*ClusterDatabaseVersion]{ - OutputState: in.ToClusterDatabaseVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Availability type of an Instance. If empty, defaults to REGIONAL for primary instances. For read pools, availability_type is always UNSPECIFIED. Instances in the read pools are evenly distributed across available zones within the region (i.e. read pools with more than one node will have a node in at least two zones). type InstanceAvailabilityType string @@ -542,12 +529,6 @@ func (in *instanceAvailabilityTypePtr) ToInstanceAvailabilityTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(InstanceAvailabilityTypePtrOutput) } -func (in *instanceAvailabilityTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceAvailabilityType] { - return pulumix.Output[*InstanceAvailabilityType]{ - OutputState: in.ToInstanceAvailabilityTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of the instance. Specified at creation time. type InstanceInstanceType string @@ -722,12 +703,6 @@ func (in *instanceInstanceTypePtr) ToInstanceInstanceTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(InstanceInstanceTypePtrOutput) } -func (in *instanceInstanceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceInstanceType] { - return pulumix.Output[*InstanceInstanceType]{ - OutputState: in.ToInstanceInstanceTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Certificate Authority (CA) source. Only CA_SOURCE_MANAGED is supported currently, and is the default value. type SslConfigCaSource string @@ -896,12 +871,6 @@ func (in *sslConfigCaSourcePtr) ToSslConfigCaSourcePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(SslConfigCaSourcePtrOutput) } -func (in *sslConfigCaSourcePtr) ToOutput(ctx context.Context) pulumix.Output[*SslConfigCaSource] { - return pulumix.Output[*SslConfigCaSource]{ - OutputState: in.ToSslConfigCaSourcePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. SSL mode. Specifies client-server SSL/TLS connection behavior. type SslConfigSslMode string @@ -1082,12 +1051,6 @@ func (in *sslConfigSslModePtr) ToSslConfigSslModePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(SslConfigSslModePtrOutput) } -func (in *sslConfigSslModePtr) ToOutput(ctx context.Context) pulumix.Output[*SslConfigSslMode] { - return pulumix.Output[*SslConfigSslMode]{ - OutputState: in.ToSslConfigSslModePtrOutputWithContext(ctx).OutputState, - } -} - // Mode for updating the instance. type UpdatePolicyMode string @@ -1259,12 +1222,6 @@ func (in *updatePolicyModePtr) ToUpdatePolicyModePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(UpdatePolicyModePtrOutput) } -func (in *updatePolicyModePtr) ToOutput(ctx context.Context) pulumix.Output[*UpdatePolicyMode] { - return pulumix.Output[*UpdatePolicyMode]{ - OutputState: in.ToUpdatePolicyModePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Type of this user. type UserUserType string @@ -1436,12 +1393,6 @@ func (in *userUserTypePtr) ToUserUserTypePtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(UserUserTypePtrOutput) } -func (in *userUserTypePtr) ToOutput(ctx context.Context) pulumix.Output[*UserUserType] { - return pulumix.Output[*UserUserType]{ - OutputState: in.ToUserUserTypePtrOutputWithContext(ctx).OutputState, - } -} - type WeeklyScheduleDaysOfWeekItem string const ( @@ -1627,12 +1578,6 @@ func (in *weeklyScheduleDaysOfWeekItemPtr) ToWeeklyScheduleDaysOfWeekItemPtrOutp return pulumi.ToOutputWithContext(ctx, in).(WeeklyScheduleDaysOfWeekItemPtrOutput) } -func (in *weeklyScheduleDaysOfWeekItemPtr) ToOutput(ctx context.Context) pulumix.Output[*WeeklyScheduleDaysOfWeekItem] { - return pulumix.Output[*WeeklyScheduleDaysOfWeekItem]{ - OutputState: in.ToWeeklyScheduleDaysOfWeekItemPtrOutputWithContext(ctx).OutputState, - } -} - // WeeklyScheduleDaysOfWeekItemArrayInput is an input type that accepts WeeklyScheduleDaysOfWeekItemArray and WeeklyScheduleDaysOfWeekItemArrayOutput values. // You can construct a concrete instance of `WeeklyScheduleDaysOfWeekItemArrayInput` via: // diff --git a/sdk/go/google/analyticshub/v1/pulumiEnums.go b/sdk/go/google/analyticshub/v1/pulumiEnums.go index 0d75a97e19..65198c0719 100644 --- a/sdk/go/google/analyticshub/v1/pulumiEnums.go +++ b/sdk/go/google/analyticshub/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - type ListingCategoriesItem string const ( @@ -392,12 +385,6 @@ func (in *listingCategoriesItemPtr) ToListingCategoriesItemPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ListingCategoriesItemPtrOutput) } -func (in *listingCategoriesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*ListingCategoriesItem] { - return pulumix.Output[*ListingCategoriesItem]{ - OutputState: in.ToListingCategoriesItemPtrOutputWithContext(ctx).OutputState, - } -} - // ListingCategoriesItemArrayInput is an input type that accepts ListingCategoriesItemArray and ListingCategoriesItemArrayOutput values. // You can construct a concrete instance of `ListingCategoriesItemArrayInput` via: // diff --git a/sdk/go/google/analyticshub/v1beta1/pulumiEnums.go b/sdk/go/google/analyticshub/v1beta1/pulumiEnums.go index dd3944dcd5..05d976f0a8 100644 --- a/sdk/go/google/analyticshub/v1beta1/pulumiEnums.go +++ b/sdk/go/google/analyticshub/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - type ListingCategoriesItem string const ( @@ -392,12 +385,6 @@ func (in *listingCategoriesItemPtr) ToListingCategoriesItemPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ListingCategoriesItemPtrOutput) } -func (in *listingCategoriesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*ListingCategoriesItem] { - return pulumix.Output[*ListingCategoriesItem]{ - OutputState: in.ToListingCategoriesItemPtrOutputWithContext(ctx).OutputState, - } -} - // ListingCategoriesItemArrayInput is an input type that accepts ListingCategoriesItemArray and ListingCategoriesItemArrayOutput values. // You can construct a concrete instance of `ListingCategoriesItemArrayInput` via: // diff --git a/sdk/go/google/apigateway/v1/pulumiEnums.go b/sdk/go/google/apigateway/v1/pulumiEnums.go index 744b8191ac..b0b74528e9 100644 --- a/sdk/go/google/apigateway/v1/pulumiEnums.go +++ b/sdk/go/google/apigateway/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *apigatewayAuditLogConfigLogTypePtr) ToApigatewayAuditLogConfigLogTypeP return pulumi.ToOutputWithContext(ctx, in).(ApigatewayAuditLogConfigLogTypePtrOutput) } -func (in *apigatewayAuditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ApigatewayAuditLogConfigLogType] { - return pulumix.Output[*ApigatewayAuditLogConfigLogType]{ - OutputState: in.ToApigatewayAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ApigatewayAuditLogConfigLogTypeInput)(nil)).Elem(), ApigatewayAuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*ApigatewayAuditLogConfigLogTypePtrInput)(nil)).Elem(), ApigatewayAuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/apigateway/v1beta/pulumiEnums.go b/sdk/go/google/apigateway/v1beta/pulumiEnums.go index 47edb56ffa..a3725bb1d7 100644 --- a/sdk/go/google/apigateway/v1beta/pulumiEnums.go +++ b/sdk/go/google/apigateway/v1beta/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *apigatewayAuditLogConfigLogTypePtr) ToApigatewayAuditLogConfigLogTypeP return pulumi.ToOutputWithContext(ctx, in).(ApigatewayAuditLogConfigLogTypePtrOutput) } -func (in *apigatewayAuditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ApigatewayAuditLogConfigLogType] { - return pulumix.Output[*ApigatewayAuditLogConfigLogType]{ - OutputState: in.ToApigatewayAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ApigatewayAuditLogConfigLogTypeInput)(nil)).Elem(), ApigatewayAuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*ApigatewayAuditLogConfigLogTypePtrInput)(nil)).Elem(), ApigatewayAuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/apigee/v1/pulumiEnums.go b/sdk/go/google/apigee/v1/pulumiEnums.go index 737cbc2d98..b593859b84 100644 --- a/sdk/go/google/apigee/v1/pulumiEnums.go +++ b/sdk/go/google/apigee/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Scope of the quota decides how the quota counter gets applied and evaluate for quota violation. If the Scope is set as PROXY, then all the operations defined for the APIproduct that are associated with the same proxy will share the same quota counter set at the APIproduct level, making it a global counter at a proxy level. If the Scope is set as OPERATION, then each operations get the counter set at the API product dedicated, making it a local counter. Note that, the QuotaCounterScope applies only when an operation does not have dedicated quota set for itself. @@ -182,12 +181,6 @@ func (in *apiProductQuotaCounterScopePtr) ToApiProductQuotaCounterScopePtrOutput return pulumi.ToOutputWithContext(ctx, in).(ApiProductQuotaCounterScopePtrOutput) } -func (in *apiProductQuotaCounterScopePtr) ToOutput(ctx context.Context) pulumix.Output[*ApiProductQuotaCounterScope] { - return pulumix.Output[*ApiProductQuotaCounterScope]{ - OutputState: in.ToApiProductQuotaCounterScopePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The type of data this data collector will collect. type DataCollectorType string @@ -368,12 +361,6 @@ func (in *dataCollectorTypePtr) ToDataCollectorTypePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(DataCollectorTypePtrOutput) } -func (in *dataCollectorTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DataCollectorType] { - return pulumix.Output[*DataCollectorType]{ - OutputState: in.ToDataCollectorTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. API Proxy type supported by the environment. The type can be set when creating the Environment and cannot be changed. type EnvironmentApiProxyType string @@ -545,12 +532,6 @@ func (in *environmentApiProxyTypePtr) ToEnvironmentApiProxyTypePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(EnvironmentApiProxyTypePtrOutput) } -func (in *environmentApiProxyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EnvironmentApiProxyType] { - return pulumix.Output[*EnvironmentApiProxyType]{ - OutputState: in.ToEnvironmentApiProxyTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Deployment type supported by the environment. The deployment type can be set when creating the environment and cannot be changed. When you enable archive deployment, you will be **prevented from performing** a [subset of actions](/apigee/docs/api-platform/local-development/overview#prevented-actions) within the environment, including: * Managing the deployment of API proxy or shared flow revisions * Creating, updating, or deleting resource files * Creating, updating, or deleting target servers type EnvironmentDeploymentType string @@ -722,12 +703,6 @@ func (in *environmentDeploymentTypePtr) ToEnvironmentDeploymentTypePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(EnvironmentDeploymentTypePtrOutput) } -func (in *environmentDeploymentTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EnvironmentDeploymentType] { - return pulumix.Output[*EnvironmentDeploymentType]{ - OutputState: in.ToEnvironmentDeploymentTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. EnvironmentType selected for the environment. type EnvironmentType string @@ -902,12 +877,6 @@ func (in *environmentTypePtr) ToEnvironmentTypePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(EnvironmentTypePtrOutput) } -func (in *environmentTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EnvironmentType] { - return pulumix.Output[*EnvironmentType]{ - OutputState: in.ToEnvironmentTypePtrOutputWithContext(ctx).OutputState, - } -} - // Sampler of distributed tracing. OFF is the default value. type GoogleCloudApigeeV1TraceSamplingConfigSampler string @@ -1079,12 +1048,6 @@ func (in *googleCloudApigeeV1TraceSamplingConfigSamplerPtr) ToGoogleCloudApigeeV return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudApigeeV1TraceSamplingConfigSamplerPtrOutput) } -func (in *googleCloudApigeeV1TraceSamplingConfigSamplerPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudApigeeV1TraceSamplingConfigSampler] { - return pulumix.Output[*GoogleCloudApigeeV1TraceSamplingConfigSampler]{ - OutputState: in.ToGoogleCloudApigeeV1TraceSamplingConfigSamplerPtrOutputWithContext(ctx).OutputState, - } -} - // The log type that this config enables. type GoogleIamV1AuditLogConfigLogType string @@ -1259,12 +1222,6 @@ func (in *googleIamV1AuditLogConfigLogTypePtr) ToGoogleIamV1AuditLogConfigLogTyp return pulumi.ToOutputWithContext(ctx, in).(GoogleIamV1AuditLogConfigLogTypePtrOutput) } -func (in *googleIamV1AuditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleIamV1AuditLogConfigLogType] { - return pulumix.Output[*GoogleIamV1AuditLogConfigLogType]{ - OutputState: in.ToGoogleIamV1AuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Size of the CIDR block range that will be reserved by the instance. PAID organizations support `SLASH_16` to `SLASH_20` and defaults to `SLASH_16`. Evaluation organizations support only `SLASH_23`. type InstancePeeringCidrRange string @@ -1451,12 +1408,6 @@ func (in *instancePeeringCidrRangePtr) ToInstancePeeringCidrRangePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(InstancePeeringCidrRangePtrOutput) } -func (in *instancePeeringCidrRangePtr) ToOutput(ctx context.Context) pulumix.Output[*InstancePeeringCidrRange] { - return pulumix.Output[*InstancePeeringCidrRange]{ - OutputState: in.ToInstancePeeringCidrRangePtrOutputWithContext(ctx).OutputState, - } -} - // Billing type of the Apigee organization. See [Apigee pricing](https://cloud.google.com/apigee/pricing). type OrganizationBillingType string @@ -1631,12 +1582,6 @@ func (in *organizationBillingTypePtr) ToOrganizationBillingTypePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(OrganizationBillingTypePtrOutput) } -func (in *organizationBillingTypePtr) ToOutput(ctx context.Context) pulumix.Output[*OrganizationBillingType] { - return pulumix.Output[*OrganizationBillingType]{ - OutputState: in.ToOrganizationBillingTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Runtime type of the Apigee organization based on the Apigee subscription purchased. type OrganizationRuntimeType string @@ -1808,12 +1753,6 @@ func (in *organizationRuntimeTypePtr) ToOrganizationRuntimeTypePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(OrganizationRuntimeTypePtrOutput) } -func (in *organizationRuntimeTypePtr) ToOutput(ctx context.Context) pulumix.Output[*OrganizationRuntimeType] { - return pulumix.Output[*OrganizationRuntimeType]{ - OutputState: in.ToOrganizationRuntimeTypePtrOutputWithContext(ctx).OutputState, - } -} - // Not used by Apigee. type OrganizationType string @@ -1988,12 +1927,6 @@ func (in *organizationTypePtr) ToOrganizationTypePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(OrganizationTypePtrOutput) } -func (in *organizationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*OrganizationType] { - return pulumix.Output[*OrganizationType]{ - OutputState: in.ToOrganizationTypePtrOutputWithContext(ctx).OutputState, - } -} - // Frequency at which the customer will be billed. type RatePlanBillingPeriod string @@ -2165,12 +2098,6 @@ func (in *ratePlanBillingPeriodPtr) ToRatePlanBillingPeriodPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(RatePlanBillingPeriodPtrOutput) } -func (in *ratePlanBillingPeriodPtr) ToOutput(ctx context.Context) pulumix.Output[*RatePlanBillingPeriod] { - return pulumix.Output[*RatePlanBillingPeriod]{ - OutputState: in.ToRatePlanBillingPeriodPtrOutputWithContext(ctx).OutputState, - } -} - // Pricing model used for consumption-based charges. type RatePlanConsumptionPricingType string @@ -2348,12 +2275,6 @@ func (in *ratePlanConsumptionPricingTypePtr) ToRatePlanConsumptionPricingTypePtr return pulumi.ToOutputWithContext(ctx, in).(RatePlanConsumptionPricingTypePtrOutput) } -func (in *ratePlanConsumptionPricingTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RatePlanConsumptionPricingType] { - return pulumix.Output[*RatePlanConsumptionPricingType]{ - OutputState: in.ToRatePlanConsumptionPricingTypePtrOutputWithContext(ctx).OutputState, - } -} - // DEPRECATED: This field is no longer supported and will eventually be removed when Apigee Hybrid 1.5/1.6 is no longer supported. Instead, use the `billingType` field inside `DeveloperMonetizationConfig` resource. Flag that specifies the billing account type, prepaid or postpaid. type RatePlanPaymentFundingModel string @@ -2525,12 +2446,6 @@ func (in *ratePlanPaymentFundingModelPtr) ToRatePlanPaymentFundingModelPtrOutput return pulumi.ToOutputWithContext(ctx, in).(RatePlanPaymentFundingModelPtrOutput) } -func (in *ratePlanPaymentFundingModelPtr) ToOutput(ctx context.Context) pulumix.Output[*RatePlanPaymentFundingModel] { - return pulumix.Output[*RatePlanPaymentFundingModel]{ - OutputState: in.ToRatePlanPaymentFundingModelPtrOutputWithContext(ctx).OutputState, - } -} - // Method used to calculate the revenue that is shared with developers. type RatePlanRevenueShareType string @@ -2702,12 +2617,6 @@ func (in *ratePlanRevenueShareTypePtr) ToRatePlanRevenueShareTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(RatePlanRevenueShareTypePtrOutput) } -func (in *ratePlanRevenueShareTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RatePlanRevenueShareType] { - return pulumix.Output[*RatePlanRevenueShareType]{ - OutputState: in.ToRatePlanRevenueShareTypePtrOutputWithContext(ctx).OutputState, - } -} - // Current state of the rate plan (draft or published). type RatePlanStateEnum string @@ -2879,12 +2788,6 @@ func (in *ratePlanStateEnumPtr) ToRatePlanStateEnumPtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(RatePlanStateEnumPtrOutput) } -func (in *ratePlanStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*RatePlanStateEnum] { - return pulumix.Output[*RatePlanStateEnum]{ - OutputState: in.ToRatePlanStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Only an ENABLED SecurityAction is enforced. An ENABLED SecurityAction past its expiration time will not be enforced. type SecurityActionStateEnum string @@ -3056,12 +2959,6 @@ func (in *securityActionStateEnumPtr) ToSecurityActionStateEnumPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(SecurityActionStateEnumPtrOutput) } -func (in *securityActionStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityActionStateEnum] { - return pulumix.Output[*SecurityActionStateEnum]{ - OutputState: in.ToSecurityActionStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The protocol used by this TargetServer. type TargetServerProtocol string @@ -3242,12 +3139,6 @@ func (in *targetServerProtocolPtr) ToTargetServerProtocolPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(TargetServerProtocolPtrOutput) } -func (in *targetServerProtocolPtr) ToOutput(ctx context.Context) pulumix.Output[*TargetServerProtocol] { - return pulumix.Output[*TargetServerProtocol]{ - OutputState: in.ToTargetServerProtocolPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ApiProductQuotaCounterScopeInput)(nil)).Elem(), ApiProductQuotaCounterScope("QUOTA_COUNTER_SCOPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*ApiProductQuotaCounterScopePtrInput)(nil)).Elem(), ApiProductQuotaCounterScope("QUOTA_COUNTER_SCOPE_UNSPECIFIED")) diff --git a/sdk/go/google/appengine/v1/pulumiEnums.go b/sdk/go/google/appengine/v1/pulumiEnums.go index 43b9d80d9f..c8c042e3b9 100644 --- a/sdk/go/google/appengine/v1/pulumiEnums.go +++ b/sdk/go/google/appengine/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Action to take when users access resources that require authentication. Defaults to redirect. @@ -182,12 +181,6 @@ func (in *apiConfigHandlerAuthFailActionPtr) ToApiConfigHandlerAuthFailActionPtr return pulumi.ToOutputWithContext(ctx, in).(ApiConfigHandlerAuthFailActionPtrOutput) } -func (in *apiConfigHandlerAuthFailActionPtr) ToOutput(ctx context.Context) pulumix.Output[*ApiConfigHandlerAuthFailAction] { - return pulumix.Output[*ApiConfigHandlerAuthFailAction]{ - OutputState: in.ToApiConfigHandlerAuthFailActionPtrOutputWithContext(ctx).OutputState, - } -} - // Level of login required to access this resource. Defaults to optional. type ApiConfigHandlerLogin string @@ -362,12 +355,6 @@ func (in *apiConfigHandlerLoginPtr) ToApiConfigHandlerLoginPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ApiConfigHandlerLoginPtrOutput) } -func (in *apiConfigHandlerLoginPtr) ToOutput(ctx context.Context) pulumix.Output[*ApiConfigHandlerLogin] { - return pulumix.Output[*ApiConfigHandlerLogin]{ - OutputState: in.ToApiConfigHandlerLoginPtrOutputWithContext(ctx).OutputState, - } -} - // Security (HTTPS) enforcement for this URL. type ApiConfigHandlerSecurityLevel string @@ -545,12 +532,6 @@ func (in *apiConfigHandlerSecurityLevelPtr) ToApiConfigHandlerSecurityLevelPtrOu return pulumi.ToOutputWithContext(ctx, in).(ApiConfigHandlerSecurityLevelPtrOutput) } -func (in *apiConfigHandlerSecurityLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*ApiConfigHandlerSecurityLevel] { - return pulumix.Output[*ApiConfigHandlerSecurityLevel]{ - OutputState: in.ToApiConfigHandlerSecurityLevelPtrOutputWithContext(ctx).OutputState, - } -} - // The type of the Cloud Firestore or Cloud Datastore database associated with this application. type AppDatabaseType string @@ -725,12 +706,6 @@ func (in *appDatabaseTypePtr) ToAppDatabaseTypePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(AppDatabaseTypePtrOutput) } -func (in *appDatabaseTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AppDatabaseType] { - return pulumix.Output[*AppDatabaseType]{ - OutputState: in.ToAppDatabaseTypePtrOutputWithContext(ctx).OutputState, - } -} - // Serving status of this application. type AppServingStatus string @@ -905,12 +880,6 @@ func (in *appServingStatusPtr) ToAppServingStatusPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(AppServingStatusPtrOutput) } -func (in *appServingStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*AppServingStatus] { - return pulumix.Output[*AppServingStatus]{ - OutputState: in.ToAppServingStatusPtrOutputWithContext(ctx).OutputState, - } -} - // Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted. type EndpointsApiServiceRolloutStrategy string @@ -1082,12 +1051,6 @@ func (in *endpointsApiServiceRolloutStrategyPtr) ToEndpointsApiServiceRolloutStr return pulumi.ToOutputWithContext(ctx, in).(EndpointsApiServiceRolloutStrategyPtrOutput) } -func (in *endpointsApiServiceRolloutStrategyPtr) ToOutput(ctx context.Context) pulumix.Output[*EndpointsApiServiceRolloutStrategy] { - return pulumix.Output[*EndpointsApiServiceRolloutStrategy]{ - OutputState: in.ToEndpointsApiServiceRolloutStrategyPtrOutputWithContext(ctx).OutputState, - } -} - // Error condition this handler applies to. type ErrorHandlerErrorCode string @@ -1265,12 +1228,6 @@ func (in *errorHandlerErrorCodePtr) ToErrorHandlerErrorCodePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ErrorHandlerErrorCodePtrOutput) } -func (in *errorHandlerErrorCodePtr) ToOutput(ctx context.Context) pulumix.Output[*ErrorHandlerErrorCode] { - return pulumix.Output[*ErrorHandlerErrorCode]{ - OutputState: in.ToErrorHandlerErrorCodePtrOutputWithContext(ctx).OutputState, - } -} - // The action to take on matched requests. type IngressRuleAction string @@ -1441,12 +1398,6 @@ func (in *ingressRuleActionPtr) ToIngressRuleActionPtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(IngressRuleActionPtrOutput) } -func (in *ingressRuleActionPtr) ToOutput(ctx context.Context) pulumix.Output[*IngressRuleAction] { - return pulumix.Output[*IngressRuleAction]{ - OutputState: in.ToIngressRuleActionPtrOutputWithContext(ctx).OutputState, - } -} - // The IP mode for instances. Only applicable in the App Engine flexible environment. type NetworkInstanceIpMode string @@ -1618,12 +1569,6 @@ func (in *networkInstanceIpModePtr) ToNetworkInstanceIpModePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(NetworkInstanceIpModePtrOutput) } -func (in *networkInstanceIpModePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkInstanceIpMode] { - return pulumix.Output[*NetworkInstanceIpMode]{ - OutputState: in.ToNetworkInstanceIpModePtrOutputWithContext(ctx).OutputState, - } -} - // SSL management type for this domain. If AUTOMATIC, a managed certificate is automatically provisioned. If MANUAL, certificate_id must be manually specified in order to configure SSL for this domain. type SslSettingsSslManagementType string @@ -1795,12 +1740,6 @@ func (in *sslSettingsSslManagementTypePtr) ToSslSettingsSslManagementTypePtrOutp return pulumi.ToOutputWithContext(ctx, in).(SslSettingsSslManagementTypePtrOutput) } -func (in *sslSettingsSslManagementTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SslSettingsSslManagementType] { - return pulumix.Output[*SslSettingsSslManagementType]{ - OutputState: in.ToSslSettingsSslManagementTypePtrOutputWithContext(ctx).OutputState, - } -} - // Action to take when users access resources that require authentication. Defaults to redirect. type UrlMapAuthFailAction string @@ -1972,12 +1911,6 @@ func (in *urlMapAuthFailActionPtr) ToUrlMapAuthFailActionPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(UrlMapAuthFailActionPtrOutput) } -func (in *urlMapAuthFailActionPtr) ToOutput(ctx context.Context) pulumix.Output[*UrlMapAuthFailAction] { - return pulumix.Output[*UrlMapAuthFailAction]{ - OutputState: in.ToUrlMapAuthFailActionPtrOutputWithContext(ctx).OutputState, - } -} - // Level of login required to access this resource. Not supported for Node.js in the App Engine standard environment. type UrlMapLogin string @@ -2152,12 +2085,6 @@ func (in *urlMapLoginPtr) ToUrlMapLoginPtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(UrlMapLoginPtrOutput) } -func (in *urlMapLoginPtr) ToOutput(ctx context.Context) pulumix.Output[*UrlMapLogin] { - return pulumix.Output[*UrlMapLogin]{ - OutputState: in.ToUrlMapLoginPtrOutputWithContext(ctx).OutputState, - } -} - // 30x code to use when performing redirects for the secure field. Defaults to 302. type UrlMapRedirectHttpResponseCode string @@ -2335,12 +2262,6 @@ func (in *urlMapRedirectHttpResponseCodePtr) ToUrlMapRedirectHttpResponseCodePtr return pulumi.ToOutputWithContext(ctx, in).(UrlMapRedirectHttpResponseCodePtrOutput) } -func (in *urlMapRedirectHttpResponseCodePtr) ToOutput(ctx context.Context) pulumix.Output[*UrlMapRedirectHttpResponseCode] { - return pulumix.Output[*UrlMapRedirectHttpResponseCode]{ - OutputState: in.ToUrlMapRedirectHttpResponseCodePtrOutputWithContext(ctx).OutputState, - } -} - // Security (HTTPS) enforcement for this URL. type UrlMapSecurityLevel string @@ -2518,12 +2439,6 @@ func (in *urlMapSecurityLevelPtr) ToUrlMapSecurityLevelPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(UrlMapSecurityLevelPtrOutput) } -func (in *urlMapSecurityLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*UrlMapSecurityLevel] { - return pulumix.Output[*UrlMapSecurityLevel]{ - OutputState: in.ToUrlMapSecurityLevelPtrOutputWithContext(ctx).OutputState, - } -} - type VersionInboundServicesItem string const ( @@ -2712,12 +2627,6 @@ func (in *versionInboundServicesItemPtr) ToVersionInboundServicesItemPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(VersionInboundServicesItemPtrOutput) } -func (in *versionInboundServicesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*VersionInboundServicesItem] { - return pulumix.Output[*VersionInboundServicesItem]{ - OutputState: in.ToVersionInboundServicesItemPtrOutputWithContext(ctx).OutputState, - } -} - // VersionInboundServicesItemArrayInput is an input type that accepts VersionInboundServicesItemArray and VersionInboundServicesItemArrayOutput values. // You can construct a concrete instance of `VersionInboundServicesItemArrayInput` via: // @@ -2934,12 +2843,6 @@ func (in *versionServingStatusPtr) ToVersionServingStatusPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(VersionServingStatusPtrOutput) } -func (in *versionServingStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*VersionServingStatus] { - return pulumix.Output[*VersionServingStatus]{ - OutputState: in.ToVersionServingStatusPtrOutputWithContext(ctx).OutputState, - } -} - // The egress setting for the connector, controlling what traffic is diverted through it. type VpcAccessConnectorEgressSetting string @@ -3110,12 +3013,6 @@ func (in *vpcAccessConnectorEgressSettingPtr) ToVpcAccessConnectorEgressSettingP return pulumi.ToOutputWithContext(ctx, in).(VpcAccessConnectorEgressSettingPtrOutput) } -func (in *vpcAccessConnectorEgressSettingPtr) ToOutput(ctx context.Context) pulumix.Output[*VpcAccessConnectorEgressSetting] { - return pulumix.Output[*VpcAccessConnectorEgressSetting]{ - OutputState: in.ToVpcAccessConnectorEgressSettingPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ApiConfigHandlerAuthFailActionInput)(nil)).Elem(), ApiConfigHandlerAuthFailAction("AUTH_FAIL_ACTION_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*ApiConfigHandlerAuthFailActionPtrInput)(nil)).Elem(), ApiConfigHandlerAuthFailAction("AUTH_FAIL_ACTION_UNSPECIFIED")) diff --git a/sdk/go/google/appengine/v1beta/pulumiEnums.go b/sdk/go/google/appengine/v1beta/pulumiEnums.go index 524cd41f64..9c6462d169 100644 --- a/sdk/go/google/appengine/v1beta/pulumiEnums.go +++ b/sdk/go/google/appengine/v1beta/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Action to take when users access resources that require authentication. Defaults to redirect. @@ -182,12 +181,6 @@ func (in *apiConfigHandlerAuthFailActionPtr) ToApiConfigHandlerAuthFailActionPtr return pulumi.ToOutputWithContext(ctx, in).(ApiConfigHandlerAuthFailActionPtrOutput) } -func (in *apiConfigHandlerAuthFailActionPtr) ToOutput(ctx context.Context) pulumix.Output[*ApiConfigHandlerAuthFailAction] { - return pulumix.Output[*ApiConfigHandlerAuthFailAction]{ - OutputState: in.ToApiConfigHandlerAuthFailActionPtrOutputWithContext(ctx).OutputState, - } -} - // Level of login required to access this resource. Defaults to optional. type ApiConfigHandlerLogin string @@ -362,12 +355,6 @@ func (in *apiConfigHandlerLoginPtr) ToApiConfigHandlerLoginPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ApiConfigHandlerLoginPtrOutput) } -func (in *apiConfigHandlerLoginPtr) ToOutput(ctx context.Context) pulumix.Output[*ApiConfigHandlerLogin] { - return pulumix.Output[*ApiConfigHandlerLogin]{ - OutputState: in.ToApiConfigHandlerLoginPtrOutputWithContext(ctx).OutputState, - } -} - // Security (HTTPS) enforcement for this URL. type ApiConfigHandlerSecurityLevel string @@ -545,12 +532,6 @@ func (in *apiConfigHandlerSecurityLevelPtr) ToApiConfigHandlerSecurityLevelPtrOu return pulumi.ToOutputWithContext(ctx, in).(ApiConfigHandlerSecurityLevelPtrOutput) } -func (in *apiConfigHandlerSecurityLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*ApiConfigHandlerSecurityLevel] { - return pulumix.Output[*ApiConfigHandlerSecurityLevel]{ - OutputState: in.ToApiConfigHandlerSecurityLevelPtrOutputWithContext(ctx).OutputState, - } -} - // The type of the Cloud Firestore or Cloud Datastore database associated with this application. type AppDatabaseType string @@ -725,12 +706,6 @@ func (in *appDatabaseTypePtr) ToAppDatabaseTypePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(AppDatabaseTypePtrOutput) } -func (in *appDatabaseTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AppDatabaseType] { - return pulumix.Output[*AppDatabaseType]{ - OutputState: in.ToAppDatabaseTypePtrOutputWithContext(ctx).OutputState, - } -} - // Serving status of this application. type AppServingStatus string @@ -905,12 +880,6 @@ func (in *appServingStatusPtr) ToAppServingStatusPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(AppServingStatusPtrOutput) } -func (in *appServingStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*AppServingStatus] { - return pulumix.Output[*AppServingStatus]{ - OutputState: in.ToAppServingStatusPtrOutputWithContext(ctx).OutputState, - } -} - // Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted. type EndpointsApiServiceRolloutStrategy string @@ -1082,12 +1051,6 @@ func (in *endpointsApiServiceRolloutStrategyPtr) ToEndpointsApiServiceRolloutStr return pulumi.ToOutputWithContext(ctx, in).(EndpointsApiServiceRolloutStrategyPtrOutput) } -func (in *endpointsApiServiceRolloutStrategyPtr) ToOutput(ctx context.Context) pulumix.Output[*EndpointsApiServiceRolloutStrategy] { - return pulumix.Output[*EndpointsApiServiceRolloutStrategy]{ - OutputState: in.ToEndpointsApiServiceRolloutStrategyPtrOutputWithContext(ctx).OutputState, - } -} - // Error condition this handler applies to. type ErrorHandlerErrorCode string @@ -1265,12 +1228,6 @@ func (in *errorHandlerErrorCodePtr) ToErrorHandlerErrorCodePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ErrorHandlerErrorCodePtrOutput) } -func (in *errorHandlerErrorCodePtr) ToOutput(ctx context.Context) pulumix.Output[*ErrorHandlerErrorCode] { - return pulumix.Output[*ErrorHandlerErrorCode]{ - OutputState: in.ToErrorHandlerErrorCodePtrOutputWithContext(ctx).OutputState, - } -} - // The action to take on matched requests. type IngressRuleAction string @@ -1441,12 +1398,6 @@ func (in *ingressRuleActionPtr) ToIngressRuleActionPtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(IngressRuleActionPtrOutput) } -func (in *ingressRuleActionPtr) ToOutput(ctx context.Context) pulumix.Output[*IngressRuleAction] { - return pulumix.Output[*IngressRuleAction]{ - OutputState: in.ToIngressRuleActionPtrOutputWithContext(ctx).OutputState, - } -} - // The IP mode for instances. Only applicable in the App Engine flexible environment. type NetworkInstanceIpMode string @@ -1618,12 +1569,6 @@ func (in *networkInstanceIpModePtr) ToNetworkInstanceIpModePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(NetworkInstanceIpModePtrOutput) } -func (in *networkInstanceIpModePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkInstanceIpMode] { - return pulumix.Output[*NetworkInstanceIpMode]{ - OutputState: in.ToNetworkInstanceIpModePtrOutputWithContext(ctx).OutputState, - } -} - // SSL management type for this domain. If AUTOMATIC, a managed certificate is automatically provisioned. If MANUAL, certificate_id must be manually specified in order to configure SSL for this domain. type SslSettingsSslManagementType string @@ -1792,12 +1737,6 @@ func (in *sslSettingsSslManagementTypePtr) ToSslSettingsSslManagementTypePtrOutp return pulumi.ToOutputWithContext(ctx, in).(SslSettingsSslManagementTypePtrOutput) } -func (in *sslSettingsSslManagementTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SslSettingsSslManagementType] { - return pulumix.Output[*SslSettingsSslManagementType]{ - OutputState: in.ToSslSettingsSslManagementTypePtrOutputWithContext(ctx).OutputState, - } -} - // Action to take when users access resources that require authentication. Defaults to redirect. type UrlMapAuthFailAction string @@ -1969,12 +1908,6 @@ func (in *urlMapAuthFailActionPtr) ToUrlMapAuthFailActionPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(UrlMapAuthFailActionPtrOutput) } -func (in *urlMapAuthFailActionPtr) ToOutput(ctx context.Context) pulumix.Output[*UrlMapAuthFailAction] { - return pulumix.Output[*UrlMapAuthFailAction]{ - OutputState: in.ToUrlMapAuthFailActionPtrOutputWithContext(ctx).OutputState, - } -} - // Level of login required to access this resource. Not supported for Node.js in the App Engine standard environment. type UrlMapLogin string @@ -2149,12 +2082,6 @@ func (in *urlMapLoginPtr) ToUrlMapLoginPtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(UrlMapLoginPtrOutput) } -func (in *urlMapLoginPtr) ToOutput(ctx context.Context) pulumix.Output[*UrlMapLogin] { - return pulumix.Output[*UrlMapLogin]{ - OutputState: in.ToUrlMapLoginPtrOutputWithContext(ctx).OutputState, - } -} - // 30x code to use when performing redirects for the secure field. Defaults to 302. type UrlMapRedirectHttpResponseCode string @@ -2332,12 +2259,6 @@ func (in *urlMapRedirectHttpResponseCodePtr) ToUrlMapRedirectHttpResponseCodePtr return pulumi.ToOutputWithContext(ctx, in).(UrlMapRedirectHttpResponseCodePtrOutput) } -func (in *urlMapRedirectHttpResponseCodePtr) ToOutput(ctx context.Context) pulumix.Output[*UrlMapRedirectHttpResponseCode] { - return pulumix.Output[*UrlMapRedirectHttpResponseCode]{ - OutputState: in.ToUrlMapRedirectHttpResponseCodePtrOutputWithContext(ctx).OutputState, - } -} - // Security (HTTPS) enforcement for this URL. type UrlMapSecurityLevel string @@ -2515,12 +2436,6 @@ func (in *urlMapSecurityLevelPtr) ToUrlMapSecurityLevelPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(UrlMapSecurityLevelPtrOutput) } -func (in *urlMapSecurityLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*UrlMapSecurityLevel] { - return pulumix.Output[*UrlMapSecurityLevel]{ - OutputState: in.ToUrlMapSecurityLevelPtrOutputWithContext(ctx).OutputState, - } -} - type VersionInboundServicesItem string const ( @@ -2709,12 +2624,6 @@ func (in *versionInboundServicesItemPtr) ToVersionInboundServicesItemPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(VersionInboundServicesItemPtrOutput) } -func (in *versionInboundServicesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*VersionInboundServicesItem] { - return pulumix.Output[*VersionInboundServicesItem]{ - OutputState: in.ToVersionInboundServicesItemPtrOutputWithContext(ctx).OutputState, - } -} - // VersionInboundServicesItemArrayInput is an input type that accepts VersionInboundServicesItemArray and VersionInboundServicesItemArrayOutput values. // You can construct a concrete instance of `VersionInboundServicesItemArrayInput` via: // @@ -2931,12 +2840,6 @@ func (in *versionServingStatusPtr) ToVersionServingStatusPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(VersionServingStatusPtrOutput) } -func (in *versionServingStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*VersionServingStatus] { - return pulumix.Output[*VersionServingStatus]{ - OutputState: in.ToVersionServingStatusPtrOutputWithContext(ctx).OutputState, - } -} - // The egress setting for the connector, controlling what traffic is diverted through it. type VpcAccessConnectorEgressSetting string @@ -3107,12 +3010,6 @@ func (in *vpcAccessConnectorEgressSettingPtr) ToVpcAccessConnectorEgressSettingP return pulumi.ToOutputWithContext(ctx, in).(VpcAccessConnectorEgressSettingPtrOutput) } -func (in *vpcAccessConnectorEgressSettingPtr) ToOutput(ctx context.Context) pulumix.Output[*VpcAccessConnectorEgressSetting] { - return pulumix.Output[*VpcAccessConnectorEgressSetting]{ - OutputState: in.ToVpcAccessConnectorEgressSettingPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ApiConfigHandlerAuthFailActionInput)(nil)).Elem(), ApiConfigHandlerAuthFailAction("AUTH_FAIL_ACTION_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*ApiConfigHandlerAuthFailActionPtrInput)(nil)).Elem(), ApiConfigHandlerAuthFailAction("AUTH_FAIL_ACTION_UNSPECIFIED")) diff --git a/sdk/go/google/artifactregistry/v1/pulumiEnums.go b/sdk/go/google/artifactregistry/v1/pulumiEnums.go index a28f6a29c4..facf2a9ee3 100644 --- a/sdk/go/google/artifactregistry/v1/pulumiEnums.go +++ b/sdk/go/google/artifactregistry/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // One of the publicly available Docker repositories supported by Artifact Registry. @@ -179,12 +178,6 @@ func (in *dockerRepositoryPublicRepositoryPtr) ToDockerRepositoryPublicRepositor return pulumi.ToOutputWithContext(ctx, in).(DockerRepositoryPublicRepositoryPtrOutput) } -func (in *dockerRepositoryPublicRepositoryPtr) ToOutput(ctx context.Context) pulumix.Output[*DockerRepositoryPublicRepository] { - return pulumix.Output[*DockerRepositoryPublicRepository]{ - OutputState: in.ToDockerRepositoryPublicRepositoryPtrOutputWithContext(ctx).OutputState, - } -} - // A common public repository base for Apt. type GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigAptRepositoryPublicRepositoryRepositoryBase string @@ -359,12 +352,6 @@ func (in *googleDevtoolsArtifactregistryV1RemoteRepositoryConfigAptRepositoryPub return pulumi.ToOutputWithContext(ctx, in).(GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigAptRepositoryPublicRepositoryRepositoryBasePtrOutput) } -func (in *googleDevtoolsArtifactregistryV1RemoteRepositoryConfigAptRepositoryPublicRepositoryRepositoryBasePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigAptRepositoryPublicRepositoryRepositoryBase] { - return pulumix.Output[*GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigAptRepositoryPublicRepositoryRepositoryBase]{ - OutputState: in.ToGoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigAptRepositoryPublicRepositoryRepositoryBasePtrOutputWithContext(ctx).OutputState, - } -} - // A common public repository base for Yum. type GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigYumRepositoryPublicRepositoryRepositoryBase string @@ -548,12 +535,6 @@ func (in *googleDevtoolsArtifactregistryV1RemoteRepositoryConfigYumRepositoryPub return pulumi.ToOutputWithContext(ctx, in).(GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigYumRepositoryPublicRepositoryRepositoryBasePtrOutput) } -func (in *googleDevtoolsArtifactregistryV1RemoteRepositoryConfigYumRepositoryPublicRepositoryRepositoryBasePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigYumRepositoryPublicRepositoryRepositoryBase] { - return pulumix.Output[*GoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigYumRepositoryPublicRepositoryRepositoryBase]{ - OutputState: in.ToGoogleDevtoolsArtifactregistryV1RemoteRepositoryConfigYumRepositoryPublicRepositoryRepositoryBasePtrOutputWithContext(ctx).OutputState, - } -} - // Version policy defines the versions that the registry will accept. type MavenRepositoryConfigVersionPolicy string @@ -725,12 +706,6 @@ func (in *mavenRepositoryConfigVersionPolicyPtr) ToMavenRepositoryConfigVersionP return pulumi.ToOutputWithContext(ctx, in).(MavenRepositoryConfigVersionPolicyPtrOutput) } -func (in *mavenRepositoryConfigVersionPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*MavenRepositoryConfigVersionPolicy] { - return pulumix.Output[*MavenRepositoryConfigVersionPolicy]{ - OutputState: in.ToMavenRepositoryConfigVersionPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // One of the publicly available Maven repositories supported by Artifact Registry. type MavenRepositoryPublicRepository string @@ -899,12 +874,6 @@ func (in *mavenRepositoryPublicRepositoryPtr) ToMavenRepositoryPublicRepositoryP return pulumi.ToOutputWithContext(ctx, in).(MavenRepositoryPublicRepositoryPtrOutput) } -func (in *mavenRepositoryPublicRepositoryPtr) ToOutput(ctx context.Context) pulumix.Output[*MavenRepositoryPublicRepository] { - return pulumix.Output[*MavenRepositoryPublicRepository]{ - OutputState: in.ToMavenRepositoryPublicRepositoryPtrOutputWithContext(ctx).OutputState, - } -} - // One of the publicly available Npm repositories supported by Artifact Registry. type NpmRepositoryPublicRepository string @@ -1073,12 +1042,6 @@ func (in *npmRepositoryPublicRepositoryPtr) ToNpmRepositoryPublicRepositoryPtrOu return pulumi.ToOutputWithContext(ctx, in).(NpmRepositoryPublicRepositoryPtrOutput) } -func (in *npmRepositoryPublicRepositoryPtr) ToOutput(ctx context.Context) pulumix.Output[*NpmRepositoryPublicRepository] { - return pulumix.Output[*NpmRepositoryPublicRepository]{ - OutputState: in.ToNpmRepositoryPublicRepositoryPtrOutputWithContext(ctx).OutputState, - } -} - // One of the publicly available Python repositories supported by Artifact Registry. type PythonRepositoryPublicRepository string @@ -1247,12 +1210,6 @@ func (in *pythonRepositoryPublicRepositoryPtr) ToPythonRepositoryPublicRepositor return pulumi.ToOutputWithContext(ctx, in).(PythonRepositoryPublicRepositoryPtrOutput) } -func (in *pythonRepositoryPublicRepositoryPtr) ToOutput(ctx context.Context) pulumix.Output[*PythonRepositoryPublicRepository] { - return pulumix.Output[*PythonRepositoryPublicRepository]{ - OutputState: in.ToPythonRepositoryPublicRepositoryPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The format of packages that are stored in the repository. type RepositoryFormat string @@ -1445,12 +1402,6 @@ func (in *repositoryFormatPtr) ToRepositoryFormatPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(RepositoryFormatPtrOutput) } -func (in *repositoryFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*RepositoryFormat] { - return pulumix.Output[*RepositoryFormat]{ - OutputState: in.ToRepositoryFormatPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The mode of the repository. type RepositoryMode string @@ -1625,12 +1576,6 @@ func (in *repositoryModePtr) ToRepositoryModePtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(RepositoryModePtrOutput) } -func (in *repositoryModePtr) ToOutput(ctx context.Context) pulumix.Output[*RepositoryMode] { - return pulumix.Output[*RepositoryMode]{ - OutputState: in.ToRepositoryModePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*DockerRepositoryPublicRepositoryInput)(nil)).Elem(), DockerRepositoryPublicRepository("PUBLIC_REPOSITORY_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*DockerRepositoryPublicRepositoryPtrInput)(nil)).Elem(), DockerRepositoryPublicRepository("PUBLIC_REPOSITORY_UNSPECIFIED")) diff --git a/sdk/go/google/artifactregistry/v1beta1/pulumiEnums.go b/sdk/go/google/artifactregistry/v1beta1/pulumiEnums.go index 7411cdf9df..6a21c35aa1 100644 --- a/sdk/go/google/artifactregistry/v1beta1/pulumiEnums.go +++ b/sdk/go/google/artifactregistry/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Optional. The format of packages that are stored in the repository. @@ -197,12 +196,6 @@ func (in *repositoryFormatPtr) ToRepositoryFormatPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(RepositoryFormatPtrOutput) } -func (in *repositoryFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*RepositoryFormat] { - return pulumix.Output[*RepositoryFormat]{ - OutputState: in.ToRepositoryFormatPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*RepositoryFormatInput)(nil)).Elem(), RepositoryFormat("FORMAT_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*RepositoryFormatPtrInput)(nil)).Elem(), RepositoryFormat("FORMAT_UNSPECIFIED")) diff --git a/sdk/go/google/artifactregistry/v1beta2/pulumiEnums.go b/sdk/go/google/artifactregistry/v1beta2/pulumiEnums.go index 84b663f534..94ce22d99a 100644 --- a/sdk/go/google/artifactregistry/v1beta2/pulumiEnums.go +++ b/sdk/go/google/artifactregistry/v1beta2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Version policy defines the versions that the registry will accept. @@ -182,12 +181,6 @@ func (in *mavenRepositoryConfigVersionPolicyPtr) ToMavenRepositoryConfigVersionP return pulumi.ToOutputWithContext(ctx, in).(MavenRepositoryConfigVersionPolicyPtrOutput) } -func (in *mavenRepositoryConfigVersionPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*MavenRepositoryConfigVersionPolicy] { - return pulumix.Output[*MavenRepositoryConfigVersionPolicy]{ - OutputState: in.ToMavenRepositoryConfigVersionPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The format of packages that are stored in the repository. type RepositoryFormat string @@ -374,12 +367,6 @@ func (in *repositoryFormatPtr) ToRepositoryFormatPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(RepositoryFormatPtrOutput) } -func (in *repositoryFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*RepositoryFormat] { - return pulumix.Output[*RepositoryFormat]{ - OutputState: in.ToRepositoryFormatPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*MavenRepositoryConfigVersionPolicyInput)(nil)).Elem(), MavenRepositoryConfigVersionPolicy("VERSION_POLICY_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*MavenRepositoryConfigVersionPolicyPtrInput)(nil)).Elem(), MavenRepositoryConfigVersionPolicy("VERSION_POLICY_UNSPECIFIED")) diff --git a/sdk/go/google/assuredworkloads/v1/pulumiEnums.go b/sdk/go/google/assuredworkloads/v1/pulumiEnums.go index 4bc551a048..993f71d54a 100644 --- a/sdk/go/google/assuredworkloads/v1/pulumiEnums.go +++ b/sdk/go/google/assuredworkloads/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Indicates the type of resource. This field should be specified to correspond the id to the right project type (CONSUMER_PROJECT or ENCRYPTION_KEYS_PROJECT) @@ -188,12 +187,6 @@ func (in *googleCloudAssuredworkloadsV1WorkloadResourceSettingsResourceTypePtr) return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAssuredworkloadsV1WorkloadResourceSettingsResourceTypePtrOutput) } -func (in *googleCloudAssuredworkloadsV1WorkloadResourceSettingsResourceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAssuredworkloadsV1WorkloadResourceSettingsResourceType] { - return pulumix.Output[*GoogleCloudAssuredworkloadsV1WorkloadResourceSettingsResourceType]{ - OutputState: in.ToGoogleCloudAssuredworkloadsV1WorkloadResourceSettingsResourceTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Immutable. Compliance Regime associated with this workload. type WorkloadComplianceRegime string @@ -413,12 +406,6 @@ func (in *workloadComplianceRegimePtr) ToWorkloadComplianceRegimePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(WorkloadComplianceRegimePtrOutput) } -func (in *workloadComplianceRegimePtr) ToOutput(ctx context.Context) pulumix.Output[*WorkloadComplianceRegime] { - return pulumix.Output[*WorkloadComplianceRegime]{ - OutputState: in.ToWorkloadComplianceRegimePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Partner regime associated with this workload. type WorkloadPartner string @@ -595,12 +582,6 @@ func (in *workloadPartnerPtr) ToWorkloadPartnerPtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(WorkloadPartnerPtrOutput) } -func (in *workloadPartnerPtr) ToOutput(ctx context.Context) pulumix.Output[*WorkloadPartner] { - return pulumix.Output[*WorkloadPartner]{ - OutputState: in.ToWorkloadPartnerPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudAssuredworkloadsV1WorkloadResourceSettingsResourceTypeInput)(nil)).Elem(), GoogleCloudAssuredworkloadsV1WorkloadResourceSettingsResourceType("RESOURCE_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudAssuredworkloadsV1WorkloadResourceSettingsResourceTypePtrInput)(nil)).Elem(), GoogleCloudAssuredworkloadsV1WorkloadResourceSettingsResourceType("RESOURCE_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/assuredworkloads/v1beta1/pulumiEnums.go b/sdk/go/google/assuredworkloads/v1beta1/pulumiEnums.go index 7ef32818f6..52e5cddaf7 100644 --- a/sdk/go/google/assuredworkloads/v1beta1/pulumiEnums.go +++ b/sdk/go/google/assuredworkloads/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Indicates the type of resource. This field should be specified to correspond the id to the right project type (CONSUMER_PROJECT or ENCRYPTION_KEYS_PROJECT) @@ -188,12 +187,6 @@ func (in *googleCloudAssuredworkloadsV1beta1WorkloadResourceSettingsResourceType return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudAssuredworkloadsV1beta1WorkloadResourceSettingsResourceTypePtrOutput) } -func (in *googleCloudAssuredworkloadsV1beta1WorkloadResourceSettingsResourceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudAssuredworkloadsV1beta1WorkloadResourceSettingsResourceType] { - return pulumix.Output[*GoogleCloudAssuredworkloadsV1beta1WorkloadResourceSettingsResourceType]{ - OutputState: in.ToGoogleCloudAssuredworkloadsV1beta1WorkloadResourceSettingsResourceTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Immutable. Compliance Regime associated with this workload. type WorkloadComplianceRegime string @@ -413,12 +406,6 @@ func (in *workloadComplianceRegimePtr) ToWorkloadComplianceRegimePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(WorkloadComplianceRegimePtrOutput) } -func (in *workloadComplianceRegimePtr) ToOutput(ctx context.Context) pulumix.Output[*WorkloadComplianceRegime] { - return pulumix.Output[*WorkloadComplianceRegime]{ - OutputState: in.ToWorkloadComplianceRegimePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Partner regime associated with this workload. type WorkloadPartner string @@ -595,12 +582,6 @@ func (in *workloadPartnerPtr) ToWorkloadPartnerPtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(WorkloadPartnerPtrOutput) } -func (in *workloadPartnerPtr) ToOutput(ctx context.Context) pulumix.Output[*WorkloadPartner] { - return pulumix.Output[*WorkloadPartner]{ - OutputState: in.ToWorkloadPartnerPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudAssuredworkloadsV1beta1WorkloadResourceSettingsResourceTypeInput)(nil)).Elem(), GoogleCloudAssuredworkloadsV1beta1WorkloadResourceSettingsResourceType("RESOURCE_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudAssuredworkloadsV1beta1WorkloadResourceSettingsResourceTypePtrInput)(nil)).Elem(), GoogleCloudAssuredworkloadsV1beta1WorkloadResourceSettingsResourceType("RESOURCE_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/backupdr/v1/pulumiEnums.go b/sdk/go/google/backupdr/v1/pulumiEnums.go index 1e80f868e4..bd492b8670 100644 --- a/sdk/go/google/backupdr/v1/pulumiEnums.go +++ b/sdk/go/google/backupdr/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of the ManagementServer resource. type ManagementServerType string @@ -359,12 +352,6 @@ func (in *managementServerTypePtr) ToManagementServerTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(ManagementServerTypePtrOutput) } -func (in *managementServerTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ManagementServerType] { - return pulumix.Output[*ManagementServerType]{ - OutputState: in.ToManagementServerTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The network connect mode of the ManagementServer instance. For this version, only PRIVATE_SERVICE_ACCESS is supported. type NetworkConfigPeeringMode string @@ -533,12 +520,6 @@ func (in *networkConfigPeeringModePtr) ToNetworkConfigPeeringModePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(NetworkConfigPeeringModePtrOutput) } -func (in *networkConfigPeeringModePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkConfigPeeringMode] { - return pulumix.Output[*NetworkConfigPeeringMode]{ - OutputState: in.ToNetworkConfigPeeringModePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/baremetalsolution/v2/pulumiEnums.go b/sdk/go/google/baremetalsolution/v2/pulumiEnums.go index ffdcf7c001..4cf6345a9e 100644 --- a/sdk/go/google/baremetalsolution/v2/pulumiEnums.go +++ b/sdk/go/google/baremetalsolution/v2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Mount permissions. @@ -182,12 +181,6 @@ func (in *allowedClientMountPermissionsPtr) ToAllowedClientMountPermissionsPtrOu return pulumi.ToOutputWithContext(ctx, in).(AllowedClientMountPermissionsPtrOutput) } -func (in *allowedClientMountPermissionsPtr) ToOutput(ctx context.Context) pulumix.Output[*AllowedClientMountPermissions] { - return pulumix.Output[*AllowedClientMountPermissions]{ - OutputState: in.ToAllowedClientMountPermissionsPtrOutputWithContext(ctx).OutputState, - } -} - // The type of network configuration on the instance. type InstanceConfigNetworkConfig string @@ -359,12 +352,6 @@ func (in *instanceConfigNetworkConfigPtr) ToInstanceConfigNetworkConfigPtrOutput return pulumi.ToOutputWithContext(ctx, in).(InstanceConfigNetworkConfigPtrOutput) } -func (in *instanceConfigNetworkConfigPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceConfigNetworkConfig] { - return pulumix.Output[*InstanceConfigNetworkConfig]{ - OutputState: in.ToInstanceConfigNetworkConfigPtrOutputWithContext(ctx).OutputState, - } -} - // Type of network. type LogicalNetworkInterfaceNetworkType string @@ -536,12 +523,6 @@ func (in *logicalNetworkInterfaceNetworkTypePtr) ToLogicalNetworkInterfaceNetwor return pulumi.ToOutputWithContext(ctx, in).(LogicalNetworkInterfaceNetworkTypePtrOutput) } -func (in *logicalNetworkInterfaceNetworkTypePtr) ToOutput(ctx context.Context) pulumix.Output[*LogicalNetworkInterfaceNetworkType] { - return pulumix.Output[*LogicalNetworkInterfaceNetworkType]{ - OutputState: in.ToLogicalNetworkInterfaceNetworkTypePtrOutputWithContext(ctx).OutputState, - } -} - // Interconnect bandwidth. Set only when type is CLIENT. type NetworkConfigBandwidth string @@ -719,12 +700,6 @@ func (in *networkConfigBandwidthPtr) ToNetworkConfigBandwidthPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(NetworkConfigBandwidthPtrOutput) } -func (in *networkConfigBandwidthPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkConfigBandwidth] { - return pulumix.Output[*NetworkConfigBandwidth]{ - OutputState: in.ToNetworkConfigBandwidthPtrOutputWithContext(ctx).OutputState, - } -} - // Service CIDR, if any. type NetworkConfigServiceCidr string @@ -902,12 +877,6 @@ func (in *networkConfigServiceCidrPtr) ToNetworkConfigServiceCidrPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(NetworkConfigServiceCidrPtrOutput) } -func (in *networkConfigServiceCidrPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkConfigServiceCidr] { - return pulumix.Output[*NetworkConfigServiceCidr]{ - OutputState: in.ToNetworkConfigServiceCidrPtrOutputWithContext(ctx).OutputState, - } -} - // The type of this network, either Client or Private. type NetworkConfigType string @@ -1079,12 +1048,6 @@ func (in *networkConfigTypePtr) ToNetworkConfigTypePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(NetworkConfigTypePtrOutput) } -func (in *networkConfigTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkConfigType] { - return pulumix.Output[*NetworkConfigType]{ - OutputState: in.ToNetworkConfigTypePtrOutputWithContext(ctx).OutputState, - } -} - // Export permissions. type NfsExportPermissions string @@ -1256,12 +1219,6 @@ func (in *nfsExportPermissionsPtr) ToNfsExportPermissionsPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(NfsExportPermissionsPtrOutput) } -func (in *nfsExportPermissionsPtr) ToOutput(ctx context.Context) pulumix.Output[*NfsExportPermissions] { - return pulumix.Output[*NfsExportPermissions]{ - OutputState: in.ToNfsExportPermissionsPtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The storage type of the underlying volume. type NfsShareStorageType string @@ -1433,12 +1390,6 @@ func (in *nfsShareStorageTypePtr) ToNfsShareStorageTypePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(NfsShareStorageTypePtrOutput) } -func (in *nfsShareStorageTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NfsShareStorageType] { - return pulumix.Output[*NfsShareStorageType]{ - OutputState: in.ToNfsShareStorageTypePtrOutputWithContext(ctx).OutputState, - } -} - // Performance tier of the Volume. Default is SHARED. type VolumeConfigPerformanceTier string @@ -1613,12 +1564,6 @@ func (in *volumeConfigPerformanceTierPtr) ToVolumeConfigPerformanceTierPtrOutput return pulumi.ToOutputWithContext(ctx, in).(VolumeConfigPerformanceTierPtrOutput) } -func (in *volumeConfigPerformanceTierPtr) ToOutput(ctx context.Context) pulumix.Output[*VolumeConfigPerformanceTier] { - return pulumix.Output[*VolumeConfigPerformanceTier]{ - OutputState: in.ToVolumeConfigPerformanceTierPtrOutputWithContext(ctx).OutputState, - } -} - // Volume protocol. type VolumeConfigProtocol string @@ -1790,12 +1735,6 @@ func (in *volumeConfigProtocolPtr) ToVolumeConfigProtocolPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(VolumeConfigProtocolPtrOutput) } -func (in *volumeConfigProtocolPtr) ToOutput(ctx context.Context) pulumix.Output[*VolumeConfigProtocol] { - return pulumix.Output[*VolumeConfigProtocol]{ - OutputState: in.ToVolumeConfigProtocolPtrOutputWithContext(ctx).OutputState, - } -} - // The type of this Volume. type VolumeConfigType string @@ -1967,12 +1906,6 @@ func (in *volumeConfigTypePtr) ToVolumeConfigTypePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(VolumeConfigTypePtrOutput) } -func (in *volumeConfigTypePtr) ToOutput(ctx context.Context) pulumix.Output[*VolumeConfigType] { - return pulumix.Output[*VolumeConfigType]{ - OutputState: in.ToVolumeConfigTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AllowedClientMountPermissionsInput)(nil)).Elem(), AllowedClientMountPermissions("MOUNT_PERMISSIONS_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AllowedClientMountPermissionsPtrInput)(nil)).Elem(), AllowedClientMountPermissions("MOUNT_PERMISSIONS_UNSPECIFIED")) diff --git a/sdk/go/google/batch/v1/pulumiEnums.go b/sdk/go/google/batch/v1/pulumiEnums.go index b46f6a8a47..33aaee56b2 100644 --- a/sdk/go/google/batch/v1/pulumiEnums.go +++ b/sdk/go/google/batch/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The provisioning model. @@ -185,12 +184,6 @@ func (in *instancePolicyProvisioningModelPtr) ToInstancePolicyProvisioningModelP return pulumi.ToOutputWithContext(ctx, in).(InstancePolicyProvisioningModelPtrOutput) } -func (in *instancePolicyProvisioningModelPtr) ToOutput(ctx context.Context) pulumix.Output[*InstancePolicyProvisioningModel] { - return pulumix.Output[*InstancePolicyProvisioningModel]{ - OutputState: in.ToInstancePolicyProvisioningModelPtrOutputWithContext(ctx).OutputState, - } -} - // Action to execute when ActionCondition is true. When RETRY_TASK is specified, we will retry failed tasks if we notice any exit code match and fail tasks if no match is found. Likewise, when FAIL_TASK is specified, we will fail tasks if we notice any exit code match and retry tasks if no match is found. type LifecyclePolicyAction string @@ -362,12 +355,6 @@ func (in *lifecyclePolicyActionPtr) ToLifecyclePolicyActionPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(LifecyclePolicyActionPtrOutput) } -func (in *lifecyclePolicyActionPtr) ToOutput(ctx context.Context) pulumix.Output[*LifecyclePolicyAction] { - return pulumix.Output[*LifecyclePolicyAction]{ - OutputState: in.ToLifecyclePolicyActionPtrOutputWithContext(ctx).OutputState, - } -} - // Where logs should be saved. type LogsPolicyDestination string @@ -539,12 +526,6 @@ func (in *logsPolicyDestinationPtr) ToLogsPolicyDestinationPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(LogsPolicyDestinationPtrOutput) } -func (in *logsPolicyDestinationPtr) ToOutput(ctx context.Context) pulumix.Output[*LogsPolicyDestination] { - return pulumix.Output[*LogsPolicyDestination]{ - OutputState: in.ToLogsPolicyDestinationPtrOutputWithContext(ctx).OutputState, - } -} - // The new job state. type MessageNewJobState string @@ -728,12 +709,6 @@ func (in *messageNewJobStatePtr) ToMessageNewJobStatePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(MessageNewJobStatePtrOutput) } -func (in *messageNewJobStatePtr) ToOutput(ctx context.Context) pulumix.Output[*MessageNewJobState] { - return pulumix.Output[*MessageNewJobState]{ - OutputState: in.ToMessageNewJobStatePtrOutputWithContext(ctx).OutputState, - } -} - // The new task state. type MessageNewTaskState string @@ -917,12 +892,6 @@ func (in *messageNewTaskStatePtr) ToMessageNewTaskStatePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(MessageNewTaskStatePtrOutput) } -func (in *messageNewTaskStatePtr) ToOutput(ctx context.Context) pulumix.Output[*MessageNewTaskState] { - return pulumix.Output[*MessageNewTaskState]{ - OutputState: in.ToMessageNewTaskStatePtrOutputWithContext(ctx).OutputState, - } -} - // The message type. type MessageType string @@ -1094,12 +1063,6 @@ func (in *messageTypePtr) ToMessageTypePtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(MessageTypePtrOutput) } -func (in *messageTypePtr) ToOutput(ctx context.Context) pulumix.Output[*MessageType] { - return pulumix.Output[*MessageType]{ - OutputState: in.ToMessageTypePtrOutputWithContext(ctx).OutputState, - } -} - // Scheduling policy for Tasks in the TaskGroup. The default value is AS_SOON_AS_POSSIBLE. type TaskGroupSchedulingPolicy string @@ -1271,12 +1234,6 @@ func (in *taskGroupSchedulingPolicyPtr) ToTaskGroupSchedulingPolicyPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(TaskGroupSchedulingPolicyPtrOutput) } -func (in *taskGroupSchedulingPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*TaskGroupSchedulingPolicy] { - return pulumix.Output[*TaskGroupSchedulingPolicy]{ - OutputState: in.ToTaskGroupSchedulingPolicyPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*InstancePolicyProvisioningModelInput)(nil)).Elem(), InstancePolicyProvisioningModel("PROVISIONING_MODEL_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*InstancePolicyProvisioningModelPtrInput)(nil)).Elem(), InstancePolicyProvisioningModel("PROVISIONING_MODEL_UNSPECIFIED")) diff --git a/sdk/go/google/beyondcorp/v1/pulumiEnums.go b/sdk/go/google/beyondcorp/v1/pulumiEnums.go index aa6a9c7c40..380f1f3146 100644 --- a/sdk/go/google/beyondcorp/v1/pulumiEnums.go +++ b/sdk/go/google/beyondcorp/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Required. The type of network connectivity used by the AppConnection. @@ -179,12 +178,6 @@ func (in *appConnectionTypePtr) ToAppConnectionTypePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(AppConnectionTypePtrOutput) } -func (in *appConnectionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AppConnectionType] { - return pulumix.Output[*AppConnectionType]{ - OutputState: in.ToAppConnectionTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of hosting used by the AppGateway. type AppGatewayHostType string @@ -353,12 +346,6 @@ func (in *appGatewayHostTypePtr) ToAppGatewayHostTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(AppGatewayHostTypePtrOutput) } -func (in *appGatewayHostTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AppGatewayHostType] { - return pulumix.Output[*AppGatewayHostType]{ - OutputState: in.ToAppGatewayHostTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of network connectivity used by the AppGateway. type AppGatewayType string @@ -527,12 +514,6 @@ func (in *appGatewayTypePtr) ToAppGatewayTypePtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(AppGatewayTypePtrOutput) } -func (in *appGatewayTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AppGatewayType] { - return pulumix.Output[*AppGatewayType]{ - OutputState: in.ToAppGatewayTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of hosting used by the gateway. type GoogleCloudBeyondcorpAppconnectionsV1AppConnectionGatewayType string @@ -701,12 +682,6 @@ func (in *googleCloudBeyondcorpAppconnectionsV1AppConnectionGatewayTypePtr) ToGo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudBeyondcorpAppconnectionsV1AppConnectionGatewayTypePtrOutput) } -func (in *googleCloudBeyondcorpAppconnectionsV1AppConnectionGatewayTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudBeyondcorpAppconnectionsV1AppConnectionGatewayType] { - return pulumix.Output[*GoogleCloudBeyondcorpAppconnectionsV1AppConnectionGatewayType]{ - OutputState: in.ToGoogleCloudBeyondcorpAppconnectionsV1AppConnectionGatewayTypePtrOutputWithContext(ctx).OutputState, - } -} - // Overall health status. Overall status is derived based on the status of each sub level resources. type GoogleCloudBeyondcorpAppconnectorsV1ResourceInfoStatus string @@ -884,12 +859,6 @@ func (in *googleCloudBeyondcorpAppconnectorsV1ResourceInfoStatusPtr) ToGoogleClo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudBeyondcorpAppconnectorsV1ResourceInfoStatusPtrOutput) } -func (in *googleCloudBeyondcorpAppconnectorsV1ResourceInfoStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudBeyondcorpAppconnectorsV1ResourceInfoStatus] { - return pulumix.Output[*GoogleCloudBeyondcorpAppconnectorsV1ResourceInfoStatus]{ - OutputState: in.ToGoogleCloudBeyondcorpAppconnectorsV1ResourceInfoStatusPtrOutputWithContext(ctx).OutputState, - } -} - // The log type that this config enables. type GoogleIamV1AuditLogConfigLogType string @@ -1064,12 +1033,6 @@ func (in *googleIamV1AuditLogConfigLogTypePtr) ToGoogleIamV1AuditLogConfigLogTyp return pulumi.ToOutputWithContext(ctx, in).(GoogleIamV1AuditLogConfigLogTypePtrOutput) } -func (in *googleIamV1AuditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleIamV1AuditLogConfigLogType] { - return pulumix.Output[*GoogleIamV1AuditLogConfigLogType]{ - OutputState: in.ToGoogleIamV1AuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AppConnectionTypeInput)(nil)).Elem(), AppConnectionType("TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AppConnectionTypePtrInput)(nil)).Elem(), AppConnectionType("TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/beyondcorp/v1alpha/pulumiEnums.go b/sdk/go/google/beyondcorp/v1alpha/pulumiEnums.go index d457486fd3..7c61721d24 100644 --- a/sdk/go/google/beyondcorp/v1alpha/pulumiEnums.go +++ b/sdk/go/google/beyondcorp/v1alpha/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Required. The type of network connectivity used by the AppConnection. @@ -179,12 +178,6 @@ func (in *appConnectionTypePtr) ToAppConnectionTypePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(AppConnectionTypePtrOutput) } -func (in *appConnectionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AppConnectionType] { - return pulumix.Output[*AppConnectionType]{ - OutputState: in.ToAppConnectionTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of hosting used by the AppGateway. type AppGatewayHostType string @@ -353,12 +346,6 @@ func (in *appGatewayHostTypePtr) ToAppGatewayHostTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(AppGatewayHostTypePtrOutput) } -func (in *appGatewayHostTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AppGatewayHostType] { - return pulumix.Output[*AppGatewayHostType]{ - OutputState: in.ToAppGatewayHostTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of network connectivity used by the AppGateway. type AppGatewayType string @@ -527,12 +514,6 @@ func (in *appGatewayTypePtr) ToAppGatewayTypePtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(AppGatewayTypePtrOutput) } -func (in *appGatewayTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AppGatewayType] { - return pulumix.Output[*AppGatewayType]{ - OutputState: in.ToAppGatewayTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of network connectivity used by the connection. type ConnectionType string @@ -701,12 +682,6 @@ func (in *connectionTypePtr) ToConnectionTypePtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(ConnectionTypePtrOutput) } -func (in *connectionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ConnectionType] { - return pulumix.Output[*ConnectionType]{ - OutputState: in.ToConnectionTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of hosting used by the gateway. type GatewayType string @@ -875,12 +850,6 @@ func (in *gatewayTypePtr) ToGatewayTypePtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(GatewayTypePtrOutput) } -func (in *gatewayTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GatewayType] { - return pulumix.Output[*GatewayType]{ - OutputState: in.ToGatewayTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of hosting used by the gateway. type GoogleCloudBeyondcorpAppconnectionsV1alphaAppConnectionGatewayType string @@ -1049,12 +1018,6 @@ func (in *googleCloudBeyondcorpAppconnectionsV1alphaAppConnectionGatewayTypePtr) return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudBeyondcorpAppconnectionsV1alphaAppConnectionGatewayTypePtrOutput) } -func (in *googleCloudBeyondcorpAppconnectionsV1alphaAppConnectionGatewayTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudBeyondcorpAppconnectionsV1alphaAppConnectionGatewayType] { - return pulumix.Output[*GoogleCloudBeyondcorpAppconnectionsV1alphaAppConnectionGatewayType]{ - OutputState: in.ToGoogleCloudBeyondcorpAppconnectionsV1alphaAppConnectionGatewayTypePtrOutputWithContext(ctx).OutputState, - } -} - // Overall health status. Overall status is derived based on the status of each sub level resources. type GoogleCloudBeyondcorpAppconnectorsV1alphaResourceInfoStatus string @@ -1232,12 +1195,6 @@ func (in *googleCloudBeyondcorpAppconnectorsV1alphaResourceInfoStatusPtr) ToGoog return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudBeyondcorpAppconnectorsV1alphaResourceInfoStatusPtrOutput) } -func (in *googleCloudBeyondcorpAppconnectorsV1alphaResourceInfoStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudBeyondcorpAppconnectorsV1alphaResourceInfoStatus] { - return pulumix.Output[*GoogleCloudBeyondcorpAppconnectorsV1alphaResourceInfoStatus]{ - OutputState: in.ToGoogleCloudBeyondcorpAppconnectorsV1alphaResourceInfoStatusPtrOutputWithContext(ctx).OutputState, - } -} - // The log type that this config enables. type GoogleIamV1AuditLogConfigLogType string @@ -1412,12 +1369,6 @@ func (in *googleIamV1AuditLogConfigLogTypePtr) ToGoogleIamV1AuditLogConfigLogTyp return pulumi.ToOutputWithContext(ctx, in).(GoogleIamV1AuditLogConfigLogTypePtrOutput) } -func (in *googleIamV1AuditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleIamV1AuditLogConfigLogType] { - return pulumix.Output[*GoogleIamV1AuditLogConfigLogType]{ - OutputState: in.ToGoogleIamV1AuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Overall health status. Overall status is derived based on the status of each sub level resources. type ResourceInfoStatus string @@ -1595,12 +1546,6 @@ func (in *resourceInfoStatusPtr) ToResourceInfoStatusPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(ResourceInfoStatusPtrOutput) } -func (in *resourceInfoStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*ResourceInfoStatus] { - return pulumix.Output[*ResourceInfoStatus]{ - OutputState: in.ToResourceInfoStatusPtrOutputWithContext(ctx).OutputState, - } -} - // Required. SKU of subscription. type SubscriptionSku string @@ -1769,12 +1714,6 @@ func (in *subscriptionSkuPtr) ToSubscriptionSkuPtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(SubscriptionSkuPtrOutput) } -func (in *subscriptionSkuPtr) ToOutput(ctx context.Context) pulumix.Output[*SubscriptionSku] { - return pulumix.Output[*SubscriptionSku]{ - OutputState: in.ToSubscriptionSkuPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Type of subscription. type SubscriptionType string @@ -1949,12 +1888,6 @@ func (in *subscriptionTypePtr) ToSubscriptionTypePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(SubscriptionTypePtrOutput) } -func (in *subscriptionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SubscriptionType] { - return pulumix.Output[*SubscriptionType]{ - OutputState: in.ToSubscriptionTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AppConnectionTypeInput)(nil)).Elem(), AppConnectionType("TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AppConnectionTypePtrInput)(nil)).Elem(), AppConnectionType("TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/biglake/v1/pulumiEnums.go b/sdk/go/google/biglake/v1/pulumiEnums.go index b7ec5ebbd4..1a0fd74b41 100644 --- a/sdk/go/google/biglake/v1/pulumiEnums.go +++ b/sdk/go/google/biglake/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The database type. @@ -179,12 +178,6 @@ func (in *databaseTypePtr) ToDatabaseTypePtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(DatabaseTypePtrOutput) } -func (in *databaseTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DatabaseType] { - return pulumix.Output[*DatabaseType]{ - OutputState: in.ToDatabaseTypePtrOutputWithContext(ctx).OutputState, - } -} - // The table type. type TableType string @@ -353,12 +346,6 @@ func (in *tableTypePtr) ToTableTypePtrOutputWithContext(ctx context.Context) Tab return pulumi.ToOutputWithContext(ctx, in).(TableTypePtrOutput) } -func (in *tableTypePtr) ToOutput(ctx context.Context) pulumix.Output[*TableType] { - return pulumix.Output[*TableType]{ - OutputState: in.ToTableTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*DatabaseTypeInput)(nil)).Elem(), DatabaseType("TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*DatabaseTypePtrInput)(nil)).Elem(), DatabaseType("TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/bigquery/v2/pulumiEnums.go b/sdk/go/google/bigquery/v2/pulumiEnums.go index e93b69d460..f7a72517c9 100644 --- a/sdk/go/google/bigquery/v2/pulumiEnums.go +++ b/sdk/go/google/bigquery/v2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Optional. Defaults to FIXED_TYPE. @@ -182,12 +181,6 @@ func (in *argumentArgumentKindPtr) ToArgumentArgumentKindPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(ArgumentArgumentKindPtrOutput) } -func (in *argumentArgumentKindPtr) ToOutput(ctx context.Context) pulumix.Output[*ArgumentArgumentKind] { - return pulumix.Output[*ArgumentArgumentKind]{ - OutputState: in.ToArgumentArgumentKindPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Specifies whether the argument is input or output. Can be set for procedures only. type ArgumentMode string @@ -362,12 +355,6 @@ func (in *argumentModePtr) ToArgumentModePtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(ArgumentModePtrOutput) } -func (in *argumentModePtr) ToOutput(ctx context.Context) pulumix.Output[*ArgumentMode] { - return pulumix.Output[*ArgumentMode]{ - OutputState: in.ToArgumentModePtrOutputWithContext(ctx).OutputState, - } -} - // The log type that this config enables. type AuditLogConfigLogType string @@ -542,12 +529,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - type DatasetAccessEntryTargetTypesItem string const ( @@ -718,12 +699,6 @@ func (in *datasetAccessEntryTargetTypesItemPtr) ToDatasetAccessEntryTargetTypesI return pulumi.ToOutputWithContext(ctx, in).(DatasetAccessEntryTargetTypesItemPtrOutput) } -func (in *datasetAccessEntryTargetTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*DatasetAccessEntryTargetTypesItem] { - return pulumix.Output[*DatasetAccessEntryTargetTypesItem]{ - OutputState: in.ToDatasetAccessEntryTargetTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // DatasetAccessEntryTargetTypesItemArrayInput is an input type that accepts DatasetAccessEntryTargetTypesItemArray and DatasetAccessEntryTargetTypesItemArrayOutput values. // You can construct a concrete instance of `DatasetAccessEntryTargetTypesItemArrayInput` via: // @@ -937,12 +912,6 @@ func (in *routineDataGovernanceTypePtr) ToRoutineDataGovernanceTypePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(RoutineDataGovernanceTypePtrOutput) } -func (in *routineDataGovernanceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RoutineDataGovernanceType] { - return pulumix.Output[*RoutineDataGovernanceType]{ - OutputState: in.ToRoutineDataGovernanceTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The determinism level of the JavaScript UDF, if defined. type RoutineDeterminismLevel string @@ -1114,12 +1083,6 @@ func (in *routineDeterminismLevelPtr) ToRoutineDeterminismLevelPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(RoutineDeterminismLevelPtrOutput) } -func (in *routineDeterminismLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*RoutineDeterminismLevel] { - return pulumix.Output[*RoutineDeterminismLevel]{ - OutputState: in.ToRoutineDeterminismLevelPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Defaults to "SQL" if remote_function_options field is absent, not set otherwise. type RoutineLanguage string @@ -1300,12 +1263,6 @@ func (in *routineLanguagePtr) ToRoutineLanguagePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(RoutineLanguagePtrOutput) } -func (in *routineLanguagePtr) ToOutput(ctx context.Context) pulumix.Output[*RoutineLanguage] { - return pulumix.Output[*RoutineLanguage]{ - OutputState: in.ToRoutineLanguagePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of routine. type RoutineRoutineType string @@ -1483,12 +1440,6 @@ func (in *routineRoutineTypePtr) ToRoutineRoutineTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(RoutineRoutineTypePtrOutput) } -func (in *routineRoutineTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RoutineRoutineType] { - return pulumix.Output[*RoutineRoutineType]{ - OutputState: in.ToRoutineRoutineTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The security mode of the routine, if defined. If not defined, the security mode is automatically determined from the routine's configuration. type RoutineSecurityMode string @@ -1660,12 +1611,6 @@ func (in *routineSecurityModePtr) ToRoutineSecurityModePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(RoutineSecurityModePtrOutput) } -func (in *routineSecurityModePtr) ToOutput(ctx context.Context) pulumix.Output[*RoutineSecurityMode] { - return pulumix.Output[*RoutineSecurityMode]{ - OutputState: in.ToRoutineSecurityModePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The top level type of this field. Can be any GoogleSQL data type (e.g., "INT64", "DATE", "ARRAY"). type StandardSqlDataTypeTypeKind string @@ -1882,12 +1827,6 @@ func (in *standardSqlDataTypeTypeKindPtr) ToStandardSqlDataTypeTypeKindPtrOutput return pulumi.ToOutputWithContext(ctx, in).(StandardSqlDataTypeTypeKindPtrOutput) } -func (in *standardSqlDataTypeTypeKindPtr) ToOutput(ctx context.Context) pulumix.Output[*StandardSqlDataTypeTypeKind] { - return pulumix.Output[*StandardSqlDataTypeTypeKind]{ - OutputState: in.ToStandardSqlDataTypeTypeKindPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ArgumentArgumentKindInput)(nil)).Elem(), ArgumentArgumentKind("ARGUMENT_KIND_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*ArgumentArgumentKindPtrInput)(nil)).Elem(), ArgumentArgumentKind("ARGUMENT_KIND_UNSPECIFIED")) diff --git a/sdk/go/google/bigqueryconnection/v1beta1/pulumiEnums.go b/sdk/go/google/bigqueryconnection/v1beta1/pulumiEnums.go index 2b5f9b0e7a..73cbfddc50 100644 --- a/sdk/go/google/bigqueryconnection/v1beta1/pulumiEnums.go +++ b/sdk/go/google/bigqueryconnection/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of the Cloud SQL database. type CloudSqlPropertiesType string @@ -362,12 +355,6 @@ func (in *cloudSqlPropertiesTypePtr) ToCloudSqlPropertiesTypePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(CloudSqlPropertiesTypePtrOutput) } -func (in *cloudSqlPropertiesTypePtr) ToOutput(ctx context.Context) pulumix.Output[*CloudSqlPropertiesType] { - return pulumix.Output[*CloudSqlPropertiesType]{ - OutputState: in.ToCloudSqlPropertiesTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/bigquerydatapolicy/v1/pulumiEnums.go b/sdk/go/google/bigquerydatapolicy/v1/pulumiEnums.go index 9c5349fc90..708636e7ae 100644 --- a/sdk/go/google/bigquerydatapolicy/v1/pulumiEnums.go +++ b/sdk/go/google/bigquerydatapolicy/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // A predefined masking expression. type DataMaskingPolicyPredefinedExpression string @@ -377,12 +370,6 @@ func (in *dataMaskingPolicyPredefinedExpressionPtr) ToDataMaskingPolicyPredefine return pulumi.ToOutputWithContext(ctx, in).(DataMaskingPolicyPredefinedExpressionPtrOutput) } -func (in *dataMaskingPolicyPredefinedExpressionPtr) ToOutput(ctx context.Context) pulumix.Output[*DataMaskingPolicyPredefinedExpression] { - return pulumix.Output[*DataMaskingPolicyPredefinedExpression]{ - OutputState: in.ToDataMaskingPolicyPredefinedExpressionPtrOutputWithContext(ctx).OutputState, - } -} - // Type of data policy. type DataPolicyDataPolicyType string @@ -554,12 +541,6 @@ func (in *dataPolicyDataPolicyTypePtr) ToDataPolicyDataPolicyTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(DataPolicyDataPolicyTypePtrOutput) } -func (in *dataPolicyDataPolicyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DataPolicyDataPolicyType] { - return pulumix.Output[*DataPolicyDataPolicyType]{ - OutputState: in.ToDataPolicyDataPolicyTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/bigqueryreservation/v1/pulumiEnums.go b/sdk/go/google/bigqueryreservation/v1/pulumiEnums.go index a175a79dfe..cdf6e36dbd 100644 --- a/sdk/go/google/bigqueryreservation/v1/pulumiEnums.go +++ b/sdk/go/google/bigqueryreservation/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Edition of the capacity commitment. @@ -185,12 +184,6 @@ func (in *capacityCommitmentEditionPtr) ToCapacityCommitmentEditionPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(CapacityCommitmentEditionPtrOutput) } -func (in *capacityCommitmentEditionPtr) ToOutput(ctx context.Context) pulumix.Output[*CapacityCommitmentEdition] { - return pulumix.Output[*CapacityCommitmentEdition]{ - OutputState: in.ToCapacityCommitmentEditionPtrOutputWithContext(ctx).OutputState, - } -} - // Capacity commitment commitment plan. type CapacityCommitmentPlan string @@ -383,12 +376,6 @@ func (in *capacityCommitmentPlanPtr) ToCapacityCommitmentPlanPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(CapacityCommitmentPlanPtrOutput) } -func (in *capacityCommitmentPlanPtr) ToOutput(ctx context.Context) pulumix.Output[*CapacityCommitmentPlan] { - return pulumix.Output[*CapacityCommitmentPlan]{ - OutputState: in.ToCapacityCommitmentPlanPtrOutputWithContext(ctx).OutputState, - } -} - // The plan this capacity commitment is converted to after commitment_end_time passes. Once the plan is changed, committed period is extended according to commitment plan. Only applicable for ANNUAL and TRIAL commitments. type CapacityCommitmentRenewalPlan string @@ -581,12 +568,6 @@ func (in *capacityCommitmentRenewalPlanPtr) ToCapacityCommitmentRenewalPlanPtrOu return pulumi.ToOutputWithContext(ctx, in).(CapacityCommitmentRenewalPlanPtrOutput) } -func (in *capacityCommitmentRenewalPlanPtr) ToOutput(ctx context.Context) pulumix.Output[*CapacityCommitmentRenewalPlan] { - return pulumix.Output[*CapacityCommitmentRenewalPlan]{ - OutputState: in.ToCapacityCommitmentRenewalPlanPtrOutputWithContext(ctx).OutputState, - } -} - // Edition of the reservation. type ReservationEdition string @@ -761,12 +742,6 @@ func (in *reservationEditionPtr) ToReservationEditionPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(ReservationEditionPtrOutput) } -func (in *reservationEditionPtr) ToOutput(ctx context.Context) pulumix.Output[*ReservationEdition] { - return pulumix.Output[*ReservationEdition]{ - OutputState: in.ToReservationEditionPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*CapacityCommitmentEditionInput)(nil)).Elem(), CapacityCommitmentEdition("EDITION_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*CapacityCommitmentEditionPtrInput)(nil)).Elem(), CapacityCommitmentEdition("EDITION_UNSPECIFIED")) diff --git a/sdk/go/google/bigqueryreservation/v1beta1/pulumiEnums.go b/sdk/go/google/bigqueryreservation/v1beta1/pulumiEnums.go index f1f34145e2..118d986fc3 100644 --- a/sdk/go/google/bigqueryreservation/v1beta1/pulumiEnums.go +++ b/sdk/go/google/bigqueryreservation/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Capacity commitment commitment plan. @@ -188,12 +187,6 @@ func (in *capacityCommitmentPlanPtr) ToCapacityCommitmentPlanPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(CapacityCommitmentPlanPtrOutput) } -func (in *capacityCommitmentPlanPtr) ToOutput(ctx context.Context) pulumix.Output[*CapacityCommitmentPlan] { - return pulumix.Output[*CapacityCommitmentPlan]{ - OutputState: in.ToCapacityCommitmentPlanPtrOutputWithContext(ctx).OutputState, - } -} - // The plan this capacity commitment is converted to after commitment_end_time passes. Once the plan is changed, committed period is extended according to commitment plan. Only applicable for ANNUAL commitments. type CapacityCommitmentRenewalPlan string @@ -371,12 +364,6 @@ func (in *capacityCommitmentRenewalPlanPtr) ToCapacityCommitmentRenewalPlanPtrOu return pulumi.ToOutputWithContext(ctx, in).(CapacityCommitmentRenewalPlanPtrOutput) } -func (in *capacityCommitmentRenewalPlanPtr) ToOutput(ctx context.Context) pulumix.Output[*CapacityCommitmentRenewalPlan] { - return pulumix.Output[*CapacityCommitmentRenewalPlan]{ - OutputState: in.ToCapacityCommitmentRenewalPlanPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*CapacityCommitmentPlanInput)(nil)).Elem(), CapacityCommitmentPlan("COMMITMENT_PLAN_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*CapacityCommitmentPlanPtrInput)(nil)).Elem(), CapacityCommitmentPlan("COMMITMENT_PLAN_UNSPECIFIED")) diff --git a/sdk/go/google/bigtableadmin/v2/pulumiEnums.go b/sdk/go/google/bigtableadmin/v2/pulumiEnums.go index 1376f03971..722b54d30d 100644 --- a/sdk/go/google/bigtableadmin/v2/pulumiEnums.go +++ b/sdk/go/google/bigtableadmin/v2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // This field has been deprecated in favor of `standard_isolation.priority`. If you set this field, `standard_isolation.priority` will be set instead. The priority of requests sent using this app profile. @@ -182,12 +181,6 @@ func (in *appProfilePriorityPtr) ToAppProfilePriorityPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(AppProfilePriorityPtrOutput) } -func (in *appProfilePriorityPtr) ToOutput(ctx context.Context) pulumix.Output[*AppProfilePriority] { - return pulumix.Output[*AppProfilePriority]{ - OutputState: in.ToAppProfilePriorityPtrOutputWithContext(ctx).OutputState, - } -} - // The log type that this config enables. type AuditLogConfigLogType string @@ -362,12 +355,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The type of storage used by this cluster to serve its parent instance's tables, unless explicitly overridden. type ClusterDefaultStorageType string @@ -539,12 +526,6 @@ func (in *clusterDefaultStorageTypePtr) ToClusterDefaultStorageTypePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(ClusterDefaultStorageTypePtrOutput) } -func (in *clusterDefaultStorageTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ClusterDefaultStorageType] { - return pulumix.Output[*ClusterDefaultStorageType]{ - OutputState: in.ToClusterDefaultStorageTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of the instance. Defaults to `PRODUCTION`. type InstanceType string @@ -716,12 +697,6 @@ func (in *instanceTypePtr) ToInstanceTypePtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(InstanceTypePtrOutput) } -func (in *instanceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceType] { - return pulumix.Output[*InstanceType]{ - OutputState: in.ToInstanceTypePtrOutputWithContext(ctx).OutputState, - } -} - // The priority of requests sent using this app profile. type StandardIsolationPriority string @@ -893,12 +868,6 @@ func (in *standardIsolationPriorityPtr) ToStandardIsolationPriorityPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(StandardIsolationPriorityPtrOutput) } -func (in *standardIsolationPriorityPtr) ToOutput(ctx context.Context) pulumix.Output[*StandardIsolationPriority] { - return pulumix.Output[*StandardIsolationPriority]{ - OutputState: in.ToStandardIsolationPriorityPtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The granularity (i.e. `MILLIS`) at which timestamps are stored in this table. Timestamps not matching the granularity will be rejected. If unspecified at creation time, the value will be set to `MILLIS`. Views: `SCHEMA_VIEW`, `FULL`. type TableGranularity string @@ -1067,12 +1036,6 @@ func (in *tableGranularityPtr) ToTableGranularityPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(TableGranularityPtrOutput) } -func (in *tableGranularityPtr) ToOutput(ctx context.Context) pulumix.Output[*TableGranularity] { - return pulumix.Output[*TableGranularity]{ - OutputState: in.ToTableGranularityPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AppProfilePriorityInput)(nil)).Elem(), AppProfilePriority("PRIORITY_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AppProfilePriorityPtrInput)(nil)).Elem(), AppProfilePriority("PRIORITY_UNSPECIFIED")) diff --git a/sdk/go/google/billingbudgets/v1/pulumiEnums.go b/sdk/go/google/billingbudgets/v1/pulumiEnums.go index b29b22ec37..97c029b0ff 100644 --- a/sdk/go/google/billingbudgets/v1/pulumiEnums.go +++ b/sdk/go/google/billingbudgets/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) type BudgetOwnershipScope string @@ -181,12 +180,6 @@ func (in *budgetOwnershipScopePtr) ToBudgetOwnershipScopePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(BudgetOwnershipScopePtrOutput) } -func (in *budgetOwnershipScopePtr) ToOutput(ctx context.Context) pulumix.Output[*BudgetOwnershipScope] { - return pulumix.Output[*BudgetOwnershipScope]{ - OutputState: in.ToBudgetOwnershipScopePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Specifies to track usage for recurring calendar period. For example, assume that CalendarPeriod.QUARTER is set. The budget tracks usage from April 1 to June 30, when the current calendar month is April, May, June. After that, it tracks usage from July 1 to September 30 when the current calendar month is July, August, September, so on. type GoogleCloudBillingBudgetsV1FilterCalendarPeriod string @@ -361,12 +354,6 @@ func (in *googleCloudBillingBudgetsV1FilterCalendarPeriodPtr) ToGoogleCloudBilli return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudBillingBudgetsV1FilterCalendarPeriodPtrOutput) } -func (in *googleCloudBillingBudgetsV1FilterCalendarPeriodPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudBillingBudgetsV1FilterCalendarPeriod] { - return pulumix.Output[*GoogleCloudBillingBudgetsV1FilterCalendarPeriod]{ - OutputState: in.ToGoogleCloudBillingBudgetsV1FilterCalendarPeriodPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. If not set, default behavior is `INCLUDE_ALL_CREDITS`. type GoogleCloudBillingBudgetsV1FilterCreditTypesTreatment string @@ -540,12 +527,6 @@ func (in *googleCloudBillingBudgetsV1FilterCreditTypesTreatmentPtr) ToGoogleClou return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudBillingBudgetsV1FilterCreditTypesTreatmentPtrOutput) } -func (in *googleCloudBillingBudgetsV1FilterCreditTypesTreatmentPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudBillingBudgetsV1FilterCreditTypesTreatment] { - return pulumix.Output[*GoogleCloudBillingBudgetsV1FilterCreditTypesTreatment]{ - OutputState: in.ToGoogleCloudBillingBudgetsV1FilterCreditTypesTreatmentPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The type of basis used to determine if spend has passed the threshold. Behavior defaults to CURRENT_SPEND if not set. type GoogleCloudBillingBudgetsV1ThresholdRuleSpendBasis string @@ -717,12 +698,6 @@ func (in *googleCloudBillingBudgetsV1ThresholdRuleSpendBasisPtr) ToGoogleCloudBi return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudBillingBudgetsV1ThresholdRuleSpendBasisPtrOutput) } -func (in *googleCloudBillingBudgetsV1ThresholdRuleSpendBasisPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudBillingBudgetsV1ThresholdRuleSpendBasis] { - return pulumix.Output[*GoogleCloudBillingBudgetsV1ThresholdRuleSpendBasis]{ - OutputState: in.ToGoogleCloudBillingBudgetsV1ThresholdRuleSpendBasisPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*BudgetOwnershipScopeInput)(nil)).Elem(), BudgetOwnershipScope("OWNERSHIP_SCOPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*BudgetOwnershipScopePtrInput)(nil)).Elem(), BudgetOwnershipScope("OWNERSHIP_SCOPE_UNSPECIFIED")) diff --git a/sdk/go/google/billingbudgets/v1beta1/pulumiEnums.go b/sdk/go/google/billingbudgets/v1beta1/pulumiEnums.go index b92d8f61d7..96ff25502b 100644 --- a/sdk/go/google/billingbudgets/v1beta1/pulumiEnums.go +++ b/sdk/go/google/billingbudgets/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) type BudgetOwnershipScope string @@ -181,12 +180,6 @@ func (in *budgetOwnershipScopePtr) ToBudgetOwnershipScopePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(BudgetOwnershipScopePtrOutput) } -func (in *budgetOwnershipScopePtr) ToOutput(ctx context.Context) pulumix.Output[*BudgetOwnershipScope] { - return pulumix.Output[*BudgetOwnershipScope]{ - OutputState: in.ToBudgetOwnershipScopePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Specifies to track usage for recurring calendar period. For example, assume that CalendarPeriod.QUARTER is set. The budget will track usage from April 1 to June 30, when the current calendar month is April, May, June. After that, it will track usage from July 1 to September 30 when the current calendar month is July, August, September, so on. type GoogleCloudBillingBudgetsV1beta1FilterCalendarPeriod string @@ -361,12 +354,6 @@ func (in *googleCloudBillingBudgetsV1beta1FilterCalendarPeriodPtr) ToGoogleCloud return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudBillingBudgetsV1beta1FilterCalendarPeriodPtrOutput) } -func (in *googleCloudBillingBudgetsV1beta1FilterCalendarPeriodPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudBillingBudgetsV1beta1FilterCalendarPeriod] { - return pulumix.Output[*GoogleCloudBillingBudgetsV1beta1FilterCalendarPeriod]{ - OutputState: in.ToGoogleCloudBillingBudgetsV1beta1FilterCalendarPeriodPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. If not set, default behavior is `INCLUDE_ALL_CREDITS`. type GoogleCloudBillingBudgetsV1beta1FilterCreditTypesTreatment string @@ -540,12 +527,6 @@ func (in *googleCloudBillingBudgetsV1beta1FilterCreditTypesTreatmentPtr) ToGoogl return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudBillingBudgetsV1beta1FilterCreditTypesTreatmentPtrOutput) } -func (in *googleCloudBillingBudgetsV1beta1FilterCreditTypesTreatmentPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudBillingBudgetsV1beta1FilterCreditTypesTreatment] { - return pulumix.Output[*GoogleCloudBillingBudgetsV1beta1FilterCreditTypesTreatment]{ - OutputState: in.ToGoogleCloudBillingBudgetsV1beta1FilterCreditTypesTreatmentPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The type of basis used to determine if spend has passed the threshold. Behavior defaults to CURRENT_SPEND if not set. type GoogleCloudBillingBudgetsV1beta1ThresholdRuleSpendBasis string @@ -717,12 +698,6 @@ func (in *googleCloudBillingBudgetsV1beta1ThresholdRuleSpendBasisPtr) ToGoogleCl return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudBillingBudgetsV1beta1ThresholdRuleSpendBasisPtrOutput) } -func (in *googleCloudBillingBudgetsV1beta1ThresholdRuleSpendBasisPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudBillingBudgetsV1beta1ThresholdRuleSpendBasis] { - return pulumix.Output[*GoogleCloudBillingBudgetsV1beta1ThresholdRuleSpendBasis]{ - OutputState: in.ToGoogleCloudBillingBudgetsV1beta1ThresholdRuleSpendBasisPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*BudgetOwnershipScopeInput)(nil)).Elem(), BudgetOwnershipScope("OWNERSHIP_SCOPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*BudgetOwnershipScopePtrInput)(nil)).Elem(), BudgetOwnershipScope("OWNERSHIP_SCOPE_UNSPECIFIED")) diff --git a/sdk/go/google/binaryauthorization/v1/pulumiEnums.go b/sdk/go/google/binaryauthorization/v1/pulumiEnums.go index c306906fb5..9ca7da81d8 100644 --- a/sdk/go/google/binaryauthorization/v1/pulumiEnums.go +++ b/sdk/go/google/binaryauthorization/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The signature algorithm used to verify a message against a signature using this key. These signature algorithm must match the structure and any object identifiers encoded in `public_key_pem` (i.e. this algorithm must match that of the public key). @@ -230,12 +229,6 @@ func (in *pkixPublicKeySignatureAlgorithmPtr) ToPkixPublicKeySignatureAlgorithmP return pulumi.ToOutputWithContext(ctx, in).(PkixPublicKeySignatureAlgorithmPtrOutput) } -func (in *pkixPublicKeySignatureAlgorithmPtr) ToOutput(ctx context.Context) pulumix.Output[*PkixPublicKeySignatureAlgorithm] { - return pulumix.Output[*PkixPublicKeySignatureAlgorithm]{ - OutputState: in.ToPkixPublicKeySignatureAlgorithmPtrOutputWithContext(ctx).OutputState, - } -} - // Each verification rule is used for evaluation against provenances generated by a specific builder (group). For some of the builders, such as the Google Cloud Build, users don't need to explicitly specify their roots of trust in the policy since the evaluation service can automatically fetch them based on the builder (group). type VerificationRuleTrustedBuilder string @@ -404,12 +397,6 @@ func (in *verificationRuleTrustedBuilderPtr) ToVerificationRuleTrustedBuilderPtr return pulumi.ToOutputWithContext(ctx, in).(VerificationRuleTrustedBuilderPtrOutput) } -func (in *verificationRuleTrustedBuilderPtr) ToOutput(ctx context.Context) pulumix.Output[*VerificationRuleTrustedBuilder] { - return pulumix.Output[*VerificationRuleTrustedBuilder]{ - OutputState: in.ToVerificationRuleTrustedBuilderPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The threshold for severity for which a fix is currently available. This field is required and must be set. type VulnerabilityCheckMaximumFixableSeverity string @@ -596,12 +583,6 @@ func (in *vulnerabilityCheckMaximumFixableSeverityPtr) ToVulnerabilityCheckMaxim return pulumi.ToOutputWithContext(ctx, in).(VulnerabilityCheckMaximumFixableSeverityPtrOutput) } -func (in *vulnerabilityCheckMaximumFixableSeverityPtr) ToOutput(ctx context.Context) pulumix.Output[*VulnerabilityCheckMaximumFixableSeverity] { - return pulumix.Output[*VulnerabilityCheckMaximumFixableSeverity]{ - OutputState: in.ToVulnerabilityCheckMaximumFixableSeverityPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The threshold for severity for which a fix isn't currently available. This field is required and must be set. type VulnerabilityCheckMaximumUnfixableSeverity string @@ -788,12 +769,6 @@ func (in *vulnerabilityCheckMaximumUnfixableSeverityPtr) ToVulnerabilityCheckMax return pulumi.ToOutputWithContext(ctx, in).(VulnerabilityCheckMaximumUnfixableSeverityPtrOutput) } -func (in *vulnerabilityCheckMaximumUnfixableSeverityPtr) ToOutput(ctx context.Context) pulumix.Output[*VulnerabilityCheckMaximumUnfixableSeverity] { - return pulumix.Output[*VulnerabilityCheckMaximumUnfixableSeverity]{ - OutputState: in.ToVulnerabilityCheckMaximumUnfixableSeverityPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*PkixPublicKeySignatureAlgorithmInput)(nil)).Elem(), PkixPublicKeySignatureAlgorithm("SIGNATURE_ALGORITHM_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*PkixPublicKeySignatureAlgorithmPtrInput)(nil)).Elem(), PkixPublicKeySignatureAlgorithm("SIGNATURE_ALGORITHM_UNSPECIFIED")) diff --git a/sdk/go/google/binaryauthorization/v1beta1/pulumiEnums.go b/sdk/go/google/binaryauthorization/v1beta1/pulumiEnums.go index e0c85ab2d5..aecd6270ab 100644 --- a/sdk/go/google/binaryauthorization/v1beta1/pulumiEnums.go +++ b/sdk/go/google/binaryauthorization/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The signature algorithm used to verify a message against a signature using this key. These signature algorithm must match the structure and any object identifiers encoded in `public_key_pem` (i.e. this algorithm must match that of the public key). @@ -230,12 +229,6 @@ func (in *pkixPublicKeySignatureAlgorithmPtr) ToPkixPublicKeySignatureAlgorithmP return pulumi.ToOutputWithContext(ctx, in).(PkixPublicKeySignatureAlgorithmPtrOutput) } -func (in *pkixPublicKeySignatureAlgorithmPtr) ToOutput(ctx context.Context) pulumix.Output[*PkixPublicKeySignatureAlgorithm] { - return pulumix.Output[*PkixPublicKeySignatureAlgorithm]{ - OutputState: in.ToPkixPublicKeySignatureAlgorithmPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*PkixPublicKeySignatureAlgorithmInput)(nil)).Elem(), PkixPublicKeySignatureAlgorithm("SIGNATURE_ALGORITHM_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*PkixPublicKeySignatureAlgorithmPtrInput)(nil)).Elem(), PkixPublicKeySignatureAlgorithm("SIGNATURE_ALGORITHM_UNSPECIFIED")) diff --git a/sdk/go/google/blockchainnodeengine/v1/pulumiEnums.go b/sdk/go/google/blockchainnodeengine/v1/pulumiEnums.go index 152c670332..bf350951e3 100644 --- a/sdk/go/google/blockchainnodeengine/v1/pulumiEnums.go +++ b/sdk/go/google/blockchainnodeengine/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Immutable. The blockchain type of the node. @@ -179,12 +178,6 @@ func (in *blockchainNodeBlockchainTypePtr) ToBlockchainNodeBlockchainTypePtrOutp return pulumi.ToOutputWithContext(ctx, in).(BlockchainNodeBlockchainTypePtrOutput) } -func (in *blockchainNodeBlockchainTypePtr) ToOutput(ctx context.Context) pulumix.Output[*BlockchainNodeBlockchainType] { - return pulumix.Output[*BlockchainNodeBlockchainType]{ - OutputState: in.ToBlockchainNodeBlockchainTypePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The consensus client. type EthereumDetailsConsensusClient string @@ -356,12 +349,6 @@ func (in *ethereumDetailsConsensusClientPtr) ToEthereumDetailsConsensusClientPtr return pulumi.ToOutputWithContext(ctx, in).(EthereumDetailsConsensusClientPtrOutput) } -func (in *ethereumDetailsConsensusClientPtr) ToOutput(ctx context.Context) pulumix.Output[*EthereumDetailsConsensusClient] { - return pulumix.Output[*EthereumDetailsConsensusClient]{ - OutputState: in.ToEthereumDetailsConsensusClientPtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The execution client type EthereumDetailsExecutionClient string @@ -533,12 +520,6 @@ func (in *ethereumDetailsExecutionClientPtr) ToEthereumDetailsExecutionClientPtr return pulumi.ToOutputWithContext(ctx, in).(EthereumDetailsExecutionClientPtrOutput) } -func (in *ethereumDetailsExecutionClientPtr) ToOutput(ctx context.Context) pulumix.Output[*EthereumDetailsExecutionClient] { - return pulumix.Output[*EthereumDetailsExecutionClient]{ - OutputState: in.ToEthereumDetailsExecutionClientPtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The Ethereum environment being accessed. type EthereumDetailsNetwork string @@ -716,12 +697,6 @@ func (in *ethereumDetailsNetworkPtr) ToEthereumDetailsNetworkPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(EthereumDetailsNetworkPtrOutput) } -func (in *ethereumDetailsNetworkPtr) ToOutput(ctx context.Context) pulumix.Output[*EthereumDetailsNetwork] { - return pulumix.Output[*EthereumDetailsNetwork]{ - OutputState: in.ToEthereumDetailsNetworkPtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The type of Ethereum node. type EthereumDetailsNodeType string @@ -896,12 +871,6 @@ func (in *ethereumDetailsNodeTypePtr) ToEthereumDetailsNodeTypePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(EthereumDetailsNodeTypePtrOutput) } -func (in *ethereumDetailsNodeTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EthereumDetailsNodeType] { - return pulumix.Output[*EthereumDetailsNodeType]{ - OutputState: in.ToEthereumDetailsNodeTypePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. Blockchain garbage collection mode. type GethDetailsGarbageCollectionMode string @@ -1073,12 +1042,6 @@ func (in *gethDetailsGarbageCollectionModePtr) ToGethDetailsGarbageCollectionMod return pulumi.ToOutputWithContext(ctx, in).(GethDetailsGarbageCollectionModePtrOutput) } -func (in *gethDetailsGarbageCollectionModePtr) ToOutput(ctx context.Context) pulumix.Output[*GethDetailsGarbageCollectionMode] { - return pulumix.Output[*GethDetailsGarbageCollectionMode]{ - OutputState: in.ToGethDetailsGarbageCollectionModePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*BlockchainNodeBlockchainTypeInput)(nil)).Elem(), BlockchainNodeBlockchainType("BLOCKCHAIN_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*BlockchainNodeBlockchainTypePtrInput)(nil)).Elem(), BlockchainNodeBlockchainType("BLOCKCHAIN_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/certificatemanager/v1/pulumiEnums.go b/sdk/go/google/certificatemanager/v1/pulumiEnums.go index 3ffd7b2832..b160ea5b81 100644 --- a/sdk/go/google/certificatemanager/v1/pulumiEnums.go +++ b/sdk/go/google/certificatemanager/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Required. The key algorithm to use when generating the private key. @@ -182,12 +181,6 @@ func (in *certificateIssuanceConfigKeyAlgorithmPtr) ToCertificateIssuanceConfigK return pulumi.ToOutputWithContext(ctx, in).(CertificateIssuanceConfigKeyAlgorithmPtrOutput) } -func (in *certificateIssuanceConfigKeyAlgorithmPtr) ToOutput(ctx context.Context) pulumix.Output[*CertificateIssuanceConfigKeyAlgorithm] { - return pulumix.Output[*CertificateIssuanceConfigKeyAlgorithm]{ - OutputState: in.ToCertificateIssuanceConfigKeyAlgorithmPtrOutputWithContext(ctx).OutputState, - } -} - // A predefined matcher for particular cases, other than SNI selection. type CertificateMapEntryMatcher string @@ -356,12 +349,6 @@ func (in *certificateMapEntryMatcherPtr) ToCertificateMapEntryMatcherPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(CertificateMapEntryMatcherPtrOutput) } -func (in *certificateMapEntryMatcherPtr) ToOutput(ctx context.Context) pulumix.Output[*CertificateMapEntryMatcher] { - return pulumix.Output[*CertificateMapEntryMatcher]{ - OutputState: in.ToCertificateMapEntryMatcherPtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The scope of the certificate. type CertificateScope string @@ -533,12 +520,6 @@ func (in *certificateScopePtr) ToCertificateScopePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(CertificateScopePtrOutput) } -func (in *certificateScopePtr) ToOutput(ctx context.Context) pulumix.Output[*CertificateScope] { - return pulumix.Output[*CertificateScope]{ - OutputState: in.ToCertificateScopePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*CertificateIssuanceConfigKeyAlgorithmInput)(nil)).Elem(), CertificateIssuanceConfigKeyAlgorithm("KEY_ALGORITHM_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*CertificateIssuanceConfigKeyAlgorithmPtrInput)(nil)).Elem(), CertificateIssuanceConfigKeyAlgorithm("KEY_ALGORITHM_UNSPECIFIED")) diff --git a/sdk/go/google/cloudasset/v1/pulumiEnums.go b/sdk/go/google/cloudasset/v1/pulumiEnums.go index fe21ac779e..51724c1ef9 100644 --- a/sdk/go/google/cloudasset/v1/pulumiEnums.go +++ b/sdk/go/google/cloudasset/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Asset content type. If not specified, no content but the asset name and type will be returned. @@ -194,12 +193,6 @@ func (in *feedContentTypePtr) ToFeedContentTypePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(FeedContentTypePtrOutput) } -func (in *feedContentTypePtr) ToOutput(ctx context.Context) pulumix.Output[*FeedContentType] { - return pulumix.Output[*FeedContentType]{ - OutputState: in.ToFeedContentTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*FeedContentTypeInput)(nil)).Elem(), FeedContentType("CONTENT_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*FeedContentTypePtrInput)(nil)).Elem(), FeedContentType("CONTENT_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/cloudbilling/v1/pulumiEnums.go b/sdk/go/google/cloudbilling/v1/pulumiEnums.go index 05bc5ef61a..d6528a471f 100644 --- a/sdk/go/google/cloudbilling/v1/pulumiEnums.go +++ b/sdk/go/google/cloudbilling/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/cloudbuild/v1/pulumiEnums.go b/sdk/go/google/cloudbuild/v1/pulumiEnums.go index 12e0950091..e49b455158 100644 --- a/sdk/go/google/cloudbuild/v1/pulumiEnums.go +++ b/sdk/go/google/cloudbuild/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Optional. Option to specify how default logs buckets are setup. @@ -179,12 +178,6 @@ func (in *buildOptionsDefaultLogsBucketBehaviorPtr) ToBuildOptionsDefaultLogsBuc return pulumi.ToOutputWithContext(ctx, in).(BuildOptionsDefaultLogsBucketBehaviorPtrOutput) } -func (in *buildOptionsDefaultLogsBucketBehaviorPtr) ToOutput(ctx context.Context) pulumix.Output[*BuildOptionsDefaultLogsBucketBehavior] { - return pulumix.Output[*BuildOptionsDefaultLogsBucketBehavior]{ - OutputState: in.ToBuildOptionsDefaultLogsBucketBehaviorPtrOutputWithContext(ctx).OutputState, - } -} - // Option to define build log streaming behavior to Cloud Storage. type BuildOptionsLogStreamingOption string @@ -356,12 +349,6 @@ func (in *buildOptionsLogStreamingOptionPtr) ToBuildOptionsLogStreamingOptionPtr return pulumi.ToOutputWithContext(ctx, in).(BuildOptionsLogStreamingOptionPtrOutput) } -func (in *buildOptionsLogStreamingOptionPtr) ToOutput(ctx context.Context) pulumix.Output[*BuildOptionsLogStreamingOption] { - return pulumix.Output[*BuildOptionsLogStreamingOption]{ - OutputState: in.ToBuildOptionsLogStreamingOptionPtrOutputWithContext(ctx).OutputState, - } -} - // Option to specify the logging mode, which determines if and where build logs are stored. type BuildOptionsLogging string @@ -542,12 +529,6 @@ func (in *buildOptionsLoggingPtr) ToBuildOptionsLoggingPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(BuildOptionsLoggingPtrOutput) } -func (in *buildOptionsLoggingPtr) ToOutput(ctx context.Context) pulumix.Output[*BuildOptionsLogging] { - return pulumix.Output[*BuildOptionsLogging]{ - OutputState: in.ToBuildOptionsLoggingPtrOutputWithContext(ctx).OutputState, - } -} - // Compute Engine machine type on which to run the build. type BuildOptionsMachineType string @@ -728,12 +709,6 @@ func (in *buildOptionsMachineTypePtr) ToBuildOptionsMachineTypePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(BuildOptionsMachineTypePtrOutput) } -func (in *buildOptionsMachineTypePtr) ToOutput(ctx context.Context) pulumix.Output[*BuildOptionsMachineType] { - return pulumix.Output[*BuildOptionsMachineType]{ - OutputState: in.ToBuildOptionsMachineTypePtrOutputWithContext(ctx).OutputState, - } -} - // Requested verifiability options. type BuildOptionsRequestedVerifyOption string @@ -902,12 +877,6 @@ func (in *buildOptionsRequestedVerifyOptionPtr) ToBuildOptionsRequestedVerifyOpt return pulumi.ToOutputWithContext(ctx, in).(BuildOptionsRequestedVerifyOptionPtrOutput) } -func (in *buildOptionsRequestedVerifyOptionPtr) ToOutput(ctx context.Context) pulumix.Output[*BuildOptionsRequestedVerifyOption] { - return pulumix.Output[*BuildOptionsRequestedVerifyOption]{ - OutputState: in.ToBuildOptionsRequestedVerifyOptionPtrOutputWithContext(ctx).OutputState, - } -} - type BuildOptionsSourceProvenanceHashItem string const ( @@ -1081,12 +1050,6 @@ func (in *buildOptionsSourceProvenanceHashItemPtr) ToBuildOptionsSourceProvenanc return pulumi.ToOutputWithContext(ctx, in).(BuildOptionsSourceProvenanceHashItemPtrOutput) } -func (in *buildOptionsSourceProvenanceHashItemPtr) ToOutput(ctx context.Context) pulumix.Output[*BuildOptionsSourceProvenanceHashItem] { - return pulumix.Output[*BuildOptionsSourceProvenanceHashItem]{ - OutputState: in.ToBuildOptionsSourceProvenanceHashItemPtrOutputWithContext(ctx).OutputState, - } -} - // BuildOptionsSourceProvenanceHashItemArrayInput is an input type that accepts BuildOptionsSourceProvenanceHashItemArray and BuildOptionsSourceProvenanceHashItemArrayOutput values. // You can construct a concrete instance of `BuildOptionsSourceProvenanceHashItemArrayInput` via: // @@ -1300,12 +1263,6 @@ func (in *buildOptionsSubstitutionOptionPtr) ToBuildOptionsSubstitutionOptionPtr return pulumi.ToOutputWithContext(ctx, in).(BuildOptionsSubstitutionOptionPtrOutput) } -func (in *buildOptionsSubstitutionOptionPtr) ToOutput(ctx context.Context) pulumix.Output[*BuildOptionsSubstitutionOption] { - return pulumix.Output[*BuildOptionsSubstitutionOption]{ - OutputState: in.ToBuildOptionsSubstitutionOptionPtrOutputWithContext(ctx).OutputState, - } -} - // See RepoType above. type GitFileSourceRepoType string @@ -1486,12 +1443,6 @@ func (in *gitFileSourceRepoTypePtr) ToGitFileSourceRepoTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(GitFileSourceRepoTypePtrOutput) } -func (in *gitFileSourceRepoTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GitFileSourceRepoType] { - return pulumix.Output[*GitFileSourceRepoType]{ - OutputState: in.ToGitFileSourceRepoTypePtrOutputWithContext(ctx).OutputState, - } -} - // See RepoType below. type GitRepoSourceRepoType string @@ -1672,12 +1623,6 @@ func (in *gitRepoSourceRepoTypePtr) ToGitRepoSourceRepoTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(GitRepoSourceRepoTypePtrOutput) } -func (in *gitRepoSourceRepoTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GitRepoSourceRepoType] { - return pulumix.Output[*GitRepoSourceRepoType]{ - OutputState: in.ToGitRepoSourceRepoTypePtrOutputWithContext(ctx).OutputState, - } -} - // Option to configure network egress for the workers. type NetworkConfigEgressOption string @@ -1849,12 +1794,6 @@ func (in *networkConfigEgressOptionPtr) ToNetworkConfigEgressOptionPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(NetworkConfigEgressOptionPtrOutput) } -func (in *networkConfigEgressOptionPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkConfigEgressOption] { - return pulumix.Output[*NetworkConfigEgressOption]{ - OutputState: in.ToNetworkConfigEgressOptionPtrOutputWithContext(ctx).OutputState, - } -} - // Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests. type PubsubConfigState string @@ -2032,12 +1971,6 @@ func (in *pubsubConfigStatePtr) ToPubsubConfigStatePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(PubsubConfigStatePtrOutput) } -func (in *pubsubConfigStatePtr) ToOutput(ctx context.Context) pulumix.Output[*PubsubConfigState] { - return pulumix.Output[*PubsubConfigState]{ - OutputState: in.ToPubsubConfigStatePtrOutputWithContext(ctx).OutputState, - } -} - // Configure builds to run whether a repository owner or collaborator need to comment `/gcbrun`. type PullRequestFilterCommentControl string @@ -2209,12 +2142,6 @@ func (in *pullRequestFilterCommentControlPtr) ToPullRequestFilterCommentControlP return pulumi.ToOutputWithContext(ctx, in).(PullRequestFilterCommentControlPtrOutput) } -func (in *pullRequestFilterCommentControlPtr) ToOutput(ctx context.Context) pulumix.Output[*PullRequestFilterCommentControl] { - return pulumix.Output[*PullRequestFilterCommentControl]{ - OutputState: in.ToPullRequestFilterCommentControlPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Option to specify the tool to fetch the source file for the build. type StorageSourceSourceFetcher string @@ -2386,12 +2313,6 @@ func (in *storageSourceSourceFetcherPtr) ToStorageSourceSourceFetcherPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(StorageSourceSourceFetcherPtrOutput) } -func (in *storageSourceSourceFetcherPtr) ToOutput(ctx context.Context) pulumix.Output[*StorageSourceSourceFetcher] { - return pulumix.Output[*StorageSourceSourceFetcher]{ - OutputState: in.ToStorageSourceSourceFetcherPtrOutputWithContext(ctx).OutputState, - } -} - // EventType allows the user to explicitly set the type of event to which this BuildTrigger should respond. This field will be validated against the rest of the configuration if it is set. type TriggerEventType string @@ -2569,12 +2490,6 @@ func (in *triggerEventTypePtr) ToTriggerEventTypePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(TriggerEventTypePtrOutput) } -func (in *triggerEventTypePtr) ToOutput(ctx context.Context) pulumix.Output[*TriggerEventType] { - return pulumix.Output[*TriggerEventType]{ - OutputState: in.ToTriggerEventTypePtrOutputWithContext(ctx).OutputState, - } -} - // If set to INCLUDE_BUILD_LOGS_WITH_STATUS, log url will be shown on GitHub page when build status is final. Setting this field to INCLUDE_BUILD_LOGS_WITH_STATUS for non GitHub triggers results in INVALID_ARGUMENT error. type TriggerIncludeBuildLogs string @@ -2743,12 +2658,6 @@ func (in *triggerIncludeBuildLogsPtr) ToTriggerIncludeBuildLogsPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(TriggerIncludeBuildLogsPtrOutput) } -func (in *triggerIncludeBuildLogsPtr) ToOutput(ctx context.Context) pulumix.Output[*TriggerIncludeBuildLogs] { - return pulumix.Output[*TriggerIncludeBuildLogs]{ - OutputState: in.ToTriggerIncludeBuildLogsPtrOutputWithContext(ctx).OutputState, - } -} - // Potential issues with the underlying Pub/Sub subscription configuration. Only populated on get requests. type WebhookConfigState string @@ -2920,12 +2829,6 @@ func (in *webhookConfigStatePtr) ToWebhookConfigStatePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(WebhookConfigStatePtrOutput) } -func (in *webhookConfigStatePtr) ToOutput(ctx context.Context) pulumix.Output[*WebhookConfigState] { - return pulumix.Output[*WebhookConfigState]{ - OutputState: in.ToWebhookConfigStatePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*BuildOptionsDefaultLogsBucketBehaviorInput)(nil)).Elem(), BuildOptionsDefaultLogsBucketBehavior("DEFAULT_LOGS_BUCKET_BEHAVIOR_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*BuildOptionsDefaultLogsBucketBehaviorPtrInput)(nil)).Elem(), BuildOptionsDefaultLogsBucketBehavior("DEFAULT_LOGS_BUCKET_BEHAVIOR_UNSPECIFIED")) diff --git a/sdk/go/google/cloudbuild/v1alpha1/pulumiEnums.go b/sdk/go/google/cloudbuild/v1alpha1/pulumiEnums.go index 14d1062e45..960813e3ea 100644 --- a/sdk/go/google/cloudbuild/v1alpha1/pulumiEnums.go +++ b/sdk/go/google/cloudbuild/v1alpha1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) type WorkerPoolRegionsItem string @@ -187,12 +186,6 @@ func (in *workerPoolRegionsItemPtr) ToWorkerPoolRegionsItemPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(WorkerPoolRegionsItemPtrOutput) } -func (in *workerPoolRegionsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*WorkerPoolRegionsItem] { - return pulumix.Output[*WorkerPoolRegionsItem]{ - OutputState: in.ToWorkerPoolRegionsItemPtrOutputWithContext(ctx).OutputState, - } -} - // WorkerPoolRegionsItemArrayInput is an input type that accepts WorkerPoolRegionsItemArray and WorkerPoolRegionsItemArrayOutput values. // You can construct a concrete instance of `WorkerPoolRegionsItemArrayInput` via: // diff --git a/sdk/go/google/cloudbuild/v2/pulumiEnums.go b/sdk/go/google/cloudbuild/v2/pulumiEnums.go index 8e1ef0b464..ddea542f6b 100644 --- a/sdk/go/google/cloudbuild/v2/pulumiEnums.go +++ b/sdk/go/google/cloudbuild/v2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/cloudchannel/v1/pulumiEnums.go b/sdk/go/google/cloudchannel/v1/pulumiEnums.go index 64c7d318c2..736982e9db 100644 --- a/sdk/go/google/cloudchannel/v1/pulumiEnums.go +++ b/sdk/go/google/cloudchannel/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Required. State of the channel partner link. @@ -188,12 +187,6 @@ func (in *channelPartnerLinkLinkStatePtr) ToChannelPartnerLinkLinkStatePtrOutput return pulumi.ToOutputWithContext(ctx, in).(ChannelPartnerLinkLinkStatePtrOutput) } -func (in *channelPartnerLinkLinkStatePtr) ToOutput(ctx context.Context) pulumix.Output[*ChannelPartnerLinkLinkState] { - return pulumix.Output[*ChannelPartnerLinkLinkState]{ - OutputState: in.ToChannelPartnerLinkLinkStatePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The RebillingBasis to use for the applied override. Shows the relative cost based on your repricing costs. type GoogleCloudChannelV1ConditionalOverrideRebillingBasis string @@ -365,12 +358,6 @@ func (in *googleCloudChannelV1ConditionalOverrideRebillingBasisPtr) ToGoogleClou return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudChannelV1ConditionalOverrideRebillingBasisPtrOutput) } -func (in *googleCloudChannelV1ConditionalOverrideRebillingBasisPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudChannelV1ConditionalOverrideRebillingBasis] { - return pulumix.Output[*GoogleCloudChannelV1ConditionalOverrideRebillingBasis]{ - OutputState: in.ToGoogleCloudChannelV1ConditionalOverrideRebillingBasisPtrOutputWithContext(ctx).OutputState, - } -} - // Period Type. type GoogleCloudChannelV1PeriodPeriodType string @@ -545,12 +532,6 @@ func (in *googleCloudChannelV1PeriodPeriodTypePtr) ToGoogleCloudChannelV1PeriodP return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudChannelV1PeriodPeriodTypePtrOutput) } -func (in *googleCloudChannelV1PeriodPeriodTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudChannelV1PeriodPeriodType] { - return pulumix.Output[*GoogleCloudChannelV1PeriodPeriodType]{ - OutputState: in.ToGoogleCloudChannelV1PeriodPeriodTypePtrOutputWithContext(ctx).OutputState, - } -} - // Describes how a reseller will be billed. type GoogleCloudChannelV1RenewalSettingsPaymentPlan string @@ -731,12 +712,6 @@ func (in *googleCloudChannelV1RenewalSettingsPaymentPlanPtr) ToGoogleCloudChanne return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudChannelV1RenewalSettingsPaymentPlanPtrOutput) } -func (in *googleCloudChannelV1RenewalSettingsPaymentPlanPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudChannelV1RenewalSettingsPaymentPlan] { - return pulumix.Output[*GoogleCloudChannelV1RenewalSettingsPaymentPlan]{ - OutputState: in.ToGoogleCloudChannelV1RenewalSettingsPaymentPlanPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The RebillingBasis to use for this bill. Specifies the relative cost based on repricing costs you will apply. type GoogleCloudChannelV1RepricingConfigRebillingBasis string @@ -908,12 +883,6 @@ func (in *googleCloudChannelV1RepricingConfigRebillingBasisPtr) ToGoogleCloudCha return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudChannelV1RepricingConfigRebillingBasisPtrOutput) } -func (in *googleCloudChannelV1RepricingConfigRebillingBasisPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudChannelV1RepricingConfigRebillingBasis] { - return pulumix.Output[*GoogleCloudChannelV1RepricingConfigRebillingBasis]{ - OutputState: in.ToGoogleCloudChannelV1RepricingConfigRebillingBasisPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ChannelPartnerLinkLinkStateInput)(nil)).Elem(), ChannelPartnerLinkLinkState("CHANNEL_PARTNER_LINK_STATE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*ChannelPartnerLinkLinkStatePtrInput)(nil)).Elem(), ChannelPartnerLinkLinkState("CHANNEL_PARTNER_LINK_STATE_UNSPECIFIED")) diff --git a/sdk/go/google/clouddeploy/v1/pulumiEnums.go b/sdk/go/google/clouddeploy/v1/pulumiEnums.go index a4d51c1495..a23fc80b92 100644 --- a/sdk/go/google/clouddeploy/v1/pulumiEnums.go +++ b/sdk/go/google/clouddeploy/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - type ExecutionConfigUsagesItem string const ( @@ -370,12 +363,6 @@ func (in *executionConfigUsagesItemPtr) ToExecutionConfigUsagesItemPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(ExecutionConfigUsagesItemPtrOutput) } -func (in *executionConfigUsagesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*ExecutionConfigUsagesItem] { - return pulumix.Output[*ExecutionConfigUsagesItem]{ - OutputState: in.ToExecutionConfigUsagesItemPtrOutputWithContext(ctx).OutputState, - } -} - // ExecutionConfigUsagesItemArrayInput is an input type that accepts ExecutionConfigUsagesItemArray and ExecutionConfigUsagesItemArrayOutput values. // You can construct a concrete instance of `ExecutionConfigUsagesItemArrayInput` via: // @@ -592,12 +579,6 @@ func (in *retryBackoffModePtr) ToRetryBackoffModePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(RetryBackoffModePtrOutput) } -func (in *retryBackoffModePtr) ToOutput(ctx context.Context) pulumix.Output[*RetryBackoffMode] { - return pulumix.Output[*RetryBackoffMode]{ - OutputState: in.ToRetryBackoffModePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/cloudfunctions/v1/pulumiEnums.go b/sdk/go/google/cloudfunctions/v1/pulumiEnums.go index 8967f91b9e..dac8abf50c 100644 --- a/sdk/go/google/cloudfunctions/v1/pulumiEnums.go +++ b/sdk/go/google/cloudfunctions/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Docker Registry to use for this deployment. If `docker_repository` field is specified, this field will be automatically set as `ARTIFACT_REGISTRY`. If unspecified, it currently defaults to `CONTAINER_REGISTRY`. This field may be overridden by the backend for eligible deployments. type FunctionDockerRegistry string @@ -362,12 +355,6 @@ func (in *functionDockerRegistryPtr) ToFunctionDockerRegistryPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(FunctionDockerRegistryPtrOutput) } -func (in *functionDockerRegistryPtr) ToOutput(ctx context.Context) pulumix.Output[*FunctionDockerRegistry] { - return pulumix.Output[*FunctionDockerRegistry]{ - OutputState: in.ToFunctionDockerRegistryPtrOutputWithContext(ctx).OutputState, - } -} - // The ingress settings for the function, controlling what traffic can reach it. type FunctionIngressSettings string @@ -542,12 +529,6 @@ func (in *functionIngressSettingsPtr) ToFunctionIngressSettingsPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(FunctionIngressSettingsPtrOutput) } -func (in *functionIngressSettingsPtr) ToOutput(ctx context.Context) pulumix.Output[*FunctionIngressSettings] { - return pulumix.Output[*FunctionIngressSettings]{ - OutputState: in.ToFunctionIngressSettingsPtrOutputWithContext(ctx).OutputState, - } -} - // The egress settings for the connector, controlling what traffic is diverted through it. type FunctionVpcConnectorEgressSettings string @@ -719,12 +700,6 @@ func (in *functionVpcConnectorEgressSettingsPtr) ToFunctionVpcConnectorEgressSet return pulumi.ToOutputWithContext(ctx, in).(FunctionVpcConnectorEgressSettingsPtrOutput) } -func (in *functionVpcConnectorEgressSettingsPtr) ToOutput(ctx context.Context) pulumix.Output[*FunctionVpcConnectorEgressSettings] { - return pulumix.Output[*FunctionVpcConnectorEgressSettings]{ - OutputState: in.ToFunctionVpcConnectorEgressSettingsPtrOutputWithContext(ctx).OutputState, - } -} - // The security level for the function. type HttpsTriggerSecurityLevel string @@ -896,12 +871,6 @@ func (in *httpsTriggerSecurityLevelPtr) ToHttpsTriggerSecurityLevelPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(HttpsTriggerSecurityLevelPtrOutput) } -func (in *httpsTriggerSecurityLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*HttpsTriggerSecurityLevel] { - return pulumix.Output[*HttpsTriggerSecurityLevel]{ - OutputState: in.ToHttpsTriggerSecurityLevelPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/cloudfunctions/v2/pulumiEnums.go b/sdk/go/google/cloudfunctions/v2/pulumiEnums.go index a919d5aee7..9f8494dee4 100644 --- a/sdk/go/google/cloudfunctions/v2/pulumiEnums.go +++ b/sdk/go/google/cloudfunctions/v2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Docker Registry to use for this deployment. This configuration is only applicable to 1st Gen functions, 2nd Gen functions can only use Artifact Registry. If `docker_repository` field is specified, this field will be automatically set as `ARTIFACT_REGISTRY`. If unspecified, it currently defaults to `CONTAINER_REGISTRY`. This field may be overridden by the backend for eligible deployments. type BuildConfigDockerRegistry string @@ -362,12 +355,6 @@ func (in *buildConfigDockerRegistryPtr) ToBuildConfigDockerRegistryPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(BuildConfigDockerRegistryPtrOutput) } -func (in *buildConfigDockerRegistryPtr) ToOutput(ctx context.Context) pulumix.Output[*BuildConfigDockerRegistry] { - return pulumix.Output[*BuildConfigDockerRegistry]{ - OutputState: in.ToBuildConfigDockerRegistryPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. If unset, then defaults to ignoring failures (i.e. not retrying them). type EventTriggerRetryPolicy string @@ -539,12 +526,6 @@ func (in *eventTriggerRetryPolicyPtr) ToEventTriggerRetryPolicyPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(EventTriggerRetryPolicyPtrOutput) } -func (in *eventTriggerRetryPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*EventTriggerRetryPolicy] { - return pulumix.Output[*EventTriggerRetryPolicy]{ - OutputState: in.ToEventTriggerRetryPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Describe whether the function is 1st Gen or 2nd Gen. type FunctionEnvironment string @@ -716,12 +697,6 @@ func (in *functionEnvironmentPtr) ToFunctionEnvironmentPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(FunctionEnvironmentPtrOutput) } -func (in *functionEnvironmentPtr) ToOutput(ctx context.Context) pulumix.Output[*FunctionEnvironment] { - return pulumix.Output[*FunctionEnvironment]{ - OutputState: in.ToFunctionEnvironmentPtrOutputWithContext(ctx).OutputState, - } -} - // The ingress settings for the function, controlling what traffic can reach it. type ServiceConfigIngressSettings string @@ -896,12 +871,6 @@ func (in *serviceConfigIngressSettingsPtr) ToServiceConfigIngressSettingsPtrOutp return pulumi.ToOutputWithContext(ctx, in).(ServiceConfigIngressSettingsPtrOutput) } -func (in *serviceConfigIngressSettingsPtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceConfigIngressSettings] { - return pulumix.Output[*ServiceConfigIngressSettings]{ - OutputState: in.ToServiceConfigIngressSettingsPtrOutputWithContext(ctx).OutputState, - } -} - // Security level configure whether the function only accepts https. This configuration is only applicable to 1st Gen functions with Http trigger. By default https is optional for 1st Gen functions; 2nd Gen functions are https ONLY. type ServiceConfigSecurityLevel string @@ -1073,12 +1042,6 @@ func (in *serviceConfigSecurityLevelPtr) ToServiceConfigSecurityLevelPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(ServiceConfigSecurityLevelPtrOutput) } -func (in *serviceConfigSecurityLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceConfigSecurityLevel] { - return pulumix.Output[*ServiceConfigSecurityLevel]{ - OutputState: in.ToServiceConfigSecurityLevelPtrOutputWithContext(ctx).OutputState, - } -} - // The egress settings for the connector, controlling what traffic is diverted through it. type ServiceConfigVpcConnectorEgressSettings string @@ -1250,12 +1213,6 @@ func (in *serviceConfigVpcConnectorEgressSettingsPtr) ToServiceConfigVpcConnecto return pulumi.ToOutputWithContext(ctx, in).(ServiceConfigVpcConnectorEgressSettingsPtrOutput) } -func (in *serviceConfigVpcConnectorEgressSettingsPtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceConfigVpcConnectorEgressSettings] { - return pulumix.Output[*ServiceConfigVpcConnectorEgressSettings]{ - OutputState: in.ToServiceConfigVpcConnectorEgressSettingsPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/cloudfunctions/v2alpha/pulumiEnums.go b/sdk/go/google/cloudfunctions/v2alpha/pulumiEnums.go index 661c036b32..e7a96ed097 100644 --- a/sdk/go/google/cloudfunctions/v2alpha/pulumiEnums.go +++ b/sdk/go/google/cloudfunctions/v2alpha/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Docker Registry to use for this deployment. This configuration is only applicable to 1st Gen functions, 2nd Gen functions can only use Artifact Registry. If `docker_repository` field is specified, this field will be automatically set as `ARTIFACT_REGISTRY`. If unspecified, it currently defaults to `CONTAINER_REGISTRY`. This field may be overridden by the backend for eligible deployments. type BuildConfigDockerRegistry string @@ -362,12 +355,6 @@ func (in *buildConfigDockerRegistryPtr) ToBuildConfigDockerRegistryPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(BuildConfigDockerRegistryPtrOutput) } -func (in *buildConfigDockerRegistryPtr) ToOutput(ctx context.Context) pulumix.Output[*BuildConfigDockerRegistry] { - return pulumix.Output[*BuildConfigDockerRegistry]{ - OutputState: in.ToBuildConfigDockerRegistryPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. If unset, then defaults to ignoring failures (i.e. not retrying them). type EventTriggerRetryPolicy string @@ -539,12 +526,6 @@ func (in *eventTriggerRetryPolicyPtr) ToEventTriggerRetryPolicyPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(EventTriggerRetryPolicyPtrOutput) } -func (in *eventTriggerRetryPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*EventTriggerRetryPolicy] { - return pulumix.Output[*EventTriggerRetryPolicy]{ - OutputState: in.ToEventTriggerRetryPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Describe whether the function is 1st Gen or 2nd Gen. type FunctionEnvironment string @@ -716,12 +697,6 @@ func (in *functionEnvironmentPtr) ToFunctionEnvironmentPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(FunctionEnvironmentPtrOutput) } -func (in *functionEnvironmentPtr) ToOutput(ctx context.Context) pulumix.Output[*FunctionEnvironment] { - return pulumix.Output[*FunctionEnvironment]{ - OutputState: in.ToFunctionEnvironmentPtrOutputWithContext(ctx).OutputState, - } -} - // The ingress settings for the function, controlling what traffic can reach it. type ServiceConfigIngressSettings string @@ -896,12 +871,6 @@ func (in *serviceConfigIngressSettingsPtr) ToServiceConfigIngressSettingsPtrOutp return pulumi.ToOutputWithContext(ctx, in).(ServiceConfigIngressSettingsPtrOutput) } -func (in *serviceConfigIngressSettingsPtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceConfigIngressSettings] { - return pulumix.Output[*ServiceConfigIngressSettings]{ - OutputState: in.ToServiceConfigIngressSettingsPtrOutputWithContext(ctx).OutputState, - } -} - // Security level configure whether the function only accepts https. This configuration is only applicable to 1st Gen functions with Http trigger. By default https is optional for 1st Gen functions; 2nd Gen functions are https ONLY. type ServiceConfigSecurityLevel string @@ -1073,12 +1042,6 @@ func (in *serviceConfigSecurityLevelPtr) ToServiceConfigSecurityLevelPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(ServiceConfigSecurityLevelPtrOutput) } -func (in *serviceConfigSecurityLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceConfigSecurityLevel] { - return pulumix.Output[*ServiceConfigSecurityLevel]{ - OutputState: in.ToServiceConfigSecurityLevelPtrOutputWithContext(ctx).OutputState, - } -} - // The egress settings for the connector, controlling what traffic is diverted through it. type ServiceConfigVpcConnectorEgressSettings string @@ -1250,12 +1213,6 @@ func (in *serviceConfigVpcConnectorEgressSettingsPtr) ToServiceConfigVpcConnecto return pulumi.ToOutputWithContext(ctx, in).(ServiceConfigVpcConnectorEgressSettingsPtrOutput) } -func (in *serviceConfigVpcConnectorEgressSettingsPtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceConfigVpcConnectorEgressSettings] { - return pulumix.Output[*ServiceConfigVpcConnectorEgressSettings]{ - OutputState: in.ToServiceConfigVpcConnectorEgressSettingsPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/cloudfunctions/v2beta/pulumiEnums.go b/sdk/go/google/cloudfunctions/v2beta/pulumiEnums.go index 3a7a194a31..dc5f7e161b 100644 --- a/sdk/go/google/cloudfunctions/v2beta/pulumiEnums.go +++ b/sdk/go/google/cloudfunctions/v2beta/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Docker Registry to use for this deployment. This configuration is only applicable to 1st Gen functions, 2nd Gen functions can only use Artifact Registry. If `docker_repository` field is specified, this field will be automatically set as `ARTIFACT_REGISTRY`. If unspecified, it currently defaults to `CONTAINER_REGISTRY`. This field may be overridden by the backend for eligible deployments. type BuildConfigDockerRegistry string @@ -362,12 +355,6 @@ func (in *buildConfigDockerRegistryPtr) ToBuildConfigDockerRegistryPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(BuildConfigDockerRegistryPtrOutput) } -func (in *buildConfigDockerRegistryPtr) ToOutput(ctx context.Context) pulumix.Output[*BuildConfigDockerRegistry] { - return pulumix.Output[*BuildConfigDockerRegistry]{ - OutputState: in.ToBuildConfigDockerRegistryPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. If unset, then defaults to ignoring failures (i.e. not retrying them). type EventTriggerRetryPolicy string @@ -539,12 +526,6 @@ func (in *eventTriggerRetryPolicyPtr) ToEventTriggerRetryPolicyPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(EventTriggerRetryPolicyPtrOutput) } -func (in *eventTriggerRetryPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*EventTriggerRetryPolicy] { - return pulumix.Output[*EventTriggerRetryPolicy]{ - OutputState: in.ToEventTriggerRetryPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Describe whether the function is 1st Gen or 2nd Gen. type FunctionEnvironment string @@ -716,12 +697,6 @@ func (in *functionEnvironmentPtr) ToFunctionEnvironmentPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(FunctionEnvironmentPtrOutput) } -func (in *functionEnvironmentPtr) ToOutput(ctx context.Context) pulumix.Output[*FunctionEnvironment] { - return pulumix.Output[*FunctionEnvironment]{ - OutputState: in.ToFunctionEnvironmentPtrOutputWithContext(ctx).OutputState, - } -} - // The ingress settings for the function, controlling what traffic can reach it. type ServiceConfigIngressSettings string @@ -896,12 +871,6 @@ func (in *serviceConfigIngressSettingsPtr) ToServiceConfigIngressSettingsPtrOutp return pulumi.ToOutputWithContext(ctx, in).(ServiceConfigIngressSettingsPtrOutput) } -func (in *serviceConfigIngressSettingsPtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceConfigIngressSettings] { - return pulumix.Output[*ServiceConfigIngressSettings]{ - OutputState: in.ToServiceConfigIngressSettingsPtrOutputWithContext(ctx).OutputState, - } -} - // Security level configure whether the function only accepts https. This configuration is only applicable to 1st Gen functions with Http trigger. By default https is optional for 1st Gen functions; 2nd Gen functions are https ONLY. type ServiceConfigSecurityLevel string @@ -1073,12 +1042,6 @@ func (in *serviceConfigSecurityLevelPtr) ToServiceConfigSecurityLevelPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(ServiceConfigSecurityLevelPtrOutput) } -func (in *serviceConfigSecurityLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceConfigSecurityLevel] { - return pulumix.Output[*ServiceConfigSecurityLevel]{ - OutputState: in.ToServiceConfigSecurityLevelPtrOutputWithContext(ctx).OutputState, - } -} - // The egress settings for the connector, controlling what traffic is diverted through it. type ServiceConfigVpcConnectorEgressSettings string @@ -1250,12 +1213,6 @@ func (in *serviceConfigVpcConnectorEgressSettingsPtr) ToServiceConfigVpcConnecto return pulumi.ToOutputWithContext(ctx, in).(ServiceConfigVpcConnectorEgressSettingsPtrOutput) } -func (in *serviceConfigVpcConnectorEgressSettingsPtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceConfigVpcConnectorEgressSettings] { - return pulumix.Output[*ServiceConfigVpcConnectorEgressSettings]{ - OutputState: in.ToServiceConfigVpcConnectorEgressSettingsPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/cloudidentity/v1/pulumiEnums.go b/sdk/go/google/cloudidentity/v1/pulumiEnums.go index 81df41e378..10903d39c4 100644 --- a/sdk/go/google/cloudidentity/v1/pulumiEnums.go +++ b/sdk/go/google/cloudidentity/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Resource type for the Dynamic Group Query @@ -179,12 +178,6 @@ func (in *dynamicGroupQueryResourceTypePtr) ToDynamicGroupQueryResourceTypePtrOu return pulumi.ToOutputWithContext(ctx, in).(DynamicGroupQueryResourceTypePtrOutput) } -func (in *dynamicGroupQueryResourceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DynamicGroupQueryResourceType] { - return pulumix.Output[*DynamicGroupQueryResourceType]{ - OutputState: in.ToDynamicGroupQueryResourceTypePtrOutputWithContext(ctx).OutputState, - } -} - // Inbound SSO behavior. type InboundSsoAssignmentSsoMode string @@ -359,12 +352,6 @@ func (in *inboundSsoAssignmentSsoModePtr) ToInboundSsoAssignmentSsoModePtrOutput return pulumi.ToOutputWithContext(ctx, in).(InboundSsoAssignmentSsoModePtrOutput) } -func (in *inboundSsoAssignmentSsoModePtr) ToOutput(ctx context.Context) pulumix.Output[*InboundSsoAssignmentSsoMode] { - return pulumix.Output[*InboundSsoAssignmentSsoMode]{ - OutputState: in.ToInboundSsoAssignmentSsoModePtrOutputWithContext(ctx).OutputState, - } -} - // When to redirect sign-ins to the IdP. type SignInBehaviorRedirectCondition string @@ -533,12 +520,6 @@ func (in *signInBehaviorRedirectConditionPtr) ToSignInBehaviorRedirectConditionP return pulumi.ToOutputWithContext(ctx, in).(SignInBehaviorRedirectConditionPtrOutput) } -func (in *signInBehaviorRedirectConditionPtr) ToOutput(ctx context.Context) pulumix.Output[*SignInBehaviorRedirectCondition] { - return pulumix.Output[*SignInBehaviorRedirectCondition]{ - OutputState: in.ToSignInBehaviorRedirectConditionPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*DynamicGroupQueryResourceTypeInput)(nil)).Elem(), DynamicGroupQueryResourceType("RESOURCE_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*DynamicGroupQueryResourceTypePtrInput)(nil)).Elem(), DynamicGroupQueryResourceType("RESOURCE_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/cloudidentity/v1beta1/pulumiEnums.go b/sdk/go/google/cloudidentity/v1beta1/pulumiEnums.go index 75c722ebcf..2c2e3d1f7f 100644 --- a/sdk/go/google/cloudidentity/v1beta1/pulumiEnums.go +++ b/sdk/go/google/cloudidentity/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) type DeviceClientTypesItem string @@ -190,12 +189,6 @@ func (in *deviceClientTypesItemPtr) ToDeviceClientTypesItemPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(DeviceClientTypesItemPtrOutput) } -func (in *deviceClientTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*DeviceClientTypesItem] { - return pulumix.Output[*DeviceClientTypesItem]{ - OutputState: in.ToDeviceClientTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // DeviceClientTypesItemArrayInput is an input type that accepts DeviceClientTypesItemArray and DeviceClientTypesItemArrayOutput values. // You can construct a concrete instance of `DeviceClientTypesItemArrayInput` via: // @@ -408,12 +401,6 @@ func (in *dynamicGroupQueryResourceTypePtr) ToDynamicGroupQueryResourceTypePtrOu return pulumi.ToOutputWithContext(ctx, in).(DynamicGroupQueryResourceTypePtrOutput) } -func (in *dynamicGroupQueryResourceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DynamicGroupQueryResourceType] { - return pulumix.Output[*DynamicGroupQueryResourceType]{ - OutputState: in.ToDynamicGroupQueryResourceTypePtrOutputWithContext(ctx).OutputState, - } -} - // Inbound SSO behavior. type InboundSsoAssignmentSsoMode string @@ -588,12 +575,6 @@ func (in *inboundSsoAssignmentSsoModePtr) ToInboundSsoAssignmentSsoModePtrOutput return pulumi.ToOutputWithContext(ctx, in).(InboundSsoAssignmentSsoModePtrOutput) } -func (in *inboundSsoAssignmentSsoModePtr) ToOutput(ctx context.Context) pulumix.Output[*InboundSsoAssignmentSsoMode] { - return pulumix.Output[*InboundSsoAssignmentSsoMode]{ - OutputState: in.ToInboundSsoAssignmentSsoModePtrOutputWithContext(ctx).OutputState, - } -} - // When to redirect sign-ins to the IdP. type SignInBehaviorRedirectCondition string @@ -762,12 +743,6 @@ func (in *signInBehaviorRedirectConditionPtr) ToSignInBehaviorRedirectConditionP return pulumi.ToOutputWithContext(ctx, in).(SignInBehaviorRedirectConditionPtrOutput) } -func (in *signInBehaviorRedirectConditionPtr) ToOutput(ctx context.Context) pulumix.Output[*SignInBehaviorRedirectCondition] { - return pulumix.Output[*SignInBehaviorRedirectCondition]{ - OutputState: in.ToSignInBehaviorRedirectConditionPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*DeviceClientTypesItemInput)(nil)).Elem(), DeviceClientTypesItem("CLIENT_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*DeviceClientTypesItemPtrInput)(nil)).Elem(), DeviceClientTypesItem("CLIENT_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/cloudiot/v1/pulumiEnums.go b/sdk/go/google/cloudiot/v1/pulumiEnums.go index c7e11445e2..5662df7af6 100644 --- a/sdk/go/google/cloudiot/v1/pulumiEnums.go +++ b/sdk/go/google/cloudiot/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // **Beta Feature** The logging verbosity for device activity. If unspecified, DeviceRegistry.log_level will be used. @@ -188,12 +187,6 @@ func (in *deviceLogLevelPtr) ToDeviceLogLevelPtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(DeviceLogLevelPtrOutput) } -func (in *deviceLogLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*DeviceLogLevel] { - return pulumix.Output[*DeviceLogLevel]{ - OutputState: in.ToDeviceLogLevelPtrOutputWithContext(ctx).OutputState, - } -} - // Indicates how to authorize and/or authenticate devices to access the gateway. type GatewayConfigGatewayAuthMethod string @@ -368,12 +361,6 @@ func (in *gatewayConfigGatewayAuthMethodPtr) ToGatewayConfigGatewayAuthMethodPtr return pulumi.ToOutputWithContext(ctx, in).(GatewayConfigGatewayAuthMethodPtrOutput) } -func (in *gatewayConfigGatewayAuthMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*GatewayConfigGatewayAuthMethod] { - return pulumix.Output[*GatewayConfigGatewayAuthMethod]{ - OutputState: in.ToGatewayConfigGatewayAuthMethodPtrOutputWithContext(ctx).OutputState, - } -} - // Indicates whether the device is a gateway. type GatewayConfigGatewayType string @@ -545,12 +532,6 @@ func (in *gatewayConfigGatewayTypePtr) ToGatewayConfigGatewayTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(GatewayConfigGatewayTypePtrOutput) } -func (in *gatewayConfigGatewayTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GatewayConfigGatewayType] { - return pulumix.Output[*GatewayConfigGatewayType]{ - OutputState: in.ToGatewayConfigGatewayTypePtrOutputWithContext(ctx).OutputState, - } -} - // If enabled, allows devices to use DeviceService via the HTTP protocol. Otherwise, any requests to DeviceService will fail for this registry. type HttpConfigHttpEnabledState string @@ -722,12 +703,6 @@ func (in *httpConfigHttpEnabledStatePtr) ToHttpConfigHttpEnabledStatePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(HttpConfigHttpEnabledStatePtrOutput) } -func (in *httpConfigHttpEnabledStatePtr) ToOutput(ctx context.Context) pulumix.Output[*HttpConfigHttpEnabledState] { - return pulumix.Output[*HttpConfigHttpEnabledState]{ - OutputState: in.ToHttpConfigHttpEnabledStatePtrOutputWithContext(ctx).OutputState, - } -} - // If enabled, allows connections using the MQTT protocol. Otherwise, MQTT connections to this registry will fail. type MqttConfigMqttEnabledState string @@ -899,12 +874,6 @@ func (in *mqttConfigMqttEnabledStatePtr) ToMqttConfigMqttEnabledStatePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(MqttConfigMqttEnabledStatePtrOutput) } -func (in *mqttConfigMqttEnabledStatePtr) ToOutput(ctx context.Context) pulumix.Output[*MqttConfigMqttEnabledState] { - return pulumix.Output[*MqttConfigMqttEnabledState]{ - OutputState: in.ToMqttConfigMqttEnabledStatePtrOutputWithContext(ctx).OutputState, - } -} - // The certificate format. type PublicKeyCertificateFormat string @@ -1073,12 +1042,6 @@ func (in *publicKeyCertificateFormatPtr) ToPublicKeyCertificateFormatPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(PublicKeyCertificateFormatPtrOutput) } -func (in *publicKeyCertificateFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*PublicKeyCertificateFormat] { - return pulumix.Output[*PublicKeyCertificateFormat]{ - OutputState: in.ToPublicKeyCertificateFormatPtrOutputWithContext(ctx).OutputState, - } -} - // The format of the key. type PublicKeyCredentialFormat string @@ -1256,12 +1219,6 @@ func (in *publicKeyCredentialFormatPtr) ToPublicKeyCredentialFormatPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(PublicKeyCredentialFormatPtrOutput) } -func (in *publicKeyCredentialFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*PublicKeyCredentialFormat] { - return pulumix.Output[*PublicKeyCredentialFormat]{ - OutputState: in.ToPublicKeyCredentialFormatPtrOutputWithContext(ctx).OutputState, - } -} - // **Beta Feature** The default logging verbosity for activity from devices in this registry. The verbosity level can be overridden by Device.log_level. type RegistryLogLevel string @@ -1439,12 +1396,6 @@ func (in *registryLogLevelPtr) ToRegistryLogLevelPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(RegistryLogLevelPtrOutput) } -func (in *registryLogLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*RegistryLogLevel] { - return pulumix.Output[*RegistryLogLevel]{ - OutputState: in.ToRegistryLogLevelPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*DeviceLogLevelInput)(nil)).Elem(), DeviceLogLevel("LOG_LEVEL_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*DeviceLogLevelPtrInput)(nil)).Elem(), DeviceLogLevel("LOG_LEVEL_UNSPECIFIED")) diff --git a/sdk/go/google/cloudkms/v1/pulumiEnums.go b/sdk/go/google/cloudkms/v1/pulumiEnums.go index eff384eaf2..f2d936c661 100644 --- a/sdk/go/google/cloudkms/v1/pulumiEnums.go +++ b/sdk/go/google/cloudkms/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The immutable purpose of this CryptoKey. type CryptoKeyPurpose string @@ -371,12 +364,6 @@ func (in *cryptoKeyPurposePtr) ToCryptoKeyPurposePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(CryptoKeyPurposePtrOutput) } -func (in *cryptoKeyPurposePtr) ToOutput(ctx context.Context) pulumix.Output[*CryptoKeyPurpose] { - return pulumix.Output[*CryptoKeyPurpose]{ - OutputState: in.ToCryptoKeyPurposePtrOutputWithContext(ctx).OutputState, - } -} - // The current state of the CryptoKeyVersion. type CryptoKeyVersionStateEnum string @@ -572,12 +559,6 @@ func (in *cryptoKeyVersionStateEnumPtr) ToCryptoKeyVersionStateEnumPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(CryptoKeyVersionStateEnumPtrOutput) } -func (in *cryptoKeyVersionStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*CryptoKeyVersionStateEnum] { - return pulumix.Output[*CryptoKeyVersionStateEnum]{ - OutputState: in.ToCryptoKeyVersionStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Algorithm to use when creating a CryptoKeyVersion based on this template. For backwards compatibility, GOOGLE_SYMMETRIC_ENCRYPTION is implied if both this field is omitted and CryptoKey.purpose is ENCRYPT_DECRYPT. type CryptoKeyVersionTemplateAlgorithm string @@ -845,12 +826,6 @@ func (in *cryptoKeyVersionTemplateAlgorithmPtr) ToCryptoKeyVersionTemplateAlgori return pulumi.ToOutputWithContext(ctx, in).(CryptoKeyVersionTemplateAlgorithmPtrOutput) } -func (in *cryptoKeyVersionTemplateAlgorithmPtr) ToOutput(ctx context.Context) pulumix.Output[*CryptoKeyVersionTemplateAlgorithm] { - return pulumix.Output[*CryptoKeyVersionTemplateAlgorithm]{ - OutputState: in.ToCryptoKeyVersionTemplateAlgorithmPtrOutputWithContext(ctx).OutputState, - } -} - // ProtectionLevel to use when creating a CryptoKeyVersion based on this template. Immutable. Defaults to SOFTWARE. type CryptoKeyVersionTemplateProtectionLevel string @@ -1028,12 +1003,6 @@ func (in *cryptoKeyVersionTemplateProtectionLevelPtr) ToCryptoKeyVersionTemplate return pulumi.ToOutputWithContext(ctx, in).(CryptoKeyVersionTemplateProtectionLevelPtrOutput) } -func (in *cryptoKeyVersionTemplateProtectionLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*CryptoKeyVersionTemplateProtectionLevel] { - return pulumix.Output[*CryptoKeyVersionTemplateProtectionLevel]{ - OutputState: in.ToCryptoKeyVersionTemplateProtectionLevelPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Describes who can perform control plane operations on the EKM. If unset, this defaults to MANUAL. type EkmConnectionKeyManagementMode string @@ -1205,12 +1174,6 @@ func (in *ekmConnectionKeyManagementModePtr) ToEkmConnectionKeyManagementModePtr return pulumi.ToOutputWithContext(ctx, in).(EkmConnectionKeyManagementModePtrOutput) } -func (in *ekmConnectionKeyManagementModePtr) ToOutput(ctx context.Context) pulumix.Output[*EkmConnectionKeyManagementMode] { - return pulumix.Output[*EkmConnectionKeyManagementMode]{ - OutputState: in.ToEkmConnectionKeyManagementModePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Immutable. The wrapping method to be used for incoming key material. type ImportJobImportMethod string @@ -1394,12 +1357,6 @@ func (in *importJobImportMethodPtr) ToImportJobImportMethodPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ImportJobImportMethodPtrOutput) } -func (in *importJobImportMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*ImportJobImportMethod] { - return pulumix.Output[*ImportJobImportMethod]{ - OutputState: in.ToImportJobImportMethodPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Immutable. The protection level of the ImportJob. This must match the protection_level of the version_template on the CryptoKey you attempt to import into. type ImportJobProtectionLevel string @@ -1577,12 +1534,6 @@ func (in *importJobProtectionLevelPtr) ToImportJobProtectionLevelPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(ImportJobProtectionLevelPtrOutput) } -func (in *importJobProtectionLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*ImportJobProtectionLevel] { - return pulumix.Output[*ImportJobProtectionLevel]{ - OutputState: in.ToImportJobProtectionLevelPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/cloudresourcemanager/v1/pulumiEnums.go b/sdk/go/google/cloudresourcemanager/v1/pulumiEnums.go index acfdd170fc..e015ae553c 100644 --- a/sdk/go/google/cloudresourcemanager/v1/pulumiEnums.go +++ b/sdk/go/google/cloudresourcemanager/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // The Project lifecycle state. Read-only. type ProjectLifecycleState string @@ -365,12 +358,6 @@ func (in *projectLifecycleStatePtr) ToProjectLifecycleStatePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ProjectLifecycleStatePtrOutput) } -func (in *projectLifecycleStatePtr) ToOutput(ctx context.Context) pulumix.Output[*ProjectLifecycleState] { - return pulumix.Output[*ProjectLifecycleState]{ - OutputState: in.ToProjectLifecycleStatePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/cloudresourcemanager/v1beta1/pulumiEnums.go b/sdk/go/google/cloudresourcemanager/v1beta1/pulumiEnums.go index b0ccc6505a..fbdbcd652e 100644 --- a/sdk/go/google/cloudresourcemanager/v1beta1/pulumiEnums.go +++ b/sdk/go/google/cloudresourcemanager/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // The Project lifecycle state. Read-only. type ProjectLifecycleState string @@ -365,12 +358,6 @@ func (in *projectLifecycleStatePtr) ToProjectLifecycleStatePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ProjectLifecycleStatePtrOutput) } -func (in *projectLifecycleStatePtr) ToOutput(ctx context.Context) pulumix.Output[*ProjectLifecycleState] { - return pulumix.Output[*ProjectLifecycleState]{ - OutputState: in.ToProjectLifecycleStatePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/cloudresourcemanager/v2/pulumiEnums.go b/sdk/go/google/cloudresourcemanager/v2/pulumiEnums.go index 8e1ef0b464..ddea542f6b 100644 --- a/sdk/go/google/cloudresourcemanager/v2/pulumiEnums.go +++ b/sdk/go/google/cloudresourcemanager/v2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/cloudresourcemanager/v2beta1/pulumiEnums.go b/sdk/go/google/cloudresourcemanager/v2beta1/pulumiEnums.go index ec9b3ce63e..7d908d3a78 100644 --- a/sdk/go/google/cloudresourcemanager/v2beta1/pulumiEnums.go +++ b/sdk/go/google/cloudresourcemanager/v2beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/cloudresourcemanager/v3/pulumiEnums.go b/sdk/go/google/cloudresourcemanager/v3/pulumiEnums.go index 23953e5e2e..8dc3613015 100644 --- a/sdk/go/google/cloudresourcemanager/v3/pulumiEnums.go +++ b/sdk/go/google/cloudresourcemanager/v3/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. A purpose denotes that this Tag is intended for use in policies of a specific policy engine, and will involve that policy engine in management operations involving this Tag. A purpose does not grant a policy engine exclusive rights to the Tag, and it may be referenced by other policy engines. A purpose cannot be changed once set. type TagKeyPurpose string @@ -362,12 +355,6 @@ func (in *tagKeyPurposePtr) ToTagKeyPurposePtrOutputWithContext(ctx context.Cont return pulumi.ToOutputWithContext(ctx, in).(TagKeyPurposePtrOutput) } -func (in *tagKeyPurposePtr) ToOutput(ctx context.Context) pulumix.Output[*TagKeyPurpose] { - return pulumix.Output[*TagKeyPurpose]{ - OutputState: in.ToTagKeyPurposePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/cloudscheduler/v1/pulumiEnums.go b/sdk/go/google/cloudscheduler/v1/pulumiEnums.go index 6a1a2083d1..c99b5d1f99 100644 --- a/sdk/go/google/cloudscheduler/v1/pulumiEnums.go +++ b/sdk/go/google/cloudscheduler/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The HTTP method to use for the request. PATCH and OPTIONS are not permitted. @@ -197,12 +196,6 @@ func (in *appEngineHttpTargetHttpMethodPtr) ToAppEngineHttpTargetHttpMethodPtrOu return pulumi.ToOutputWithContext(ctx, in).(AppEngineHttpTargetHttpMethodPtrOutput) } -func (in *appEngineHttpTargetHttpMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*AppEngineHttpTargetHttpMethod] { - return pulumix.Output[*AppEngineHttpTargetHttpMethod]{ - OutputState: in.ToAppEngineHttpTargetHttpMethodPtrOutputWithContext(ctx).OutputState, - } -} - // Which HTTP method to use for the request. type HttpTargetHttpMethod string @@ -389,12 +382,6 @@ func (in *httpTargetHttpMethodPtr) ToHttpTargetHttpMethodPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(HttpTargetHttpMethodPtrOutput) } -func (in *httpTargetHttpMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*HttpTargetHttpMethod] { - return pulumix.Output[*HttpTargetHttpMethod]{ - OutputState: in.ToHttpTargetHttpMethodPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AppEngineHttpTargetHttpMethodInput)(nil)).Elem(), AppEngineHttpTargetHttpMethod("HTTP_METHOD_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AppEngineHttpTargetHttpMethodPtrInput)(nil)).Elem(), AppEngineHttpTargetHttpMethod("HTTP_METHOD_UNSPECIFIED")) diff --git a/sdk/go/google/cloudscheduler/v1beta1/pulumiEnums.go b/sdk/go/google/cloudscheduler/v1beta1/pulumiEnums.go index 75f3bc9019..b35510a30b 100644 --- a/sdk/go/google/cloudscheduler/v1beta1/pulumiEnums.go +++ b/sdk/go/google/cloudscheduler/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The HTTP method to use for the request. PATCH and OPTIONS are not permitted. @@ -197,12 +196,6 @@ func (in *appEngineHttpTargetHttpMethodPtr) ToAppEngineHttpTargetHttpMethodPtrOu return pulumi.ToOutputWithContext(ctx, in).(AppEngineHttpTargetHttpMethodPtrOutput) } -func (in *appEngineHttpTargetHttpMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*AppEngineHttpTargetHttpMethod] { - return pulumix.Output[*AppEngineHttpTargetHttpMethod]{ - OutputState: in.ToAppEngineHttpTargetHttpMethodPtrOutputWithContext(ctx).OutputState, - } -} - // Which HTTP method to use for the request. type HttpTargetHttpMethod string @@ -389,12 +382,6 @@ func (in *httpTargetHttpMethodPtr) ToHttpTargetHttpMethodPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(HttpTargetHttpMethodPtrOutput) } -func (in *httpTargetHttpMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*HttpTargetHttpMethod] { - return pulumix.Output[*HttpTargetHttpMethod]{ - OutputState: in.ToHttpTargetHttpMethodPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AppEngineHttpTargetHttpMethodInput)(nil)).Elem(), AppEngineHttpTargetHttpMethod("HTTP_METHOD_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AppEngineHttpTargetHttpMethodPtrInput)(nil)).Elem(), AppEngineHttpTargetHttpMethod("HTTP_METHOD_UNSPECIFIED")) diff --git a/sdk/go/google/cloudsearch/v1/pulumiEnums.go b/sdk/go/google/cloudsearch/v1/pulumiEnums.go index fa8e54fee7..e795566772 100644 --- a/sdk/go/google/cloudsearch/v1/pulumiEnums.go +++ b/sdk/go/google/cloudsearch/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The logic operator of the sub filter. @@ -181,12 +180,6 @@ func (in *compositeFilterLogicOperatorPtr) ToCompositeFilterLogicOperatorPtrOutp return pulumi.ToOutputWithContext(ctx, in).(CompositeFilterLogicOperatorPtrOutput) } -func (in *compositeFilterLogicOperatorPtr) ToOutput(ctx context.Context) pulumix.Output[*CompositeFilterLogicOperator] { - return pulumix.Output[*CompositeFilterLogicOperator]{ - OutputState: in.ToCompositeFilterLogicOperatorPtrOutputWithContext(ctx).OutputState, - } -} - // Ascending is the default sort order type SortOptionsSortOrder string @@ -353,12 +346,6 @@ func (in *sortOptionsSortOrderPtr) ToSortOptionsSortOrderPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(SortOptionsSortOrderPtrOutput) } -func (in *sortOptionsSortOrderPtr) ToOutput(ctx context.Context) pulumix.Output[*SortOptionsSortOrder] { - return pulumix.Output[*SortOptionsSortOrder]{ - OutputState: in.ToSortOptionsSortOrderPtrOutputWithContext(ctx).OutputState, - } -} - // Predefined content source for Google Apps. type SourcePredefinedSource string @@ -541,12 +528,6 @@ func (in *sourcePredefinedSourcePtr) ToSourcePredefinedSourcePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(SourcePredefinedSourcePtrOutput) } -func (in *sourcePredefinedSourcePtr) ToOutput(ctx context.Context) pulumix.Output[*SourcePredefinedSource] { - return pulumix.Output[*SourcePredefinedSource]{ - OutputState: in.ToSourcePredefinedSourcePtrOutputWithContext(ctx).OutputState, - } -} - // Importance of the source. type SourceScoringConfigSourceImportance string @@ -715,12 +696,6 @@ func (in *sourceScoringConfigSourceImportancePtr) ToSourceScoringConfigSourceImp return pulumi.ToOutputWithContext(ctx, in).(SourceScoringConfigSourceImportancePtrOutput) } -func (in *sourceScoringConfigSourceImportancePtr) ToOutput(ctx context.Context) pulumix.Output[*SourceScoringConfigSourceImportance] { - return pulumix.Output[*SourceScoringConfigSourceImportance]{ - OutputState: in.ToSourceScoringConfigSourceImportancePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*CompositeFilterLogicOperatorInput)(nil)).Elem(), CompositeFilterLogicOperator("AND")) pulumi.RegisterInputType(reflect.TypeOf((*CompositeFilterLogicOperatorPtrInput)(nil)).Elem(), CompositeFilterLogicOperator("AND")) diff --git a/sdk/go/google/cloudsupport/v2/pulumiEnums.go b/sdk/go/google/cloudsupport/v2/pulumiEnums.go index 965d735019..07cf665abb 100644 --- a/sdk/go/google/cloudsupport/v2/pulumiEnums.go +++ b/sdk/go/google/cloudsupport/v2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The priority of this case. @@ -191,12 +190,6 @@ func (in *casePriorityPtr) ToCasePriorityPtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(CasePriorityPtrOutput) } -func (in *casePriorityPtr) ToOutput(ctx context.Context) pulumix.Output[*CasePriority] { - return pulumix.Output[*CasePriority]{ - OutputState: in.ToCasePriorityPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*CasePriorityInput)(nil)).Elem(), CasePriority("PRIORITY_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*CasePriorityPtrInput)(nil)).Elem(), CasePriority("PRIORITY_UNSPECIFIED")) diff --git a/sdk/go/google/cloudsupport/v2beta/pulumiEnums.go b/sdk/go/google/cloudsupport/v2beta/pulumiEnums.go index 88bbd6a354..b5ceb11c00 100644 --- a/sdk/go/google/cloudsupport/v2beta/pulumiEnums.go +++ b/sdk/go/google/cloudsupport/v2beta/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The priority of this case. @@ -191,12 +190,6 @@ func (in *casePriorityPtr) ToCasePriorityPtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(CasePriorityPtrOutput) } -func (in *casePriorityPtr) ToOutput(ctx context.Context) pulumix.Output[*CasePriority] { - return pulumix.Output[*CasePriority]{ - OutputState: in.ToCasePriorityPtrOutputWithContext(ctx).OutputState, - } -} - // REMOVED. The severity of this case. Use priority instead. type CaseSeverity string @@ -377,12 +370,6 @@ func (in *caseSeverityPtr) ToCaseSeverityPtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(CaseSeverityPtrOutput) } -func (in *caseSeverityPtr) ToOutput(ctx context.Context) pulumix.Output[*CaseSeverity] { - return pulumix.Output[*CaseSeverity]{ - OutputState: in.ToCaseSeverityPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*CasePriorityInput)(nil)).Elem(), CasePriority("PRIORITY_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*CasePriorityPtrInput)(nil)).Elem(), CasePriority("PRIORITY_UNSPECIFIED")) diff --git a/sdk/go/google/cloudtasks/v2/pulumiEnums.go b/sdk/go/google/cloudtasks/v2/pulumiEnums.go index 31487821f9..34d7fe88ac 100644 --- a/sdk/go/google/cloudtasks/v2/pulumiEnums.go +++ b/sdk/go/google/cloudtasks/v2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The HTTP method to use for the request. The default is POST. The app's request handler for the task's target URL must be able to handle HTTP requests with this http_method, otherwise the task attempt fails with error code 405 (Method Not Allowed). See [Writing a push task request handler](https://cloud.google.com/appengine/docs/java/taskqueue/push/creating-handlers#writing_a_push_task_request_handler) and the App Engine documentation for your runtime on [How Requests are Handled](https://cloud.google.com/appengine/docs/standard/python3/how-requests-are-handled). @@ -197,12 +196,6 @@ func (in *appEngineHttpRequestHttpMethodPtr) ToAppEngineHttpRequestHttpMethodPtr return pulumi.ToOutputWithContext(ctx, in).(AppEngineHttpRequestHttpMethodPtrOutput) } -func (in *appEngineHttpRequestHttpMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*AppEngineHttpRequestHttpMethod] { - return pulumix.Output[*AppEngineHttpRequestHttpMethod]{ - OutputState: in.ToAppEngineHttpRequestHttpMethodPtrOutputWithContext(ctx).OutputState, - } -} - // The HTTP method to use for the request. The default is POST. type HttpRequestHttpMethod string @@ -389,12 +382,6 @@ func (in *httpRequestHttpMethodPtr) ToHttpRequestHttpMethodPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(HttpRequestHttpMethodPtrOutput) } -func (in *httpRequestHttpMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*HttpRequestHttpMethod] { - return pulumix.Output[*HttpRequestHttpMethod]{ - OutputState: in.ToHttpRequestHttpMethodPtrOutputWithContext(ctx).OutputState, - } -} - // The HTTP method to use for the request. When specified, it overrides HttpRequest for the task. Note that if the value is set to HttpMethod the HttpRequest of the task will be ignored at execution time. type HttpTargetHttpMethod string @@ -581,12 +568,6 @@ func (in *httpTargetHttpMethodPtr) ToHttpTargetHttpMethodPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(HttpTargetHttpMethodPtrOutput) } -func (in *httpTargetHttpMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*HttpTargetHttpMethod] { - return pulumix.Output[*HttpTargetHttpMethod]{ - OutputState: in.ToHttpTargetHttpMethodPtrOutputWithContext(ctx).OutputState, - } -} - // The response_view specifies which subset of the Task will be returned. By default response_view is BASIC; not all information is retrieved by default because some data, such as payloads, might be desirable to return only when needed because of its large size or because of the sensitivity of data that it contains. Authorization for FULL requires `cloudtasks.tasks.fullView` [Google IAM](https://cloud.google.com/iam/) permission on the Task resource. type TaskResponseView string @@ -758,12 +739,6 @@ func (in *taskResponseViewPtr) ToTaskResponseViewPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(TaskResponseViewPtrOutput) } -func (in *taskResponseViewPtr) ToOutput(ctx context.Context) pulumix.Output[*TaskResponseView] { - return pulumix.Output[*TaskResponseView]{ - OutputState: in.ToTaskResponseViewPtrOutputWithContext(ctx).OutputState, - } -} - // Scheme override. When specified, the task URI scheme is replaced by the provided value (HTTP or HTTPS). type UriOverrideScheme string @@ -935,12 +910,6 @@ func (in *uriOverrideSchemePtr) ToUriOverrideSchemePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(UriOverrideSchemePtrOutput) } -func (in *uriOverrideSchemePtr) ToOutput(ctx context.Context) pulumix.Output[*UriOverrideScheme] { - return pulumix.Output[*UriOverrideScheme]{ - OutputState: in.ToUriOverrideSchemePtrOutputWithContext(ctx).OutputState, - } -} - // URI Override Enforce Mode When specified, determines the Target UriOverride mode. If not specified, it defaults to ALWAYS. type UriOverrideUriOverrideEnforceMode string @@ -1112,12 +1081,6 @@ func (in *uriOverrideUriOverrideEnforceModePtr) ToUriOverrideUriOverrideEnforceM return pulumi.ToOutputWithContext(ctx, in).(UriOverrideUriOverrideEnforceModePtrOutput) } -func (in *uriOverrideUriOverrideEnforceModePtr) ToOutput(ctx context.Context) pulumix.Output[*UriOverrideUriOverrideEnforceMode] { - return pulumix.Output[*UriOverrideUriOverrideEnforceMode]{ - OutputState: in.ToUriOverrideUriOverrideEnforceModePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AppEngineHttpRequestHttpMethodInput)(nil)).Elem(), AppEngineHttpRequestHttpMethod("HTTP_METHOD_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AppEngineHttpRequestHttpMethodPtrInput)(nil)).Elem(), AppEngineHttpRequestHttpMethod("HTTP_METHOD_UNSPECIFIED")) diff --git a/sdk/go/google/cloudtasks/v2beta2/pulumiEnums.go b/sdk/go/google/cloudtasks/v2beta2/pulumiEnums.go index 30542775e3..180a5a4a5c 100644 --- a/sdk/go/google/cloudtasks/v2beta2/pulumiEnums.go +++ b/sdk/go/google/cloudtasks/v2beta2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The HTTP method to use for the request. The default is POST. The app's request handler for the task's target URL must be able to handle HTTP requests with this http_method, otherwise the task attempt fails with error code 405 (Method Not Allowed). See [Writing a push task request handler](https://cloud.google.com/appengine/docs/java/taskqueue/push/creating-handlers#writing_a_push_task_request_handler) and the App Engine documentation for your runtime on [How Requests are Handled](https://cloud.google.com/appengine/docs/standard/python3/how-requests-are-handled). @@ -197,12 +196,6 @@ func (in *appEngineHttpRequestHttpMethodPtr) ToAppEngineHttpRequestHttpMethodPtr return pulumi.ToOutputWithContext(ctx, in).(AppEngineHttpRequestHttpMethodPtrOutput) } -func (in *appEngineHttpRequestHttpMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*AppEngineHttpRequestHttpMethod] { - return pulumix.Output[*AppEngineHttpRequestHttpMethod]{ - OutputState: in.ToAppEngineHttpRequestHttpMethodPtrOutputWithContext(ctx).OutputState, - } -} - // The HTTP method to use for the request. The default is POST. type HttpRequestHttpMethod string @@ -389,12 +382,6 @@ func (in *httpRequestHttpMethodPtr) ToHttpRequestHttpMethodPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(HttpRequestHttpMethodPtrOutput) } -func (in *httpRequestHttpMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*HttpRequestHttpMethod] { - return pulumix.Output[*HttpRequestHttpMethod]{ - OutputState: in.ToHttpRequestHttpMethodPtrOutputWithContext(ctx).OutputState, - } -} - // The HTTP method to use for the request. When specified, it overrides HttpRequest for the task. Note that if the value is set to HttpMethod the HttpRequest of the task will be ignored at execution time. type HttpTargetHttpMethod string @@ -581,12 +568,6 @@ func (in *httpTargetHttpMethodPtr) ToHttpTargetHttpMethodPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(HttpTargetHttpMethodPtrOutput) } -func (in *httpTargetHttpMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*HttpTargetHttpMethod] { - return pulumix.Output[*HttpTargetHttpMethod]{ - OutputState: in.ToHttpTargetHttpMethodPtrOutputWithContext(ctx).OutputState, - } -} - // The response_view specifies which subset of the Task will be returned. By default response_view is BASIC; not all information is retrieved by default because some data, such as payloads, might be desirable to return only when needed because of its large size or because of the sensitivity of data that it contains. Authorization for FULL requires `cloudtasks.tasks.fullView` [Google IAM](https://cloud.google.com/iam/) permission on the Task resource. type TaskResponseView string @@ -758,12 +739,6 @@ func (in *taskResponseViewPtr) ToTaskResponseViewPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(TaskResponseViewPtrOutput) } -func (in *taskResponseViewPtr) ToOutput(ctx context.Context) pulumix.Output[*TaskResponseView] { - return pulumix.Output[*TaskResponseView]{ - OutputState: in.ToTaskResponseViewPtrOutputWithContext(ctx).OutputState, - } -} - // Scheme override. When specified, the task URI scheme is replaced by the provided value (HTTP or HTTPS). type UriOverrideScheme string @@ -935,12 +910,6 @@ func (in *uriOverrideSchemePtr) ToUriOverrideSchemePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(UriOverrideSchemePtrOutput) } -func (in *uriOverrideSchemePtr) ToOutput(ctx context.Context) pulumix.Output[*UriOverrideScheme] { - return pulumix.Output[*UriOverrideScheme]{ - OutputState: in.ToUriOverrideSchemePtrOutputWithContext(ctx).OutputState, - } -} - // URI Override Enforce Mode When specified, determines the Target UriOverride mode. If not specified, it defaults to ALWAYS. type UriOverrideUriOverrideEnforceMode string @@ -1112,12 +1081,6 @@ func (in *uriOverrideUriOverrideEnforceModePtr) ToUriOverrideUriOverrideEnforceM return pulumi.ToOutputWithContext(ctx, in).(UriOverrideUriOverrideEnforceModePtrOutput) } -func (in *uriOverrideUriOverrideEnforceModePtr) ToOutput(ctx context.Context) pulumix.Output[*UriOverrideUriOverrideEnforceMode] { - return pulumix.Output[*UriOverrideUriOverrideEnforceMode]{ - OutputState: in.ToUriOverrideUriOverrideEnforceModePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AppEngineHttpRequestHttpMethodInput)(nil)).Elem(), AppEngineHttpRequestHttpMethod("HTTP_METHOD_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AppEngineHttpRequestHttpMethodPtrInput)(nil)).Elem(), AppEngineHttpRequestHttpMethod("HTTP_METHOD_UNSPECIFIED")) diff --git a/sdk/go/google/cloudtasks/v2beta3/pulumiEnums.go b/sdk/go/google/cloudtasks/v2beta3/pulumiEnums.go index e8c1dd55eb..97fc899ad2 100644 --- a/sdk/go/google/cloudtasks/v2beta3/pulumiEnums.go +++ b/sdk/go/google/cloudtasks/v2beta3/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The HTTP method to use for the request. The default is POST. The app's request handler for the task's target URL must be able to handle HTTP requests with this http_method, otherwise the task attempt fails with error code 405 (Method Not Allowed). See [Writing a push task request handler](https://cloud.google.com/appengine/docs/java/taskqueue/push/creating-handlers#writing_a_push_task_request_handler) and the App Engine documentation for your runtime on [How Requests are Handled](https://cloud.google.com/appengine/docs/standard/python3/how-requests-are-handled). @@ -197,12 +196,6 @@ func (in *appEngineHttpRequestHttpMethodPtr) ToAppEngineHttpRequestHttpMethodPtr return pulumi.ToOutputWithContext(ctx, in).(AppEngineHttpRequestHttpMethodPtrOutput) } -func (in *appEngineHttpRequestHttpMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*AppEngineHttpRequestHttpMethod] { - return pulumix.Output[*AppEngineHttpRequestHttpMethod]{ - OutputState: in.ToAppEngineHttpRequestHttpMethodPtrOutputWithContext(ctx).OutputState, - } -} - // The HTTP method to use for the request. The default is POST. type HttpRequestHttpMethod string @@ -389,12 +382,6 @@ func (in *httpRequestHttpMethodPtr) ToHttpRequestHttpMethodPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(HttpRequestHttpMethodPtrOutput) } -func (in *httpRequestHttpMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*HttpRequestHttpMethod] { - return pulumix.Output[*HttpRequestHttpMethod]{ - OutputState: in.ToHttpRequestHttpMethodPtrOutputWithContext(ctx).OutputState, - } -} - // The HTTP method to use for the request. When specified, it overrides HttpRequest for the task. Note that if the value is set to HttpMethod the HttpRequest of the task will be ignored at execution time. type HttpTargetHttpMethod string @@ -581,12 +568,6 @@ func (in *httpTargetHttpMethodPtr) ToHttpTargetHttpMethodPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(HttpTargetHttpMethodPtrOutput) } -func (in *httpTargetHttpMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*HttpTargetHttpMethod] { - return pulumix.Output[*HttpTargetHttpMethod]{ - OutputState: in.ToHttpTargetHttpMethodPtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The type of a queue (push or pull). `Queue.type` is an immutable property of the queue that is set at the queue creation time. When left unspecified, the default value of `PUSH` is selected. type QueueType string @@ -758,12 +739,6 @@ func (in *queueTypePtr) ToQueueTypePtrOutputWithContext(ctx context.Context) Que return pulumi.ToOutputWithContext(ctx, in).(QueueTypePtrOutput) } -func (in *queueTypePtr) ToOutput(ctx context.Context) pulumix.Output[*QueueType] { - return pulumix.Output[*QueueType]{ - OutputState: in.ToQueueTypePtrOutputWithContext(ctx).OutputState, - } -} - // The response_view specifies which subset of the Task will be returned. By default response_view is BASIC; not all information is retrieved by default because some data, such as payloads, might be desirable to return only when needed because of its large size or because of the sensitivity of data that it contains. Authorization for FULL requires `cloudtasks.tasks.fullView` [Google IAM](https://cloud.google.com/iam/) permission on the Task resource. type TaskResponseView string @@ -935,12 +910,6 @@ func (in *taskResponseViewPtr) ToTaskResponseViewPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(TaskResponseViewPtrOutput) } -func (in *taskResponseViewPtr) ToOutput(ctx context.Context) pulumix.Output[*TaskResponseView] { - return pulumix.Output[*TaskResponseView]{ - OutputState: in.ToTaskResponseViewPtrOutputWithContext(ctx).OutputState, - } -} - // Scheme override. When specified, the task URI scheme is replaced by the provided value (HTTP or HTTPS). type UriOverrideScheme string @@ -1112,12 +1081,6 @@ func (in *uriOverrideSchemePtr) ToUriOverrideSchemePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(UriOverrideSchemePtrOutput) } -func (in *uriOverrideSchemePtr) ToOutput(ctx context.Context) pulumix.Output[*UriOverrideScheme] { - return pulumix.Output[*UriOverrideScheme]{ - OutputState: in.ToUriOverrideSchemePtrOutputWithContext(ctx).OutputState, - } -} - // URI Override Enforce Mode When specified, determines the Target UriOverride mode. If not specified, it defaults to ALWAYS. type UriOverrideUriOverrideEnforceMode string @@ -1289,12 +1252,6 @@ func (in *uriOverrideUriOverrideEnforceModePtr) ToUriOverrideUriOverrideEnforceM return pulumi.ToOutputWithContext(ctx, in).(UriOverrideUriOverrideEnforceModePtrOutput) } -func (in *uriOverrideUriOverrideEnforceModePtr) ToOutput(ctx context.Context) pulumix.Output[*UriOverrideUriOverrideEnforceMode] { - return pulumix.Output[*UriOverrideUriOverrideEnforceMode]{ - OutputState: in.ToUriOverrideUriOverrideEnforceModePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AppEngineHttpRequestHttpMethodInput)(nil)).Elem(), AppEngineHttpRequestHttpMethod("HTTP_METHOD_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AppEngineHttpRequestHttpMethodPtrInput)(nil)).Elem(), AppEngineHttpRequestHttpMethod("HTTP_METHOD_UNSPECIFIED")) diff --git a/sdk/go/google/composer/v1/pulumiEnums.go b/sdk/go/google/composer/v1/pulumiEnums.go index e763a4f3ee..847e40d6c2 100644 --- a/sdk/go/google/composer/v1/pulumiEnums.go +++ b/sdk/go/google/composer/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Optional. The size of the Cloud Composer environment. This field is supported for Cloud Composer environments in versions composer-2.*.*-airflow-*.*.* and newer. @@ -185,12 +184,6 @@ func (in *environmentConfigEnvironmentSizePtr) ToEnvironmentConfigEnvironmentSiz return pulumi.ToOutputWithContext(ctx, in).(EnvironmentConfigEnvironmentSizePtrOutput) } -func (in *environmentConfigEnvironmentSizePtr) ToOutput(ctx context.Context) pulumix.Output[*EnvironmentConfigEnvironmentSize] { - return pulumix.Output[*EnvironmentConfigEnvironmentSize]{ - OutputState: in.ToEnvironmentConfigEnvironmentSizePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Resilience mode of the Cloud Composer Environment. This field is supported for Cloud Composer environments in versions composer-2.2.0-airflow-*.*.* and newer. type EnvironmentConfigResilienceMode string @@ -359,12 +352,6 @@ func (in *environmentConfigResilienceModePtr) ToEnvironmentConfigResilienceModeP return pulumi.ToOutputWithContext(ctx, in).(EnvironmentConfigResilienceModePtrOutput) } -func (in *environmentConfigResilienceModePtr) ToOutput(ctx context.Context) pulumix.Output[*EnvironmentConfigResilienceMode] { - return pulumix.Output[*EnvironmentConfigResilienceMode]{ - OutputState: in.ToEnvironmentConfigResilienceModePtrOutputWithContext(ctx).OutputState, - } -} - // The current state of the environment. type EnvironmentStateEnum string @@ -545,12 +532,6 @@ func (in *environmentStateEnumPtr) ToEnvironmentStateEnumPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(EnvironmentStateEnumPtrOutput) } -func (in *environmentStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*EnvironmentStateEnum] { - return pulumix.Output[*EnvironmentStateEnum]{ - OutputState: in.ToEnvironmentStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Indicates the user requested specifc connection type between Tenant and Customer projects. You cannot set networking connection type in public IP environment. type NetworkingConfigConnectionType string @@ -722,12 +703,6 @@ func (in *networkingConfigConnectionTypePtr) ToNetworkingConfigConnectionTypePtr return pulumi.ToOutputWithContext(ctx, in).(NetworkingConfigConnectionTypePtrOutput) } -func (in *networkingConfigConnectionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkingConfigConnectionType] { - return pulumix.Output[*NetworkingConfigConnectionType]{ - OutputState: in.ToNetworkingConfigConnectionTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*EnvironmentConfigEnvironmentSizeInput)(nil)).Elem(), EnvironmentConfigEnvironmentSize("ENVIRONMENT_SIZE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*EnvironmentConfigEnvironmentSizePtrInput)(nil)).Elem(), EnvironmentConfigEnvironmentSize("ENVIRONMENT_SIZE_UNSPECIFIED")) diff --git a/sdk/go/google/composer/v1beta1/pulumiEnums.go b/sdk/go/google/composer/v1beta1/pulumiEnums.go index 9c9d689b71..abb8264964 100644 --- a/sdk/go/google/composer/v1beta1/pulumiEnums.go +++ b/sdk/go/google/composer/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Optional. The size of the Cloud Composer environment. This field is supported for Cloud Composer environments in versions composer-2.*.*-airflow-*.*.* and newer. @@ -185,12 +184,6 @@ func (in *environmentConfigEnvironmentSizePtr) ToEnvironmentConfigEnvironmentSiz return pulumi.ToOutputWithContext(ctx, in).(EnvironmentConfigEnvironmentSizePtrOutput) } -func (in *environmentConfigEnvironmentSizePtr) ToOutput(ctx context.Context) pulumix.Output[*EnvironmentConfigEnvironmentSize] { - return pulumix.Output[*EnvironmentConfigEnvironmentSize]{ - OutputState: in.ToEnvironmentConfigEnvironmentSizePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Resilience mode of the Cloud Composer Environment. This field is supported for Cloud Composer environments in versions composer-2.2.0-airflow-*.*.* and newer. type EnvironmentConfigResilienceMode string @@ -359,12 +352,6 @@ func (in *environmentConfigResilienceModePtr) ToEnvironmentConfigResilienceModeP return pulumi.ToOutputWithContext(ctx, in).(EnvironmentConfigResilienceModePtrOutput) } -func (in *environmentConfigResilienceModePtr) ToOutput(ctx context.Context) pulumix.Output[*EnvironmentConfigResilienceMode] { - return pulumix.Output[*EnvironmentConfigResilienceMode]{ - OutputState: in.ToEnvironmentConfigResilienceModePtrOutputWithContext(ctx).OutputState, - } -} - // The current state of the environment. type EnvironmentStateEnum string @@ -545,12 +532,6 @@ func (in *environmentStateEnumPtr) ToEnvironmentStateEnumPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(EnvironmentStateEnumPtrOutput) } -func (in *environmentStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*EnvironmentStateEnum] { - return pulumix.Output[*EnvironmentStateEnum]{ - OutputState: in.ToEnvironmentStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Indicates the user requested specifc connection type between Tenant and Customer projects. You cannot set networking connection type in public IP environment. type NetworkingConfigConnectionType string @@ -722,12 +703,6 @@ func (in *networkingConfigConnectionTypePtr) ToNetworkingConfigConnectionTypePtr return pulumi.ToOutputWithContext(ctx, in).(NetworkingConfigConnectionTypePtrOutput) } -func (in *networkingConfigConnectionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkingConfigConnectionType] { - return pulumix.Output[*NetworkingConfigConnectionType]{ - OutputState: in.ToNetworkingConfigConnectionTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*EnvironmentConfigEnvironmentSizeInput)(nil)).Elem(), EnvironmentConfigEnvironmentSize("ENVIRONMENT_SIZE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*EnvironmentConfigEnvironmentSizePtrInput)(nil)).Elem(), EnvironmentConfigEnvironmentSize("ENVIRONMENT_SIZE_UNSPECIFIED")) diff --git a/sdk/go/google/compute/alpha/pulumiEnums.go b/sdk/go/google/compute/alpha/pulumiEnums.go index 49ed6dc6eb..8e7a51a4a5 100644 --- a/sdk/go/google/compute/alpha/pulumiEnums.go +++ b/sdk/go/google/compute/alpha/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // This signifies the networking tier used for configuring this access configuration and can only take the following values: PREMIUM, STANDARD. If an AccessConfig is specified without a valid external IP address, an ephemeral IP will be created with this networkTier. If an AccessConfig with a valid external IP address is specified, it must match that of the networkTier associated with the Address resource owning that IP. @@ -188,12 +187,6 @@ func (in *accessConfigNetworkTierPtr) ToAccessConfigNetworkTierPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(AccessConfigNetworkTierPtrOutput) } -func (in *accessConfigNetworkTierPtr) ToOutput(ctx context.Context) pulumix.Output[*AccessConfigNetworkTier] { - return pulumix.Output[*AccessConfigNetworkTier]{ - OutputState: in.ToAccessConfigNetworkTierPtrOutputWithContext(ctx).OutputState, - } -} - // The type of configuration. In accessConfigs (IPv4), the default and only option is ONE_TO_ONE_NAT. In ipv6AccessConfigs, the default and only option is DIRECT_IPV6. type AccessConfigType string @@ -360,12 +353,6 @@ func (in *accessConfigTypePtr) ToAccessConfigTypePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(AccessConfigTypePtrOutput) } -func (in *accessConfigTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AccessConfigType] { - return pulumix.Output[*AccessConfigType]{ - OutputState: in.ToAccessConfigTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of address to reserve, either INTERNAL or EXTERNAL. If unspecified, defaults to EXTERNAL. type AddressAddressType string @@ -539,12 +526,6 @@ func (in *addressAddressTypePtr) ToAddressAddressTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(AddressAddressTypePtrOutput) } -func (in *addressAddressTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AddressAddressType] { - return pulumix.Output[*AddressAddressType]{ - OutputState: in.ToAddressAddressTypePtrOutputWithContext(ctx).OutputState, - } -} - // The IP version that will be used by this address. Valid options are IPV4 or IPV6. type AddressIpVersion string @@ -713,12 +694,6 @@ func (in *addressIpVersionPtr) ToAddressIpVersionPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(AddressIpVersionPtrOutput) } -func (in *addressIpVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*AddressIpVersion] { - return pulumix.Output[*AddressIpVersion]{ - OutputState: in.ToAddressIpVersionPtrOutputWithContext(ctx).OutputState, - } -} - // The endpoint type of this address, which should be VM or NETLB. This is used for deciding which type of endpoint this address can be used after the external IPv6 address reservation. type AddressIpv6EndpointType string @@ -887,12 +862,6 @@ func (in *addressIpv6EndpointTypePtr) ToAddressIpv6EndpointTypePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(AddressIpv6EndpointTypePtrOutput) } -func (in *addressIpv6EndpointTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AddressIpv6EndpointType] { - return pulumix.Output[*AddressIpv6EndpointType]{ - OutputState: in.ToAddressIpv6EndpointTypePtrOutputWithContext(ctx).OutputState, - } -} - // This signifies the networking tier used for configuring this address and can only take the following values: PREMIUM or STANDARD. Internal IP addresses are always Premium Tier; global external IP addresses are always Premium Tier; regional external IP addresses can be either Standard or Premium Tier. If this field is not specified, it is assumed to be PREMIUM. type AddressNetworkTier string @@ -1070,12 +1039,6 @@ func (in *addressNetworkTierPtr) ToAddressNetworkTierPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(AddressNetworkTierPtrOutput) } -func (in *addressNetworkTierPtr) ToOutput(ctx context.Context) pulumix.Output[*AddressNetworkTier] { - return pulumix.Output[*AddressNetworkTier]{ - OutputState: in.ToAddressNetworkTierPtrOutputWithContext(ctx).OutputState, - } -} - // The purpose of this resource, which can be one of the following values: - GCE_ENDPOINT for addresses that are used by VM instances, alias IP ranges, load balancers, and similar resources. - DNS_RESOLVER for a DNS resolver address in a subnetwork for a Cloud DNS inbound forwarder IP addresses (regional internal IP address in a subnet of a VPC network) - VPC_PEERING for global internal IP addresses used for private services access allocated ranges. - NAT_AUTO for the regional external IP addresses used by Cloud NAT when allocating addresses using automatic NAT IP address allocation. - IPSEC_INTERCONNECT for addresses created from a private IP range that are reserved for a VLAN attachment in an *HA VPN over Cloud Interconnect* configuration. These addresses are regional resources. - `SHARED_LOADBALANCER_VIP` for an internal IP address that is assigned to multiple internal forwarding rules. - `PRIVATE_SERVICE_CONNECT` for a private network address that is used to configure Private Service Connect. Only global internal addresses can use this purpose. type AddressPurpose string @@ -1262,12 +1225,6 @@ func (in *addressPurposePtr) ToAddressPurposePtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(AddressPurposePtrOutput) } -func (in *addressPurposePtr) ToOutput(ctx context.Context) pulumix.Output[*AddressPurpose] { - return pulumix.Output[*AddressPurpose]{ - OutputState: in.ToAddressPurposePtrOutputWithContext(ctx).OutputState, - } -} - // Type of Performance Monitoring Unit requested on instance. type AdvancedMachineFeaturesPerformanceMonitoringUnit string @@ -1441,12 +1398,6 @@ func (in *advancedMachineFeaturesPerformanceMonitoringUnitPtr) ToAdvancedMachine return pulumi.ToOutputWithContext(ctx, in).(AdvancedMachineFeaturesPerformanceMonitoringUnitPtrOutput) } -func (in *advancedMachineFeaturesPerformanceMonitoringUnitPtr) ToOutput(ctx context.Context) pulumix.Output[*AdvancedMachineFeaturesPerformanceMonitoringUnit] { - return pulumix.Output[*AdvancedMachineFeaturesPerformanceMonitoringUnit]{ - OutputState: in.ToAdvancedMachineFeaturesPerformanceMonitoringUnitPtrOutputWithContext(ctx).OutputState, - } -} - // The VM family that all instances scheduled against this reservation must belong to. type AllocationAggregateReservationVmFamily string @@ -1615,12 +1566,6 @@ func (in *allocationAggregateReservationVmFamilyPtr) ToAllocationAggregateReserv return pulumi.ToOutputWithContext(ctx, in).(AllocationAggregateReservationVmFamilyPtrOutput) } -func (in *allocationAggregateReservationVmFamilyPtr) ToOutput(ctx context.Context) pulumix.Output[*AllocationAggregateReservationVmFamily] { - return pulumix.Output[*AllocationAggregateReservationVmFamily]{ - OutputState: in.ToAllocationAggregateReservationVmFamilyPtrOutputWithContext(ctx).OutputState, - } -} - // The workload type of the instances that will target this reservation. type AllocationAggregateReservationWorkloadType string @@ -1791,12 +1736,6 @@ func (in *allocationAggregateReservationWorkloadTypePtr) ToAllocationAggregateRe return pulumi.ToOutputWithContext(ctx, in).(AllocationAggregateReservationWorkloadTypePtrOutput) } -func (in *allocationAggregateReservationWorkloadTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AllocationAggregateReservationWorkloadType] { - return pulumix.Output[*AllocationAggregateReservationWorkloadType]{ - OutputState: in.ToAllocationAggregateReservationWorkloadTypePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. For performance characteristics of SCSI over NVMe, see Local SSD performance. type AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterface string @@ -1965,12 +1904,6 @@ func (in *allocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk return pulumi.ToOutputWithContext(ctx, in).(AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterfacePtrOutput) } -func (in *allocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterfacePtr) ToOutput(ctx context.Context) pulumix.Output[*AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterface] { - return pulumix.Output[*AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterface]{ - OutputState: in.ToAllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterfacePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the frequency of planned maintenance events. The accepted values are: `PERIODIC`. type AllocationSpecificSKUAllocationReservedInstancePropertiesMaintenanceInterval string @@ -2142,12 +2075,6 @@ func (in *allocationSpecificSKUAllocationReservedInstancePropertiesMaintenanceIn return pulumi.ToOutputWithContext(ctx, in).(AllocationSpecificSKUAllocationReservedInstancePropertiesMaintenanceIntervalPtrOutput) } -func (in *allocationSpecificSKUAllocationReservedInstancePropertiesMaintenanceIntervalPtr) ToOutput(ctx context.Context) pulumix.Output[*AllocationSpecificSKUAllocationReservedInstancePropertiesMaintenanceInterval] { - return pulumix.Output[*AllocationSpecificSKUAllocationReservedInstancePropertiesMaintenanceInterval]{ - OutputState: in.ToAllocationSpecificSKUAllocationReservedInstancePropertiesMaintenanceIntervalPtrOutputWithContext(ctx).OutputState, - } -} - // The architecture of the attached disk. Valid values are arm64 or x86_64. type AttachedDiskInitializeParamsArchitecture string @@ -2319,12 +2246,6 @@ func (in *attachedDiskInitializeParamsArchitecturePtr) ToAttachedDiskInitializeP return pulumi.ToOutputWithContext(ctx, in).(AttachedDiskInitializeParamsArchitecturePtrOutput) } -func (in *attachedDiskInitializeParamsArchitecturePtr) ToOutput(ctx context.Context) pulumix.Output[*AttachedDiskInitializeParamsArchitecture] { - return pulumix.Output[*AttachedDiskInitializeParamsArchitecture]{ - OutputState: in.ToAttachedDiskInitializeParamsArchitecturePtrOutputWithContext(ctx).OutputState, - } -} - // [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. type AttachedDiskInitializeParamsInterface string @@ -2493,12 +2414,6 @@ func (in *attachedDiskInitializeParamsInterfacePtr) ToAttachedDiskInitializePara return pulumi.ToOutputWithContext(ctx, in).(AttachedDiskInitializeParamsInterfacePtrOutput) } -func (in *attachedDiskInitializeParamsInterfacePtr) ToOutput(ctx context.Context) pulumix.Output[*AttachedDiskInitializeParamsInterface] { - return pulumix.Output[*AttachedDiskInitializeParamsInterface]{ - OutputState: in.ToAttachedDiskInitializeParamsInterfacePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies which action to take on instance update with this disk. Default is to use the existing disk. type AttachedDiskInitializeParamsOnUpdateAction string @@ -2670,12 +2585,6 @@ func (in *attachedDiskInitializeParamsOnUpdateActionPtr) ToAttachedDiskInitializ return pulumi.ToOutputWithContext(ctx, in).(AttachedDiskInitializeParamsOnUpdateActionPtrOutput) } -func (in *attachedDiskInitializeParamsOnUpdateActionPtr) ToOutput(ctx context.Context) pulumix.Output[*AttachedDiskInitializeParamsOnUpdateAction] { - return pulumix.Output[*AttachedDiskInitializeParamsOnUpdateAction]{ - OutputState: in.ToAttachedDiskInitializeParamsOnUpdateActionPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. For most machine types, the default is SCSI. Local SSDs can use either NVME or SCSI. In certain configurations, persistent disks can use NVMe. For more information, see About persistent disks. type AttachedDiskInterface string @@ -2844,12 +2753,6 @@ func (in *attachedDiskInterfacePtr) ToAttachedDiskInterfacePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AttachedDiskInterfacePtrOutput) } -func (in *attachedDiskInterfacePtr) ToOutput(ctx context.Context) pulumix.Output[*AttachedDiskInterface] { - return pulumix.Output[*AttachedDiskInterface]{ - OutputState: in.ToAttachedDiskInterfacePtrOutputWithContext(ctx).OutputState, - } -} - // The mode in which to attach this disk, either READ_WRITE or READ_ONLY. If not specified, the default is to attach the disk in READ_WRITE mode. type AttachedDiskMode string @@ -3018,12 +2921,6 @@ func (in *attachedDiskModePtr) ToAttachedDiskModePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(AttachedDiskModePtrOutput) } -func (in *attachedDiskModePtr) ToOutput(ctx context.Context) pulumix.Output[*AttachedDiskMode] { - return pulumix.Output[*AttachedDiskMode]{ - OutputState: in.ToAttachedDiskModePtrOutputWithContext(ctx).OutputState, - } -} - // For LocalSSD disks on VM Instances in STOPPED or SUSPENDED state, this field is set to PRESERVED if the LocalSSD data has been saved to a persistent location by customer request. (see the discard_local_ssd option on Stop/Suspend). Read-only in the api. type AttachedDiskSavedState string @@ -3192,12 +3089,6 @@ func (in *attachedDiskSavedStatePtr) ToAttachedDiskSavedStatePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(AttachedDiskSavedStatePtrOutput) } -func (in *attachedDiskSavedStatePtr) ToOutput(ctx context.Context) pulumix.Output[*AttachedDiskSavedState] { - return pulumix.Output[*AttachedDiskSavedState]{ - OutputState: in.ToAttachedDiskSavedStatePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of the disk, either SCRATCH or PERSISTENT. If not specified, the default is PERSISTENT. type AttachedDiskType string @@ -3364,12 +3255,6 @@ func (in *attachedDiskTypePtr) ToAttachedDiskTypePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(AttachedDiskTypePtrOutput) } -func (in *attachedDiskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AttachedDiskType] { - return pulumix.Output[*AttachedDiskType]{ - OutputState: in.ToAttachedDiskTypePtrOutputWithContext(ctx).OutputState, - } -} - // The log type that this config enables. type AuditLogConfigLogType string @@ -3544,12 +3429,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Define whether peer or origin identity should be used for principal. Default value is USE_PEER. If peer (or origin) identity is not available, either because peer/origin authentication is not defined, or failed, principal will be left unset. In other words, binding rule does not affect the decision to accept or reject request. This field can be set to one of the following: USE_PEER: Principal will be set to the identity from peer authentication. USE_ORIGIN: Principal will be set to the identity from origin authentication. type AuthenticationPolicyPrincipalBinding string @@ -3720,12 +3599,6 @@ func (in *authenticationPolicyPrincipalBindingPtr) ToAuthenticationPolicyPrincip return pulumi.ToOutputWithContext(ctx, in).(AuthenticationPolicyPrincipalBindingPtrOutput) } -func (in *authenticationPolicyPrincipalBindingPtr) ToOutput(ctx context.Context) pulumix.Output[*AuthenticationPolicyPrincipalBinding] { - return pulumix.Output[*AuthenticationPolicyPrincipalBinding]{ - OutputState: in.ToAuthenticationPolicyPrincipalBindingPtrOutputWithContext(ctx).OutputState, - } -} - // This is deprecated and has no effect. Do not use. type AuthorizationLoggingOptionsPermissionType string @@ -3903,12 +3776,6 @@ func (in *authorizationLoggingOptionsPermissionTypePtr) ToAuthorizationLoggingOp return pulumi.ToOutputWithContext(ctx, in).(AuthorizationLoggingOptionsPermissionTypePtrOutput) } -func (in *authorizationLoggingOptionsPermissionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuthorizationLoggingOptionsPermissionType] { - return pulumix.Output[*AuthorizationLoggingOptionsPermissionType]{ - OutputState: in.ToAuthorizationLoggingOptionsPermissionTypePtrOutputWithContext(ctx).OutputState, - } -} - // Indicates whether predictive autoscaling based on CPU metric is enabled. Valid values are: * NONE (default). No predictive method is used. The autoscaler scales the group to meet current demand based on real-time metrics. * OPTIMIZE_AVAILABILITY. Predictive autoscaling improves availability by monitoring daily and weekly load patterns and scaling out ahead of anticipated demand. type AutoscalingPolicyCpuUtilizationPredictiveMethod string @@ -4082,12 +3949,6 @@ func (in *autoscalingPolicyCpuUtilizationPredictiveMethodPtr) ToAutoscalingPolic return pulumi.ToOutputWithContext(ctx, in).(AutoscalingPolicyCpuUtilizationPredictiveMethodPtrOutput) } -func (in *autoscalingPolicyCpuUtilizationPredictiveMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*AutoscalingPolicyCpuUtilizationPredictiveMethod] { - return pulumix.Output[*AutoscalingPolicyCpuUtilizationPredictiveMethod]{ - OutputState: in.ToAutoscalingPolicyCpuUtilizationPredictiveMethodPtrOutputWithContext(ctx).OutputState, - } -} - // Defines how target utilization value is expressed for a Stackdriver Monitoring metric. Either GAUGE, DELTA_PER_SECOND, or DELTA_PER_MINUTE. type AutoscalingPolicyCustomMetricUtilizationUtilizationTargetType string @@ -4259,12 +4120,6 @@ func (in *autoscalingPolicyCustomMetricUtilizationUtilizationTargetTypePtr) ToAu return pulumi.ToOutputWithContext(ctx, in).(AutoscalingPolicyCustomMetricUtilizationUtilizationTargetTypePtrOutput) } -func (in *autoscalingPolicyCustomMetricUtilizationUtilizationTargetTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AutoscalingPolicyCustomMetricUtilizationUtilizationTargetType] { - return pulumix.Output[*AutoscalingPolicyCustomMetricUtilizationUtilizationTargetType]{ - OutputState: in.ToAutoscalingPolicyCustomMetricUtilizationUtilizationTargetTypePtrOutputWithContext(ctx).OutputState, - } -} - // Defines the operating mode for this policy. The following modes are available: - OFF: Disables the autoscaler but maintains its configuration. - ONLY_SCALE_OUT: Restricts the autoscaler to add VM instances only. - ON: Enables all autoscaler activities according to its policy. For more information, see "Turning off or restricting an autoscaler" type AutoscalingPolicyMode string @@ -4439,12 +4294,6 @@ func (in *autoscalingPolicyModePtr) ToAutoscalingPolicyModePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AutoscalingPolicyModePtrOutput) } -func (in *autoscalingPolicyModePtr) ToOutput(ctx context.Context) pulumix.Output[*AutoscalingPolicyMode] { - return pulumix.Output[*AutoscalingPolicyMode]{ - OutputState: in.ToAutoscalingPolicyModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how to determine whether the backend of a load balancer can handle additional traffic or is fully loaded. For usage guidelines, see Connection balancing mode. Backends must use compatible balancing modes. For more information, see Supported balancing modes and target capacity settings and Restrictions and guidance for instance groups. Note: Currently, if you use the API to configure incompatible balancing modes, the configuration might be accepted even though it has no impact and is ignored. Specifically, Backend.maxUtilization is ignored when Backend.balancingMode is RATE. In the future, this incompatible combination will be rejected. type BackendBalancingMode string @@ -4616,12 +4465,6 @@ func (in *backendBalancingModePtr) ToBackendBalancingModePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(BackendBalancingModePtrOutput) } -func (in *backendBalancingModePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendBalancingMode] { - return pulumix.Output[*BackendBalancingMode]{ - OutputState: in.ToBackendBalancingModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the cache setting for all responses from this backend. The possible values are: USE_ORIGIN_HEADERS Requires the origin to set valid caching headers to cache content. Responses without these headers will not be cached at Google's edge, and will require a full trip to the origin on every request, potentially impacting performance and increasing load on the origin server. FORCE_CACHE_ALL Cache all content, ignoring any "private", "no-store" or "no-cache" directives in Cache-Control response headers. Warning: this may result in Cloud CDN caching private, per-user (user identifiable) content. CACHE_ALL_STATIC Automatically cache static content, including common image formats, media (video and audio), and web assets (JavaScript and CSS). Requests and responses that are marked as uncacheable, as well as dynamic content (including HTML), will not be cached. type BackendBucketCdnPolicyCacheMode string @@ -4795,12 +4638,6 @@ func (in *backendBucketCdnPolicyCacheModePtr) ToBackendBucketCdnPolicyCacheModeP return pulumi.ToOutputWithContext(ctx, in).(BackendBucketCdnPolicyCacheModePtrOutput) } -func (in *backendBucketCdnPolicyCacheModePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendBucketCdnPolicyCacheMode] { - return pulumix.Output[*BackendBucketCdnPolicyCacheMode]{ - OutputState: in.ToBackendBucketCdnPolicyCacheModePtrOutputWithContext(ctx).OutputState, - } -} - // Compress text responses using Brotli or gzip compression, based on the client's Accept-Encoding header. type BackendBucketCompressionMode string @@ -4969,12 +4806,6 @@ func (in *backendBucketCompressionModePtr) ToBackendBucketCompressionModePtrOutp return pulumi.ToOutputWithContext(ctx, in).(BackendBucketCompressionModePtrOutput) } -func (in *backendBucketCompressionModePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendBucketCompressionMode] { - return pulumix.Output[*BackendBucketCompressionMode]{ - OutputState: in.ToBackendBucketCompressionModePtrOutputWithContext(ctx).OutputState, - } -} - // This field indicates whether this backend should be fully utilized before sending traffic to backends with default preference. The possible values are: - PREFERRED: Backends with this preference level will be filled up to their capacity limits first, based on RTT. - DEFAULT: If preferred backends don't have enough capacity, backends in this layer would be used and traffic would be assigned based on the load balancing algorithm you use. This is the default type BackendPreference string @@ -5146,12 +4977,6 @@ func (in *backendPreferencePtr) ToBackendPreferencePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(BackendPreferencePtrOutput) } -func (in *backendPreferencePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendPreference] { - return pulumix.Output[*BackendPreference]{ - OutputState: in.ToBackendPreferencePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the cache setting for all responses from this backend. The possible values are: USE_ORIGIN_HEADERS Requires the origin to set valid caching headers to cache content. Responses without these headers will not be cached at Google's edge, and will require a full trip to the origin on every request, potentially impacting performance and increasing load on the origin server. FORCE_CACHE_ALL Cache all content, ignoring any "private", "no-store" or "no-cache" directives in Cache-Control response headers. Warning: this may result in Cloud CDN caching private, per-user (user identifiable) content. CACHE_ALL_STATIC Automatically cache static content, including common image formats, media (video and audio), and web assets (JavaScript and CSS). Requests and responses that are marked as uncacheable, as well as dynamic content (including HTML), will not be cached. type BackendServiceCdnPolicyCacheMode string @@ -5325,12 +5150,6 @@ func (in *backendServiceCdnPolicyCacheModePtr) ToBackendServiceCdnPolicyCacheMod return pulumi.ToOutputWithContext(ctx, in).(BackendServiceCdnPolicyCacheModePtrOutput) } -func (in *backendServiceCdnPolicyCacheModePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceCdnPolicyCacheMode] { - return pulumix.Output[*BackendServiceCdnPolicyCacheMode]{ - OutputState: in.ToBackendServiceCdnPolicyCacheModePtrOutputWithContext(ctx).OutputState, - } -} - // Compress text responses using Brotli or gzip compression, based on the client's Accept-Encoding header. type BackendServiceCompressionMode string @@ -5499,12 +5318,6 @@ func (in *backendServiceCompressionModePtr) ToBackendServiceCompressionModePtrOu return pulumi.ToOutputWithContext(ctx, in).(BackendServiceCompressionModePtrOutput) } -func (in *backendServiceCompressionModePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceCompressionMode] { - return pulumix.Output[*BackendServiceCompressionMode]{ - OutputState: in.ToBackendServiceCompressionModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies connection persistence when backends are unhealthy. The default value is DEFAULT_FOR_PROTOCOL. If set to DEFAULT_FOR_PROTOCOL, the existing connections persist on unhealthy backends only for connection-oriented protocols (TCP and SCTP) and only if the Tracking Mode is PER_CONNECTION (default tracking mode) or the Session Affinity is configured for 5-tuple. They do not persist for UDP. If set to NEVER_PERSIST, after a backend becomes unhealthy, the existing connections on the unhealthy backend are never persisted on the unhealthy backend. They are always diverted to newly selected healthy backends (unless all backends are unhealthy). If set to ALWAYS_PERSIST, existing connections always persist on unhealthy backends regardless of protocol and session affinity. It is generally not recommended to use this mode overriding the default. For more details, see [Connection Persistence for Network Load Balancing](https://cloud.google.com/load-balancing/docs/network/networklb-backend-service#connection-persistence) and [Connection Persistence for Internal TCP/UDP Load Balancing](https://cloud.google.com/load-balancing/docs/internal#connection-persistence). type BackendServiceConnectionTrackingPolicyConnectionPersistenceOnUnhealthyBackends string @@ -5673,12 +5486,6 @@ func (in *backendServiceConnectionTrackingPolicyConnectionPersistenceOnUnhealthy return pulumi.ToOutputWithContext(ctx, in).(BackendServiceConnectionTrackingPolicyConnectionPersistenceOnUnhealthyBackendsPtrOutput) } -func (in *backendServiceConnectionTrackingPolicyConnectionPersistenceOnUnhealthyBackendsPtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceConnectionTrackingPolicyConnectionPersistenceOnUnhealthyBackends] { - return pulumix.Output[*BackendServiceConnectionTrackingPolicyConnectionPersistenceOnUnhealthyBackends]{ - OutputState: in.ToBackendServiceConnectionTrackingPolicyConnectionPersistenceOnUnhealthyBackendsPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the key used for connection tracking. There are two options: - PER_CONNECTION: This is the default mode. The Connection Tracking is performed as per the Connection Key (default Hash Method) for the specific protocol. - PER_SESSION: The Connection Tracking is performed as per the configured Session Affinity. It matches the configured Session Affinity. For more details, see [Tracking Mode for Network Load Balancing](https://cloud.google.com/load-balancing/docs/network/networklb-backend-service#tracking-mode) and [Tracking Mode for Internal TCP/UDP Load Balancing](https://cloud.google.com/load-balancing/docs/internal#tracking-mode). type BackendServiceConnectionTrackingPolicyTrackingMode string @@ -5847,12 +5654,6 @@ func (in *backendServiceConnectionTrackingPolicyTrackingModePtr) ToBackendServic return pulumi.ToOutputWithContext(ctx, in).(BackendServiceConnectionTrackingPolicyTrackingModePtrOutput) } -func (in *backendServiceConnectionTrackingPolicyTrackingModePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceConnectionTrackingPolicyTrackingMode] { - return pulumix.Output[*BackendServiceConnectionTrackingPolicyTrackingMode]{ - OutputState: in.ToBackendServiceConnectionTrackingPolicyTrackingModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies a preference for traffic sent from the proxy to the backend (or from the client to the backend for proxyless gRPC). The possible values are: - IPV4_ONLY: Only send IPv4 traffic to the backends of the backend service (Instance Group, Managed Instance Group, Network Endpoint Group), regardless of traffic from the client to the proxy. Only IPv4 health checks are used to check the health of the backends. This is the default setting. - PREFER_IPV6: Prioritize the connection to the endpoint's IPv6 address over its IPv4 address (provided there is a healthy IPv6 address). - IPV6_ONLY: Only send IPv6 traffic to the backends of the backend service (Instance Group, Managed Instance Group, Network Endpoint Group), regardless of traffic from the client to the proxy. Only IPv6 health checks are used to check the health of the backends. This field is applicable to either: - Advanced Global External HTTPS Load Balancing (load balancing scheme EXTERNAL_MANAGED), - Regional External HTTPS Load Balancing, - Internal TCP Proxy (load balancing scheme INTERNAL_MANAGED), - Regional Internal HTTPS Load Balancing (load balancing scheme INTERNAL_MANAGED), - Traffic Director with Envoy proxies and proxyless gRPC (load balancing scheme INTERNAL_SELF_MANAGED). type BackendServiceIpAddressSelectionPolicy string @@ -6027,12 +5828,6 @@ func (in *backendServiceIpAddressSelectionPolicyPtr) ToBackendServiceIpAddressSe return pulumi.ToOutputWithContext(ctx, in).(BackendServiceIpAddressSelectionPolicyPtrOutput) } -func (in *backendServiceIpAddressSelectionPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceIpAddressSelectionPolicy] { - return pulumix.Output[*BackendServiceIpAddressSelectionPolicy]{ - OutputState: in.ToBackendServiceIpAddressSelectionPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the load balancer type. A backend service created for one type of load balancer cannot be used with another. For more information, refer to Choosing a load balancer. type BackendServiceLoadBalancingScheme string @@ -6212,12 +6007,6 @@ func (in *backendServiceLoadBalancingSchemePtr) ToBackendServiceLoadBalancingSch return pulumi.ToOutputWithContext(ctx, in).(BackendServiceLoadBalancingSchemePtrOutput) } -func (in *backendServiceLoadBalancingSchemePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceLoadBalancingScheme] { - return pulumix.Output[*BackendServiceLoadBalancingScheme]{ - OutputState: in.ToBackendServiceLoadBalancingSchemePtrOutputWithContext(ctx).OutputState, - } -} - // The load balancing algorithm used within the scope of the locality. The possible values are: - ROUND_ROBIN: This is a simple policy in which each healthy backend is selected in round robin order. This is the default. - LEAST_REQUEST: An O(1) algorithm which selects two random healthy hosts and picks the host which has fewer active requests. - RING_HASH: The ring/modulo hash load balancer implements consistent hashing to backends. The algorithm has the property that the addition/removal of a host from a set of N hosts only affects 1/N of the requests. - RANDOM: The load balancer selects a random healthy host. - ORIGINAL_DESTINATION: Backend host is selected based on the client connection metadata, i.e., connections are opened to the same address as the destination address of the incoming connection before the connection was redirected to the load balancer. - MAGLEV: used as a drop in replacement for the ring hash load balancer. Maglev is not as stable as ring hash but has faster table lookup build times and host selection times. For more information about Maglev, see https://ai.google/research/pubs/pub44824 This field is applicable to either: - A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2, and load_balancing_scheme set to INTERNAL_MANAGED. - A global backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED, INTERNAL_MANAGED, or EXTERNAL_MANAGED. If sessionAffinity is not NONE, and this field is not set to MAGLEV or RING_HASH, session affinity settings will not take effect. Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced by a URL map that is bound to target gRPC proxy that has validateForProxyless field set to true. type BackendServiceLocalityLbPolicy string @@ -6403,12 +6192,6 @@ func (in *backendServiceLocalityLbPolicyPtr) ToBackendServiceLocalityLbPolicyPtr return pulumi.ToOutputWithContext(ctx, in).(BackendServiceLocalityLbPolicyPtrOutput) } -func (in *backendServiceLocalityLbPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceLocalityLbPolicy] { - return pulumix.Output[*BackendServiceLocalityLbPolicy]{ - OutputState: in.ToBackendServiceLocalityLbPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // The name of a locality load-balancing policy. Valid values include ROUND_ROBIN and, for Java clients, LEAST_REQUEST. For information about these values, see the description of localityLbPolicy. Do not specify the same policy more than once for a backend. If you do, the configuration is rejected. type BackendServiceLocalityLoadBalancingPolicyConfigPolicyName string @@ -6594,12 +6377,6 @@ func (in *backendServiceLocalityLoadBalancingPolicyConfigPolicyNamePtr) ToBacken return pulumi.ToOutputWithContext(ctx, in).(BackendServiceLocalityLoadBalancingPolicyConfigPolicyNamePtrOutput) } -func (in *backendServiceLocalityLoadBalancingPolicyConfigPolicyNamePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceLocalityLoadBalancingPolicyConfigPolicyName] { - return pulumix.Output[*BackendServiceLocalityLoadBalancingPolicyConfigPolicyName]{ - OutputState: in.ToBackendServiceLocalityLoadBalancingPolicyConfigPolicyNamePtrOutputWithContext(ctx).OutputState, - } -} - // Deprecated in favor of optionalMode. This field can only be specified if logging is enabled for this backend service. Configures whether all, none or a subset of optional fields should be added to the reported logs. One of [INCLUDE_ALL_OPTIONAL, EXCLUDE_ALL_OPTIONAL, CUSTOM]. Default is EXCLUDE_ALL_OPTIONAL. type BackendServiceLogConfigOptional string @@ -6773,12 +6550,6 @@ func (in *backendServiceLogConfigOptionalPtr) ToBackendServiceLogConfigOptionalP return pulumi.ToOutputWithContext(ctx, in).(BackendServiceLogConfigOptionalPtrOutput) } -func (in *backendServiceLogConfigOptionalPtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceLogConfigOptional] { - return pulumix.Output[*BackendServiceLogConfigOptional]{ - OutputState: in.ToBackendServiceLogConfigOptionalPtrOutputWithContext(ctx).OutputState, - } -} - // This field can only be specified if logging is enabled for this backend service. Configures whether all, none or a subset of optional fields should be added to the reported logs. One of [INCLUDE_ALL_OPTIONAL, EXCLUDE_ALL_OPTIONAL, CUSTOM]. Default is EXCLUDE_ALL_OPTIONAL. type BackendServiceLogConfigOptionalMode string @@ -6952,12 +6723,6 @@ func (in *backendServiceLogConfigOptionalModePtr) ToBackendServiceLogConfigOptio return pulumi.ToOutputWithContext(ctx, in).(BackendServiceLogConfigOptionalModePtrOutput) } -func (in *backendServiceLogConfigOptionalModePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceLogConfigOptionalMode] { - return pulumix.Output[*BackendServiceLogConfigOptionalMode]{ - OutputState: in.ToBackendServiceLogConfigOptionalModePtrOutputWithContext(ctx).OutputState, - } -} - // The protocol this BackendService uses to communicate with backends. Possible values are HTTP, HTTPS, HTTP2, TCP, SSL, UDP or GRPC. depending on the chosen load balancer or Traffic Director configuration. Refer to the documentation for the load balancers or for Traffic Director for more information. Must be set to GRPC when the backend service is referenced by a URL map that is bound to target gRPC proxy. type BackendServiceProtocol string @@ -7145,12 +6910,6 @@ func (in *backendServiceProtocolPtr) ToBackendServiceProtocolPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(BackendServiceProtocolPtrOutput) } -func (in *backendServiceProtocolPtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceProtocol] { - return pulumix.Output[*BackendServiceProtocol]{ - OutputState: in.ToBackendServiceProtocolPtrOutputWithContext(ctx).OutputState, - } -} - // Type of session affinity to use. The default is NONE. Only NONE and HEADER_FIELD are supported when the backend service is referenced by a URL map that is bound to target gRPC proxy that has validateForProxyless field set to true. For more details, see: [Session Affinity](https://cloud.google.com/load-balancing/docs/backend-service#session_affinity). type BackendServiceSessionAffinity string @@ -7337,12 +7096,6 @@ func (in *backendServiceSessionAffinityPtr) ToBackendServiceSessionAffinityPtrOu return pulumi.ToOutputWithContext(ctx, in).(BackendServiceSessionAffinityPtrOutput) } -func (in *backendServiceSessionAffinityPtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceSessionAffinity] { - return pulumix.Output[*BackendServiceSessionAffinity]{ - OutputState: in.ToBackendServiceSessionAffinityPtrOutputWithContext(ctx).OutputState, - } -} - // The network scope of the backends that can be added to the backend service. This field can be either GLOBAL_VPC_NETWORK or REGIONAL_VPC_NETWORK. A backend service with the VPC scope set to GLOBAL_VPC_NETWORK is only allowed to have backends in global VPC networks. When the VPC scope is set to REGIONAL_VPC_NETWORK the backend service is only allowed to have backends in regional networks in the same scope as the backend service. Note: if not specified then GLOBAL_VPC_NETWORK will be used. type BackendServiceVpcNetworkScope string @@ -7511,12 +7264,6 @@ func (in *backendServiceVpcNetworkScopePtr) ToBackendServiceVpcNetworkScopePtrOu return pulumi.ToOutputWithContext(ctx, in).(BackendServiceVpcNetworkScopePtrOutput) } -func (in *backendServiceVpcNetworkScopePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceVpcNetworkScope] { - return pulumix.Output[*BackendServiceVpcNetworkScope]{ - OutputState: in.ToBackendServiceVpcNetworkScopePtrOutputWithContext(ctx).OutputState, - } -} - // The type of call credentials to use for GRPC requests to the SDS server. This field can be set to one of the following: - GCE_VM: The local GCE VM service account credentials are used to access the SDS server. - FROM_PLUGIN: Custom authenticator credentials are used to access the SDS server. type CallCredentialsCallCredentialType string @@ -7687,12 +7434,6 @@ func (in *callCredentialsCallCredentialTypePtr) ToCallCredentialsCallCredentialT return pulumi.ToOutputWithContext(ctx, in).(CallCredentialsCallCredentialTypePtrOutput) } -func (in *callCredentialsCallCredentialTypePtr) ToOutput(ctx context.Context) pulumix.Output[*CallCredentialsCallCredentialType] { - return pulumix.Output[*CallCredentialsCallCredentialType]{ - OutputState: in.ToCallCredentialsCallCredentialTypePtrOutputWithContext(ctx).OutputState, - } -} - // The channel credentials to access the SDS server. This field can be set to one of the following: CERTIFICATES: Use TLS certificates to access the SDS server. GCE_VM: Use local GCE VM credentials to access the SDS server. type ChannelCredentialsChannelCredentialType string @@ -7863,12 +7604,6 @@ func (in *channelCredentialsChannelCredentialTypePtr) ToChannelCredentialsChanne return pulumi.ToOutputWithContext(ctx, in).(ChannelCredentialsChannelCredentialTypePtrOutput) } -func (in *channelCredentialsChannelCredentialTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ChannelCredentialsChannelCredentialType] { - return pulumix.Output[*ChannelCredentialsChannelCredentialType]{ - OutputState: in.ToChannelCredentialsChannelCredentialTypePtrOutputWithContext(ctx).OutputState, - } -} - // Indicates whether connections to this port should be secured using TLS. The value of this field determines how TLS is enforced. This can be set to one of the following values: DISABLE: Do not setup a TLS connection to the backends. SIMPLE: Originate a TLS connection to the backends. MUTUAL: Secure connections to the backends using mutual TLS by presenting client certificates for authentication. type ClientTlsSettingsMode string @@ -8042,12 +7777,6 @@ func (in *clientTlsSettingsModePtr) ToClientTlsSettingsModePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ClientTlsSettingsModePtrOutput) } -func (in *clientTlsSettingsModePtr) ToOutput(ctx context.Context) pulumix.Output[*ClientTlsSettingsMode] { - return pulumix.Output[*ClientTlsSettingsMode]{ - OutputState: in.ToClientTlsSettingsModePtrOutputWithContext(ctx).OutputState, - } -} - // This is deprecated and has no effect. Do not use. type ConditionIam string @@ -8234,12 +7963,6 @@ func (in *conditionIamPtr) ToConditionIamPtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(ConditionIamPtrOutput) } -func (in *conditionIamPtr) ToOutput(ctx context.Context) pulumix.Output[*ConditionIam] { - return pulumix.Output[*ConditionIam]{ - OutputState: in.ToConditionIamPtrOutputWithContext(ctx).OutputState, - } -} - // This is deprecated and has no effect. Do not use. type ConditionOp string @@ -8420,12 +8143,6 @@ func (in *conditionOpPtr) ToConditionOpPtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(ConditionOpPtrOutput) } -func (in *conditionOpPtr) ToOutput(ctx context.Context) pulumix.Output[*ConditionOp] { - return pulumix.Output[*ConditionOp]{ - OutputState: in.ToConditionOpPtrOutputWithContext(ctx).OutputState, - } -} - // This is deprecated and has no effect. Do not use. type ConditionSys string @@ -8603,12 +8320,6 @@ func (in *conditionSysPtr) ToConditionSysPtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(ConditionSysPtrOutput) } -func (in *conditionSysPtr) ToOutput(ctx context.Context) pulumix.Output[*ConditionSys] { - return pulumix.Output[*ConditionSys]{ - OutputState: in.ToConditionSysPtrOutputWithContext(ctx).OutputState, - } -} - // Defines the type of technology used by the confidential instance. type ConfidentialInstanceConfigConfidentialInstanceType string @@ -8783,12 +8494,6 @@ func (in *confidentialInstanceConfigConfidentialInstanceTypePtr) ToConfidentialI return pulumi.ToOutputWithContext(ctx, in).(ConfidentialInstanceConfigConfidentialInstanceTypePtrOutput) } -func (in *confidentialInstanceConfigConfidentialInstanceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ConfidentialInstanceConfigConfidentialInstanceType] { - return pulumix.Output[*ConfidentialInstanceConfigConfidentialInstanceType]{ - OutputState: in.ToConfidentialInstanceConfigConfidentialInstanceTypePtrOutputWithContext(ctx).OutputState, - } -} - // The deprecation state of this resource. This can be ACTIVE, DEPRECATED, OBSOLETE, or DELETED. Operations which communicate the end of life date for an image, can use ACTIVE. Operations which create a new resource using a DEPRECATED resource will return successfully, but with a warning indicating the deprecated resource and recommending its replacement. Operations which use OBSOLETE or DELETED resources will be rejected and result in an error. type DeprecationStatusState string @@ -8959,12 +8664,6 @@ func (in *deprecationStatusStatePtr) ToDeprecationStatusStatePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(DeprecationStatusStatePtrOutput) } -func (in *deprecationStatusStatePtr) ToOutput(ctx context.Context) pulumix.Output[*DeprecationStatusState] { - return pulumix.Output[*DeprecationStatusState]{ - OutputState: in.ToDeprecationStatusStatePtrOutputWithContext(ctx).OutputState, - } -} - // The access mode of the disk. - READ_WRITE_SINGLE: The default AccessMode, means the disk can be attached to single instance in RW mode. - READ_WRITE_MANY: The AccessMode means the disk can be attached to multiple instances in RW mode. - READ_ONLY_MANY: The AccessMode means the disk can be attached to multiple instances in RO mode. The AccessMode is only valid for Hyperdisk disk types. type DiskAccessMode string @@ -9136,12 +8835,6 @@ func (in *diskAccessModePtr) ToDiskAccessModePtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(DiskAccessModePtrOutput) } -func (in *diskAccessModePtr) ToOutput(ctx context.Context) pulumix.Output[*DiskAccessMode] { - return pulumix.Output[*DiskAccessMode]{ - OutputState: in.ToDiskAccessModePtrOutputWithContext(ctx).OutputState, - } -} - // The architecture of the disk. Valid values are ARM64 or X86_64. type DiskArchitecture string @@ -9313,12 +9006,6 @@ func (in *diskArchitecturePtr) ToDiskArchitecturePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(DiskArchitecturePtrOutput) } -func (in *diskArchitecturePtr) ToOutput(ctx context.Context) pulumix.Output[*DiskArchitecture] { - return pulumix.Output[*DiskArchitecture]{ - OutputState: in.ToDiskArchitecturePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies whether to include the disk and what image to use. Possible values are: - source-image: to use the same image that was used to create the source instance's corresponding disk. Applicable to the boot disk and additional read-write disks. - source-image-family: to use the same image family that was used to create the source instance's corresponding disk. Applicable to the boot disk and additional read-write disks. - custom-image: to use a user-provided image url for disk creation. Applicable to the boot disk and additional read-write disks. - attach-read-only: to attach a read-only disk. Applicable to read-only disks. - do-not-include: to exclude a disk from the template. Applicable to additional read-write disks, local SSDs, and read-only disks. type DiskInstantiationConfigInstantiateFrom string @@ -9502,12 +9189,6 @@ func (in *diskInstantiationConfigInstantiateFromPtr) ToDiskInstantiationConfigIn return pulumi.ToOutputWithContext(ctx, in).(DiskInstantiationConfigInstantiateFromPtrOutput) } -func (in *diskInstantiationConfigInstantiateFromPtr) ToOutput(ctx context.Context) pulumix.Output[*DiskInstantiationConfigInstantiateFrom] { - return pulumix.Output[*DiskInstantiationConfigInstantiateFrom]{ - OutputState: in.ToDiskInstantiationConfigInstantiateFromPtrOutputWithContext(ctx).OutputState, - } -} - // [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. type DiskInterface string @@ -9676,12 +9357,6 @@ func (in *diskInterfacePtr) ToDiskInterfacePtrOutputWithContext(ctx context.Cont return pulumi.ToOutputWithContext(ctx, in).(DiskInterfacePtrOutput) } -func (in *diskInterfacePtr) ToOutput(ctx context.Context) pulumix.Output[*DiskInterface] { - return pulumix.Output[*DiskInterface]{ - OutputState: in.ToDiskInterfacePtrOutputWithContext(ctx).OutputState, - } -} - // [Deprecated] Storage type of the persistent disk. type DiskStorageType string @@ -9848,12 +9523,6 @@ func (in *diskStorageTypePtr) ToDiskStorageTypePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(DiskStorageTypePtrOutput) } -func (in *diskStorageTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DiskStorageType] { - return pulumix.Output[*DiskStorageType]{ - OutputState: in.ToDiskStorageTypePtrOutputWithContext(ctx).OutputState, - } -} - // The distribution shape to which the group converges either proactively or on resize events (depending on the value set in updatePolicy.instanceRedistributionType). type DistributionPolicyTargetShape string @@ -10028,12 +9697,6 @@ func (in *distributionPolicyTargetShapePtr) ToDistributionPolicyTargetShapePtrOu return pulumi.ToOutputWithContext(ctx, in).(DistributionPolicyTargetShapePtrOutput) } -func (in *distributionPolicyTargetShapePtr) ToOutput(ctx context.Context) pulumix.Output[*DistributionPolicyTargetShape] { - return pulumix.Output[*DistributionPolicyTargetShape]{ - OutputState: in.ToDistributionPolicyTargetShapePtrOutputWithContext(ctx).OutputState, - } -} - // Indicates the user-supplied redundancy type of this external VPN gateway. type ExternalVpnGatewayRedundancyType string @@ -10205,12 +9868,6 @@ func (in *externalVpnGatewayRedundancyTypePtr) ToExternalVpnGatewayRedundancyTyp return pulumi.ToOutputWithContext(ctx, in).(ExternalVpnGatewayRedundancyTypePtrOutput) } -func (in *externalVpnGatewayRedundancyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ExternalVpnGatewayRedundancyType] { - return pulumix.Output[*ExternalVpnGatewayRedundancyType]{ - OutputState: in.ToExternalVpnGatewayRedundancyTypePtrOutputWithContext(ctx).OutputState, - } -} - // The file type of source file. type FileContentBufferFileType string @@ -10379,12 +10036,6 @@ func (in *fileContentBufferFileTypePtr) ToFileContentBufferFileTypePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(FileContentBufferFileTypePtrOutput) } -func (in *fileContentBufferFileTypePtr) ToOutput(ctx context.Context) pulumix.Output[*FileContentBufferFileType] { - return pulumix.Output[*FileContentBufferFileType]{ - OutputState: in.ToFileContentBufferFileTypePtrOutputWithContext(ctx).OutputState, - } -} - // Direction of traffic to which this firewall applies, either `INGRESS` or `EGRESS`. The default is `INGRESS`. For `EGRESS` traffic, you cannot specify the sourceTags fields. type FirewallDirection string @@ -10553,12 +10204,6 @@ func (in *firewallDirectionPtr) ToFirewallDirectionPtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(FirewallDirectionPtrOutput) } -func (in *firewallDirectionPtr) ToOutput(ctx context.Context) pulumix.Output[*FirewallDirection] { - return pulumix.Output[*FirewallDirection]{ - OutputState: in.ToFirewallDirectionPtrOutputWithContext(ctx).OutputState, - } -} - // This field can only be specified for a particular firewall rule if logging is enabled for that rule. This field denotes whether to include or exclude metadata for firewall logs. type FirewallLogConfigMetadata string @@ -10725,12 +10370,6 @@ func (in *firewallLogConfigMetadataPtr) ToFirewallLogConfigMetadataPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(FirewallLogConfigMetadataPtrOutput) } -func (in *firewallLogConfigMetadataPtr) ToOutput(ctx context.Context) pulumix.Output[*FirewallLogConfigMetadata] { - return pulumix.Output[*FirewallLogConfigMetadata]{ - OutputState: in.ToFirewallLogConfigMetadataPtrOutputWithContext(ctx).OutputState, - } -} - // The direction in which this rule applies. type FirewallPolicyRuleDirection string @@ -10897,12 +10536,6 @@ func (in *firewallPolicyRuleDirectionPtr) ToFirewallPolicyRuleDirectionPtrOutput return pulumi.ToOutputWithContext(ctx, in).(FirewallPolicyRuleDirectionPtrOutput) } -func (in *firewallPolicyRuleDirectionPtr) ToOutput(ctx context.Context) pulumix.Output[*FirewallPolicyRuleDirection] { - return pulumix.Output[*FirewallPolicyRuleDirection]{ - OutputState: in.ToFirewallPolicyRuleDirectionPtrOutputWithContext(ctx).OutputState, - } -} - // The scope of networks allowed to be associated with the firewall policy. This field can be either GLOBAL_VPC_NETWORK or REGIONAL_VPC_NETWORK. A firewall policy with the VPC scope set to GLOBAL_VPC_NETWORK is allowed to be attached only to global networks. When the VPC scope is set to REGIONAL_VPC_NETWORK the firewall policy is allowed to be attached only to regional networks in the same scope as the firewall policy. Note: if not specified then GLOBAL_VPC_NETWORK will be used. type FirewallPolicyVpcNetworkScope string @@ -11071,12 +10704,6 @@ func (in *firewallPolicyVpcNetworkScopePtr) ToFirewallPolicyVpcNetworkScopePtrOu return pulumi.ToOutputWithContext(ctx, in).(FirewallPolicyVpcNetworkScopePtrOutput) } -func (in *firewallPolicyVpcNetworkScopePtr) ToOutput(ctx context.Context) pulumix.Output[*FirewallPolicyVpcNetworkScope] { - return pulumix.Output[*FirewallPolicyVpcNetworkScope]{ - OutputState: in.ToFirewallPolicyVpcNetworkScopePtrOutputWithContext(ctx).OutputState, - } -} - // The IP protocol to which this rule applies. For protocol forwarding, valid options are TCP, UDP, ESP, AH, SCTP, ICMP and L3_DEFAULT. The valid IP protocols are different for different load balancing products as described in [Load balancing features](https://cloud.google.com/load-balancing/docs/features#protocols_from_the_load_balancer_to_the_backends). type ForwardingRuleIpProtocol string @@ -11255,12 +10882,6 @@ func (in *forwardingRuleIpProtocolPtr) ToForwardingRuleIpProtocolPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(ForwardingRuleIpProtocolPtrOutput) } -func (in *forwardingRuleIpProtocolPtr) ToOutput(ctx context.Context) pulumix.Output[*ForwardingRuleIpProtocol] { - return pulumix.Output[*ForwardingRuleIpProtocol]{ - OutputState: in.ToForwardingRuleIpProtocolPtrOutputWithContext(ctx).OutputState, - } -} - // The IP Version that will be used by this forwarding rule. Valid options are IPV4 or IPV6. type ForwardingRuleIpVersion string @@ -11429,12 +11050,6 @@ func (in *forwardingRuleIpVersionPtr) ToForwardingRuleIpVersionPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(ForwardingRuleIpVersionPtrOutput) } -func (in *forwardingRuleIpVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*ForwardingRuleIpVersion] { - return pulumix.Output[*ForwardingRuleIpVersion]{ - OutputState: in.ToForwardingRuleIpVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the forwarding rule type. For more information about forwarding rules, refer to Forwarding rule concepts. type ForwardingRuleLoadBalancingScheme string @@ -11609,12 +11224,6 @@ func (in *forwardingRuleLoadBalancingSchemePtr) ToForwardingRuleLoadBalancingSch return pulumi.ToOutputWithContext(ctx, in).(ForwardingRuleLoadBalancingSchemePtrOutput) } -func (in *forwardingRuleLoadBalancingSchemePtr) ToOutput(ctx context.Context) pulumix.Output[*ForwardingRuleLoadBalancingScheme] { - return pulumix.Output[*ForwardingRuleLoadBalancingScheme]{ - OutputState: in.ToForwardingRuleLoadBalancingSchemePtrOutputWithContext(ctx).OutputState, - } -} - // This signifies the networking tier used for configuring this load balancer and can only take the following values: PREMIUM, STANDARD. For regional ForwardingRule, the valid values are PREMIUM and STANDARD. For GlobalForwardingRule, the valid value is PREMIUM. If this field is not specified, it is assumed to be PREMIUM. If IPAddress is specified, this value must be equal to the networkTier of the Address. type ForwardingRuleNetworkTier string @@ -11792,12 +11401,6 @@ func (in *forwardingRuleNetworkTierPtr) ToForwardingRuleNetworkTierPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(ForwardingRuleNetworkTierPtrOutput) } -func (in *forwardingRuleNetworkTierPtr) ToOutput(ctx context.Context) pulumix.Output[*ForwardingRuleNetworkTier] { - return pulumix.Output[*ForwardingRuleNetworkTier]{ - OutputState: in.ToForwardingRuleNetworkTierPtrOutputWithContext(ctx).OutputState, - } -} - type ForwardingRulePscConnectionStatus string const ( @@ -11976,12 +11579,6 @@ func (in *forwardingRulePscConnectionStatusPtr) ToForwardingRulePscConnectionSta return pulumi.ToOutputWithContext(ctx, in).(ForwardingRulePscConnectionStatusPtrOutput) } -func (in *forwardingRulePscConnectionStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*ForwardingRulePscConnectionStatus] { - return pulumix.Output[*ForwardingRulePscConnectionStatus]{ - OutputState: in.ToForwardingRulePscConnectionStatusPtrOutputWithContext(ctx).OutputState, - } -} - // Planning state before being submitted for evaluation type FutureReservationPlanningStatus string @@ -12152,12 +11749,6 @@ func (in *futureReservationPlanningStatusPtr) ToFutureReservationPlanningStatusP return pulumi.ToOutputWithContext(ctx, in).(FutureReservationPlanningStatusPtrOutput) } -func (in *futureReservationPlanningStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*FutureReservationPlanningStatus] { - return pulumix.Output[*FutureReservationPlanningStatus]{ - OutputState: in.ToFutureReservationPlanningStatusPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how a port is selected for health checking. Can be one of the following values: USE_FIXED_PORT: Specifies a port number explicitly using the port field in the health check. Supported by backend services for pass-through load balancers and backend services for proxy load balancers. Not supported by target pools. The health check supports all backends supported by the backend service provided the backend can be health checked. For example, GCE_VM_IP network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an indirect method of specifying the health check port by referring to the backend service. Only supported by backend services for proxy load balancers. Not supported by target pools. Not supported by backend services for pass-through load balancers. Supports all backends that can be health checked; for example, GCE_VM_IP_PORT network endpoint groups and instance group backends. For GCE_VM_IP_PORT network endpoint group backends, the health check uses the port number specified for each endpoint in the network endpoint group. For instance group backends, the health check uses the port number determined by looking up the backend service's named port in the instance group's list of named ports. type GRPCHealthCheckPortSpecification string @@ -12329,12 +11920,6 @@ func (in *grpchealthCheckPortSpecificationPtr) ToGRPCHealthCheckPortSpecificatio return pulumi.ToOutputWithContext(ctx, in).(GRPCHealthCheckPortSpecificationPtrOutput) } -func (in *grpchealthCheckPortSpecificationPtr) ToOutput(ctx context.Context) pulumix.Output[*GRPCHealthCheckPortSpecification] { - return pulumix.Output[*GRPCHealthCheckPortSpecification]{ - OutputState: in.ToGRPCHealthCheckPortSpecificationPtrOutputWithContext(ctx).OutputState, - } -} - // The type of address to reserve, either INTERNAL or EXTERNAL. If unspecified, defaults to EXTERNAL. type GlobalAddressAddressType string @@ -12508,12 +12093,6 @@ func (in *globalAddressAddressTypePtr) ToGlobalAddressAddressTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(GlobalAddressAddressTypePtrOutput) } -func (in *globalAddressAddressTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalAddressAddressType] { - return pulumix.Output[*GlobalAddressAddressType]{ - OutputState: in.ToGlobalAddressAddressTypePtrOutputWithContext(ctx).OutputState, - } -} - // The IP version that will be used by this address. Valid options are IPV4 or IPV6. type GlobalAddressIpVersion string @@ -12682,12 +12261,6 @@ func (in *globalAddressIpVersionPtr) ToGlobalAddressIpVersionPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(GlobalAddressIpVersionPtrOutput) } -func (in *globalAddressIpVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalAddressIpVersion] { - return pulumix.Output[*GlobalAddressIpVersion]{ - OutputState: in.ToGlobalAddressIpVersionPtrOutputWithContext(ctx).OutputState, - } -} - // The endpoint type of this address, which should be VM or NETLB. This is used for deciding which type of endpoint this address can be used after the external IPv6 address reservation. type GlobalAddressIpv6EndpointType string @@ -12856,12 +12429,6 @@ func (in *globalAddressIpv6EndpointTypePtr) ToGlobalAddressIpv6EndpointTypePtrOu return pulumi.ToOutputWithContext(ctx, in).(GlobalAddressIpv6EndpointTypePtrOutput) } -func (in *globalAddressIpv6EndpointTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalAddressIpv6EndpointType] { - return pulumix.Output[*GlobalAddressIpv6EndpointType]{ - OutputState: in.ToGlobalAddressIpv6EndpointTypePtrOutputWithContext(ctx).OutputState, - } -} - // This signifies the networking tier used for configuring this address and can only take the following values: PREMIUM or STANDARD. Internal IP addresses are always Premium Tier; global external IP addresses are always Premium Tier; regional external IP addresses can be either Standard or Premium Tier. If this field is not specified, it is assumed to be PREMIUM. type GlobalAddressNetworkTier string @@ -13039,12 +12606,6 @@ func (in *globalAddressNetworkTierPtr) ToGlobalAddressNetworkTierPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(GlobalAddressNetworkTierPtrOutput) } -func (in *globalAddressNetworkTierPtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalAddressNetworkTier] { - return pulumix.Output[*GlobalAddressNetworkTier]{ - OutputState: in.ToGlobalAddressNetworkTierPtrOutputWithContext(ctx).OutputState, - } -} - // The purpose of this resource, which can be one of the following values: - GCE_ENDPOINT for addresses that are used by VM instances, alias IP ranges, load balancers, and similar resources. - DNS_RESOLVER for a DNS resolver address in a subnetwork for a Cloud DNS inbound forwarder IP addresses (regional internal IP address in a subnet of a VPC network) - VPC_PEERING for global internal IP addresses used for private services access allocated ranges. - NAT_AUTO for the regional external IP addresses used by Cloud NAT when allocating addresses using automatic NAT IP address allocation. - IPSEC_INTERCONNECT for addresses created from a private IP range that are reserved for a VLAN attachment in an *HA VPN over Cloud Interconnect* configuration. These addresses are regional resources. - `SHARED_LOADBALANCER_VIP` for an internal IP address that is assigned to multiple internal forwarding rules. - `PRIVATE_SERVICE_CONNECT` for a private network address that is used to configure Private Service Connect. Only global internal addresses can use this purpose. type GlobalAddressPurpose string @@ -13231,12 +12792,6 @@ func (in *globalAddressPurposePtr) ToGlobalAddressPurposePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(GlobalAddressPurposePtrOutput) } -func (in *globalAddressPurposePtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalAddressPurpose] { - return pulumix.Output[*GlobalAddressPurpose]{ - OutputState: in.ToGlobalAddressPurposePtrOutputWithContext(ctx).OutputState, - } -} - // The IP protocol to which this rule applies. For protocol forwarding, valid options are TCP, UDP, ESP, AH, SCTP, ICMP and L3_DEFAULT. The valid IP protocols are different for different load balancing products as described in [Load balancing features](https://cloud.google.com/load-balancing/docs/features#protocols_from_the_load_balancer_to_the_backends). type GlobalForwardingRuleIpProtocol string @@ -13415,12 +12970,6 @@ func (in *globalForwardingRuleIpProtocolPtr) ToGlobalForwardingRuleIpProtocolPtr return pulumi.ToOutputWithContext(ctx, in).(GlobalForwardingRuleIpProtocolPtrOutput) } -func (in *globalForwardingRuleIpProtocolPtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalForwardingRuleIpProtocol] { - return pulumix.Output[*GlobalForwardingRuleIpProtocol]{ - OutputState: in.ToGlobalForwardingRuleIpProtocolPtrOutputWithContext(ctx).OutputState, - } -} - // The IP Version that will be used by this forwarding rule. Valid options are IPV4 or IPV6. type GlobalForwardingRuleIpVersion string @@ -13589,12 +13138,6 @@ func (in *globalForwardingRuleIpVersionPtr) ToGlobalForwardingRuleIpVersionPtrOu return pulumi.ToOutputWithContext(ctx, in).(GlobalForwardingRuleIpVersionPtrOutput) } -func (in *globalForwardingRuleIpVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalForwardingRuleIpVersion] { - return pulumix.Output[*GlobalForwardingRuleIpVersion]{ - OutputState: in.ToGlobalForwardingRuleIpVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the forwarding rule type. For more information about forwarding rules, refer to Forwarding rule concepts. type GlobalForwardingRuleLoadBalancingScheme string @@ -13769,12 +13312,6 @@ func (in *globalForwardingRuleLoadBalancingSchemePtr) ToGlobalForwardingRuleLoad return pulumi.ToOutputWithContext(ctx, in).(GlobalForwardingRuleLoadBalancingSchemePtrOutput) } -func (in *globalForwardingRuleLoadBalancingSchemePtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalForwardingRuleLoadBalancingScheme] { - return pulumix.Output[*GlobalForwardingRuleLoadBalancingScheme]{ - OutputState: in.ToGlobalForwardingRuleLoadBalancingSchemePtrOutputWithContext(ctx).OutputState, - } -} - // This signifies the networking tier used for configuring this load balancer and can only take the following values: PREMIUM, STANDARD. For regional ForwardingRule, the valid values are PREMIUM and STANDARD. For GlobalForwardingRule, the valid value is PREMIUM. If this field is not specified, it is assumed to be PREMIUM. If IPAddress is specified, this value must be equal to the networkTier of the Address. type GlobalForwardingRuleNetworkTier string @@ -13952,12 +13489,6 @@ func (in *globalForwardingRuleNetworkTierPtr) ToGlobalForwardingRuleNetworkTierP return pulumi.ToOutputWithContext(ctx, in).(GlobalForwardingRuleNetworkTierPtrOutput) } -func (in *globalForwardingRuleNetworkTierPtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalForwardingRuleNetworkTier] { - return pulumix.Output[*GlobalForwardingRuleNetworkTier]{ - OutputState: in.ToGlobalForwardingRuleNetworkTierPtrOutputWithContext(ctx).OutputState, - } -} - type GlobalForwardingRulePscConnectionStatus string const ( @@ -14136,12 +13667,6 @@ func (in *globalForwardingRulePscConnectionStatusPtr) ToGlobalForwardingRulePscC return pulumi.ToOutputWithContext(ctx, in).(GlobalForwardingRulePscConnectionStatusPtrOutput) } -func (in *globalForwardingRulePscConnectionStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalForwardingRulePscConnectionStatus] { - return pulumix.Output[*GlobalForwardingRulePscConnectionStatus]{ - OutputState: in.ToGlobalForwardingRulePscConnectionStatusPtrOutputWithContext(ctx).OutputState, - } -} - // Only valid when networkEndpointType is "GCE_VM_IP_PORT" and the NEG is regional. type GlobalNetworkEndpointGroupClientPortMappingMode string @@ -14310,12 +13835,6 @@ func (in *globalNetworkEndpointGroupClientPortMappingModePtr) ToGlobalNetworkEnd return pulumi.ToOutputWithContext(ctx, in).(GlobalNetworkEndpointGroupClientPortMappingModePtrOutput) } -func (in *globalNetworkEndpointGroupClientPortMappingModePtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalNetworkEndpointGroupClientPortMappingMode] { - return pulumix.Output[*GlobalNetworkEndpointGroupClientPortMappingMode]{ - OutputState: in.ToGlobalNetworkEndpointGroupClientPortMappingModePtrOutputWithContext(ctx).OutputState, - } -} - // Type of network endpoints in this network endpoint group. Can be one of GCE_VM_IP, GCE_VM_IP_PORT, NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT, INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT. type GlobalNetworkEndpointGroupNetworkEndpointType string @@ -14499,12 +14018,6 @@ func (in *globalNetworkEndpointGroupNetworkEndpointTypePtr) ToGlobalNetworkEndpo return pulumi.ToOutputWithContext(ctx, in).(GlobalNetworkEndpointGroupNetworkEndpointTypePtrOutput) } -func (in *globalNetworkEndpointGroupNetworkEndpointTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalNetworkEndpointGroupNetworkEndpointType] { - return pulumix.Output[*GlobalNetworkEndpointGroupNetworkEndpointType]{ - OutputState: in.ToGlobalNetworkEndpointGroupNetworkEndpointTypePtrOutputWithContext(ctx).OutputState, - } -} - // Specify the type of this network endpoint group. Only LOAD_BALANCING is valid for now. type GlobalNetworkEndpointGroupType string @@ -14670,12 +14183,6 @@ func (in *globalNetworkEndpointGroupTypePtr) ToGlobalNetworkEndpointGroupTypePtr return pulumi.ToOutputWithContext(ctx, in).(GlobalNetworkEndpointGroupTypePtrOutput) } -func (in *globalNetworkEndpointGroupTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalNetworkEndpointGroupType] { - return pulumix.Output[*GlobalNetworkEndpointGroupType]{ - OutputState: in.ToGlobalNetworkEndpointGroupTypePtrOutputWithContext(ctx).OutputState, - } -} - // The public delegated prefix mode for IPv6 only. type GlobalPublicDelegatedPrefixMode string @@ -14844,12 +14351,6 @@ func (in *globalPublicDelegatedPrefixModePtr) ToGlobalPublicDelegatedPrefixModeP return pulumi.ToOutputWithContext(ctx, in).(GlobalPublicDelegatedPrefixModePtrOutput) } -func (in *globalPublicDelegatedPrefixModePtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalPublicDelegatedPrefixMode] { - return pulumix.Output[*GlobalPublicDelegatedPrefixMode]{ - OutputState: in.ToGlobalPublicDelegatedPrefixModePtrOutputWithContext(ctx).OutputState, - } -} - // The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE - SEV_SNP_CAPABLE For more information, see Enabling guest operating system features. type GuestOsFeatureType string @@ -15040,12 +14541,6 @@ func (in *guestOsFeatureTypePtr) ToGuestOsFeatureTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(GuestOsFeatureTypePtrOutput) } -func (in *guestOsFeatureTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GuestOsFeatureType] { - return pulumix.Output[*GuestOsFeatureType]{ - OutputState: in.ToGuestOsFeatureTypePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how a port is selected for health checking. Can be one of the following values: USE_FIXED_PORT: Specifies a port number explicitly using the port field in the health check. Supported by backend services for pass-through load balancers and backend services for proxy load balancers. Not supported by target pools. The health check supports all backends supported by the backend service provided the backend can be health checked. For example, GCE_VM_IP network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an indirect method of specifying the health check port by referring to the backend service. Only supported by backend services for proxy load balancers. Not supported by target pools. Not supported by backend services for pass-through load balancers. Supports all backends that can be health checked; for example, GCE_VM_IP_PORT network endpoint groups and instance group backends. For GCE_VM_IP_PORT network endpoint group backends, the health check uses the port number specified for each endpoint in the network endpoint group. For instance group backends, the health check uses the port number determined by looking up the backend service's named port in the instance group's list of named ports. type HTTP2HealthCheckPortSpecification string @@ -15217,12 +14712,6 @@ func (in *http2healthCheckPortSpecificationPtr) ToHTTP2HealthCheckPortSpecificat return pulumi.ToOutputWithContext(ctx, in).(HTTP2HealthCheckPortSpecificationPtrOutput) } -func (in *http2healthCheckPortSpecificationPtr) ToOutput(ctx context.Context) pulumix.Output[*HTTP2HealthCheckPortSpecification] { - return pulumix.Output[*HTTP2HealthCheckPortSpecification]{ - OutputState: in.ToHTTP2HealthCheckPortSpecificationPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type HTTP2HealthCheckProxyHeader string @@ -15389,12 +14878,6 @@ func (in *http2healthCheckProxyHeaderPtr) ToHTTP2HealthCheckProxyHeaderPtrOutput return pulumi.ToOutputWithContext(ctx, in).(HTTP2HealthCheckProxyHeaderPtrOutput) } -func (in *http2healthCheckProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*HTTP2HealthCheckProxyHeader] { - return pulumix.Output[*HTTP2HealthCheckProxyHeader]{ - OutputState: in.ToHTTP2HealthCheckProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // Weight report mode. used for weighted Load Balancing. type HTTP2HealthCheckWeightReportMode string @@ -15566,12 +15049,6 @@ func (in *http2healthCheckWeightReportModePtr) ToHTTP2HealthCheckWeightReportMod return pulumi.ToOutputWithContext(ctx, in).(HTTP2HealthCheckWeightReportModePtrOutput) } -func (in *http2healthCheckWeightReportModePtr) ToOutput(ctx context.Context) pulumix.Output[*HTTP2HealthCheckWeightReportMode] { - return pulumix.Output[*HTTP2HealthCheckWeightReportMode]{ - OutputState: in.ToHTTP2HealthCheckWeightReportModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how a port is selected for health checking. Can be one of the following values: USE_FIXED_PORT: Specifies a port number explicitly using the port field in the health check. Supported by backend services for pass-through load balancers and backend services for proxy load balancers. Also supported in legacy HTTP health checks for target pools. The health check supports all backends supported by the backend service provided the backend can be health checked. For example, GCE_VM_IP network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an indirect method of specifying the health check port by referring to the backend service. Only supported by backend services for proxy load balancers. Not supported by target pools. Not supported by backend services for pass-through load balancers. Supports all backends that can be health checked; for example, GCE_VM_IP_PORT network endpoint groups and instance group backends. For GCE_VM_IP_PORT network endpoint group backends, the health check uses the port number specified for each endpoint in the network endpoint group. For instance group backends, the health check uses the port number determined by looking up the backend service's named port in the instance group's list of named ports. type HTTPHealthCheckPortSpecification string @@ -15743,12 +15220,6 @@ func (in *httphealthCheckPortSpecificationPtr) ToHTTPHealthCheckPortSpecificatio return pulumi.ToOutputWithContext(ctx, in).(HTTPHealthCheckPortSpecificationPtrOutput) } -func (in *httphealthCheckPortSpecificationPtr) ToOutput(ctx context.Context) pulumix.Output[*HTTPHealthCheckPortSpecification] { - return pulumix.Output[*HTTPHealthCheckPortSpecification]{ - OutputState: in.ToHTTPHealthCheckPortSpecificationPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type HTTPHealthCheckProxyHeader string @@ -15915,12 +15386,6 @@ func (in *httphealthCheckProxyHeaderPtr) ToHTTPHealthCheckProxyHeaderPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(HTTPHealthCheckProxyHeaderPtrOutput) } -func (in *httphealthCheckProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*HTTPHealthCheckProxyHeader] { - return pulumix.Output[*HTTPHealthCheckProxyHeader]{ - OutputState: in.ToHTTPHealthCheckProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // Weight report mode. used for weighted Load Balancing. type HTTPHealthCheckWeightReportMode string @@ -16092,12 +15557,6 @@ func (in *httphealthCheckWeightReportModePtr) ToHTTPHealthCheckWeightReportModeP return pulumi.ToOutputWithContext(ctx, in).(HTTPHealthCheckWeightReportModePtrOutput) } -func (in *httphealthCheckWeightReportModePtr) ToOutput(ctx context.Context) pulumix.Output[*HTTPHealthCheckWeightReportMode] { - return pulumix.Output[*HTTPHealthCheckWeightReportMode]{ - OutputState: in.ToHTTPHealthCheckWeightReportModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how a port is selected for health checking. Can be one of the following values: USE_FIXED_PORT: Specifies a port number explicitly using the port field in the health check. Supported by backend services for pass-through load balancers and backend services for proxy load balancers. Not supported by target pools. The health check supports all backends supported by the backend service provided the backend can be health checked. For example, GCE_VM_IP network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an indirect method of specifying the health check port by referring to the backend service. Only supported by backend services for proxy load balancers. Not supported by target pools. Not supported by backend services for pass-through load balancers. Supports all backends that can be health checked; for example, GCE_VM_IP_PORT network endpoint groups and instance group backends. For GCE_VM_IP_PORT network endpoint group backends, the health check uses the port number specified for each endpoint in the network endpoint group. For instance group backends, the health check uses the port number determined by looking up the backend service's named port in the instance group's list of named ports. type HTTPSHealthCheckPortSpecification string @@ -16269,12 +15728,6 @@ func (in *httpshealthCheckPortSpecificationPtr) ToHTTPSHealthCheckPortSpecificat return pulumi.ToOutputWithContext(ctx, in).(HTTPSHealthCheckPortSpecificationPtrOutput) } -func (in *httpshealthCheckPortSpecificationPtr) ToOutput(ctx context.Context) pulumix.Output[*HTTPSHealthCheckPortSpecification] { - return pulumix.Output[*HTTPSHealthCheckPortSpecification]{ - OutputState: in.ToHTTPSHealthCheckPortSpecificationPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type HTTPSHealthCheckProxyHeader string @@ -16441,12 +15894,6 @@ func (in *httpshealthCheckProxyHeaderPtr) ToHTTPSHealthCheckProxyHeaderPtrOutput return pulumi.ToOutputWithContext(ctx, in).(HTTPSHealthCheckProxyHeaderPtrOutput) } -func (in *httpshealthCheckProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*HTTPSHealthCheckProxyHeader] { - return pulumix.Output[*HTTPSHealthCheckProxyHeader]{ - OutputState: in.ToHTTPSHealthCheckProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // Weight report mode. used for weighted Load Balancing. type HTTPSHealthCheckWeightReportMode string @@ -16618,12 +16065,6 @@ func (in *httpshealthCheckWeightReportModePtr) ToHTTPSHealthCheckWeightReportMod return pulumi.ToOutputWithContext(ctx, in).(HTTPSHealthCheckWeightReportModePtrOutput) } -func (in *httpshealthCheckWeightReportModePtr) ToOutput(ctx context.Context) pulumix.Output[*HTTPSHealthCheckWeightReportMode] { - return pulumix.Output[*HTTPSHealthCheckWeightReportMode]{ - OutputState: in.ToHTTPSHealthCheckWeightReportModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of the healthCheck, either TCP, SSL, HTTP, HTTPS, HTTP2 or GRPC. Exactly one of the protocol-specific health check fields must be specified, which must match type field. type HealthCheckType string @@ -16802,12 +16243,6 @@ func (in *healthCheckTypePtr) ToHealthCheckTypePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(HealthCheckTypePtrOutput) } -func (in *healthCheckTypePtr) ToOutput(ctx context.Context) pulumix.Output[*HealthCheckType] { - return pulumix.Output[*HealthCheckType]{ - OutputState: in.ToHealthCheckTypePtrOutputWithContext(ctx).OutputState, - } -} - // The HTTP Status code to use for this RedirectAction. Supported values are: - MOVED_PERMANENTLY_DEFAULT, which is the default value and corresponds to 301. - FOUND, which corresponds to 302. - SEE_OTHER which corresponds to 303. - TEMPORARY_REDIRECT, which corresponds to 307. In this case, the request method is retained. - PERMANENT_REDIRECT, which corresponds to 308. In this case, the request method is retained. type HttpRedirectActionRedirectResponseCode string @@ -16985,12 +16420,6 @@ func (in *httpRedirectActionRedirectResponseCodePtr) ToHttpRedirectActionRedirec return pulumi.ToOutputWithContext(ctx, in).(HttpRedirectActionRedirectResponseCodePtrOutput) } -func (in *httpRedirectActionRedirectResponseCodePtr) ToOutput(ctx context.Context) pulumix.Output[*HttpRedirectActionRedirectResponseCode] { - return pulumix.Output[*HttpRedirectActionRedirectResponseCode]{ - OutputState: in.ToHttpRedirectActionRedirectResponseCodePtrOutputWithContext(ctx).OutputState, - } -} - // The architecture of the image. Valid values are ARM64 or X86_64. type ImageArchitecture string @@ -17162,12 +16591,6 @@ func (in *imageArchitecturePtr) ToImageArchitecturePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(ImageArchitecturePtrOutput) } -func (in *imageArchitecturePtr) ToOutput(ctx context.Context) pulumix.Output[*ImageArchitecture] { - return pulumix.Output[*ImageArchitecture]{ - OutputState: in.ToImageArchitecturePtrOutputWithContext(ctx).OutputState, - } -} - // The format used to encode and transmit the block device, which should be TAR. This is just a container and transmission format and not a runtime format. Provided by the client when the disk image is created. type ImageRawDiskContainerType string @@ -17332,12 +16755,6 @@ func (in *imageRawDiskContainerTypePtr) ToImageRawDiskContainerTypePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(ImageRawDiskContainerTypePtrOutput) } -func (in *imageRawDiskContainerTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ImageRawDiskContainerType] { - return pulumix.Output[*ImageRawDiskContainerType]{ - OutputState: in.ToImageRawDiskContainerTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of the image used to create this disk. The default and only valid value is RAW. type ImageSourceType string @@ -17502,12 +16919,6 @@ func (in *imageSourceTypePtr) ToImageSourceTypePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(ImageSourceTypePtrOutput) } -func (in *imageSourceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ImageSourceType] { - return pulumix.Output[*ImageSourceType]{ - OutputState: in.ToImageSourceTypePtrOutputWithContext(ctx).OutputState, - } -} - // If you have configured an application-based health check for the group, this field controls whether to trigger VM autohealing based on a failed health check. Valid values are: - ON (default): The group recreates running VMs that fail the application-based health check. - OFF: When set to OFF, you can still observe instance health state, but the group does not recreate VMs that fail the application-based health check. This is useful for troubleshooting and setting up your health check configuration. type InstanceGroupManagerAutoHealingPolicyAutoHealingTriggersOnHealthCheck string @@ -17676,12 +17087,6 @@ func (in *instanceGroupManagerAutoHealingPolicyAutoHealingTriggersOnHealthCheckP return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerAutoHealingPolicyAutoHealingTriggersOnHealthCheckPtrOutput) } -func (in *instanceGroupManagerAutoHealingPolicyAutoHealingTriggersOnHealthCheckPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerAutoHealingPolicyAutoHealingTriggersOnHealthCheck] { - return pulumix.Output[*InstanceGroupManagerAutoHealingPolicyAutoHealingTriggersOnHealthCheck]{ - OutputState: in.ToInstanceGroupManagerAutoHealingPolicyAutoHealingTriggersOnHealthCheckPtrOutputWithContext(ctx).OutputState, - } -} - // The action to perform in case of zone failure. Only one value is supported, NO_FAILOVER. The default is NO_FAILOVER. type InstanceGroupManagerFailoverAction string @@ -17848,12 +17253,6 @@ func (in *instanceGroupManagerFailoverActionPtr) ToInstanceGroupManagerFailoverA return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerFailoverActionPtrOutput) } -func (in *instanceGroupManagerFailoverActionPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerFailoverAction] { - return pulumix.Output[*InstanceGroupManagerFailoverAction]{ - OutputState: in.ToInstanceGroupManagerFailoverActionPtrOutputWithContext(ctx).OutputState, - } -} - // The action that a MIG performs on a failed or an unhealthy VM. A VM is marked as unhealthy when the application running on that VM fails a health check. Valid values are - REPAIR (default): MIG automatically repairs a failed or an unhealthy VM by recreating it. For more information, see About repairing VMs in a MIG. - DO_NOTHING: MIG does not repair a failed or an unhealthy VM. type InstanceGroupManagerInstanceLifecyclePolicyDefaultActionOnFailure string @@ -18025,12 +17424,6 @@ func (in *instanceGroupManagerInstanceLifecyclePolicyDefaultActionOnFailurePtr) return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerInstanceLifecyclePolicyDefaultActionOnFailurePtrOutput) } -func (in *instanceGroupManagerInstanceLifecyclePolicyDefaultActionOnFailurePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerInstanceLifecyclePolicyDefaultActionOnFailure] { - return pulumix.Output[*InstanceGroupManagerInstanceLifecyclePolicyDefaultActionOnFailure]{ - OutputState: in.ToInstanceGroupManagerInstanceLifecyclePolicyDefaultActionOnFailurePtrOutputWithContext(ctx).OutputState, - } -} - // A bit indicating whether to forcefully apply the group's latest configuration when repairing a VM. Valid options are: - NO (default): If configuration updates are available, they are not forcefully applied during repair. Instead, configuration updates are applied according to the group's update policy. - YES: If configuration updates are available, they are applied during repair. type InstanceGroupManagerInstanceLifecyclePolicyForceUpdateOnRepair string @@ -18197,12 +17590,6 @@ func (in *instanceGroupManagerInstanceLifecyclePolicyForceUpdateOnRepairPtr) ToI return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerInstanceLifecyclePolicyForceUpdateOnRepairPtrOutput) } -func (in *instanceGroupManagerInstanceLifecyclePolicyForceUpdateOnRepairPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerInstanceLifecyclePolicyForceUpdateOnRepair] { - return pulumix.Output[*InstanceGroupManagerInstanceLifecyclePolicyForceUpdateOnRepair]{ - OutputState: in.ToInstanceGroupManagerInstanceLifecyclePolicyForceUpdateOnRepairPtrOutputWithContext(ctx).OutputState, - } -} - // Pagination behavior of the listManagedInstances API method for this managed instance group. type InstanceGroupManagerListManagedInstancesResults string @@ -18371,12 +17758,6 @@ func (in *instanceGroupManagerListManagedInstancesResultsPtr) ToInstanceGroupMan return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerListManagedInstancesResultsPtrOutput) } -func (in *instanceGroupManagerListManagedInstancesResultsPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerListManagedInstancesResults] { - return pulumix.Output[*InstanceGroupManagerListManagedInstancesResults]{ - OutputState: in.ToInstanceGroupManagerListManagedInstancesResultsPtrOutputWithContext(ctx).OutputState, - } -} - // Defines behaviour of using instances from standby pool to resize MIG. type InstanceGroupManagerStandbyPolicyMode string @@ -18545,12 +17926,6 @@ func (in *instanceGroupManagerStandbyPolicyModePtr) ToInstanceGroupManagerStandb return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerStandbyPolicyModePtrOutput) } -func (in *instanceGroupManagerStandbyPolicyModePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerStandbyPolicyMode] { - return pulumix.Output[*InstanceGroupManagerStandbyPolicyMode]{ - OutputState: in.ToInstanceGroupManagerStandbyPolicyModePtrOutputWithContext(ctx).OutputState, - } -} - // The unit of measure for the target size. type InstanceGroupManagerTargetSizeUnit string @@ -18719,12 +18094,6 @@ func (in *instanceGroupManagerTargetSizeUnitPtr) ToInstanceGroupManagerTargetSiz return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerTargetSizeUnitPtrOutput) } -func (in *instanceGroupManagerTargetSizeUnitPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerTargetSizeUnit] { - return pulumix.Output[*InstanceGroupManagerTargetSizeUnit]{ - OutputState: in.ToInstanceGroupManagerTargetSizeUnitPtrOutputWithContext(ctx).OutputState, - } -} - // The instance redistribution policy for regional managed instance groups. Valid values are: - PROACTIVE (default): The group attempts to maintain an even distribution of VM instances across zones in the region. - NONE: For non-autoscaled groups, proactive redistribution is disabled. type InstanceGroupManagerUpdatePolicyInstanceRedistributionType string @@ -18893,12 +18262,6 @@ func (in *instanceGroupManagerUpdatePolicyInstanceRedistributionTypePtr) ToInsta return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerUpdatePolicyInstanceRedistributionTypePtrOutput) } -func (in *instanceGroupManagerUpdatePolicyInstanceRedistributionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerUpdatePolicyInstanceRedistributionType] { - return pulumix.Output[*InstanceGroupManagerUpdatePolicyInstanceRedistributionType]{ - OutputState: in.ToInstanceGroupManagerUpdatePolicyInstanceRedistributionTypePtrOutputWithContext(ctx).OutputState, - } -} - // Minimal action to be taken on an instance. Use this option to minimize disruption as much as possible or to apply a more disruptive action than is necessary. - To limit disruption as much as possible, set the minimal action to REFRESH. If your update requires a more disruptive action, Compute Engine performs the necessary action to execute the update. - To apply a more disruptive action than is strictly necessary, set the minimal action to RESTART or REPLACE. For example, Compute Engine does not need to restart a VM to change its metadata. But if your application reads instance metadata only when a VM is restarted, you can set the minimal action to RESTART in order to pick up metadata changes. type InstanceGroupManagerUpdatePolicyMinimalAction string @@ -19073,12 +18436,6 @@ func (in *instanceGroupManagerUpdatePolicyMinimalActionPtr) ToInstanceGroupManag return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerUpdatePolicyMinimalActionPtrOutput) } -func (in *instanceGroupManagerUpdatePolicyMinimalActionPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerUpdatePolicyMinimalAction] { - return pulumix.Output[*InstanceGroupManagerUpdatePolicyMinimalAction]{ - OutputState: in.ToInstanceGroupManagerUpdatePolicyMinimalActionPtrOutputWithContext(ctx).OutputState, - } -} - // Most disruptive action that is allowed to be taken on an instance. You can specify either NONE to forbid any actions, REFRESH to avoid restarting the VM and to limit disruption as much as possible. RESTART to allow actions that can be applied without instance replacing or REPLACE to allow all possible actions. If the Updater determines that the minimal update action needed is more disruptive than most disruptive allowed action you specify it will not perform the update at all. type InstanceGroupManagerUpdatePolicyMostDisruptiveAllowedAction string @@ -19253,12 +18610,6 @@ func (in *instanceGroupManagerUpdatePolicyMostDisruptiveAllowedActionPtr) ToInst return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerUpdatePolicyMostDisruptiveAllowedActionPtrOutput) } -func (in *instanceGroupManagerUpdatePolicyMostDisruptiveAllowedActionPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerUpdatePolicyMostDisruptiveAllowedAction] { - return pulumix.Output[*InstanceGroupManagerUpdatePolicyMostDisruptiveAllowedAction]{ - OutputState: in.ToInstanceGroupManagerUpdatePolicyMostDisruptiveAllowedActionPtrOutputWithContext(ctx).OutputState, - } -} - // What action should be used to replace instances. See minimal_action.REPLACE type InstanceGroupManagerUpdatePolicyReplacementMethod string @@ -19427,12 +18778,6 @@ func (in *instanceGroupManagerUpdatePolicyReplacementMethodPtr) ToInstanceGroupM return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerUpdatePolicyReplacementMethodPtrOutput) } -func (in *instanceGroupManagerUpdatePolicyReplacementMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerUpdatePolicyReplacementMethod] { - return pulumix.Output[*InstanceGroupManagerUpdatePolicyReplacementMethod]{ - OutputState: in.ToInstanceGroupManagerUpdatePolicyReplacementMethodPtrOutputWithContext(ctx).OutputState, - } -} - // The type of update process. You can specify either PROACTIVE so that the MIG automatically updates VMs to the latest configurations or OPPORTUNISTIC so that you can select the VMs that you want to update. type InstanceGroupManagerUpdatePolicyType string @@ -19601,12 +18946,6 @@ func (in *instanceGroupManagerUpdatePolicyTypePtr) ToInstanceGroupManagerUpdateP return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerUpdatePolicyTypePtrOutput) } -func (in *instanceGroupManagerUpdatePolicyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerUpdatePolicyType] { - return pulumix.Output[*InstanceGroupManagerUpdatePolicyType]{ - OutputState: in.ToInstanceGroupManagerUpdatePolicyTypePtrOutputWithContext(ctx).OutputState, - } -} - // KeyRevocationActionType of the instance. Supported options are "STOP" and "NONE". The default value is "NONE" if it is not specified. type InstanceKeyRevocationActionType string @@ -19778,12 +19117,6 @@ func (in *instanceKeyRevocationActionTypePtr) ToInstanceKeyRevocationActionTypeP return pulumi.ToOutputWithContext(ctx, in).(InstanceKeyRevocationActionTypePtrOutput) } -func (in *instanceKeyRevocationActionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceKeyRevocationActionType] { - return pulumix.Output[*InstanceKeyRevocationActionType]{ - OutputState: in.ToInstanceKeyRevocationActionTypePtrOutputWithContext(ctx).OutputState, - } -} - // PostKeyRevocationActionType of the instance. type InstancePostKeyRevocationActionType string @@ -19955,12 +19288,6 @@ func (in *instancePostKeyRevocationActionTypePtr) ToInstancePostKeyRevocationAct return pulumi.ToOutputWithContext(ctx, in).(InstancePostKeyRevocationActionTypePtrOutput) } -func (in *instancePostKeyRevocationActionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstancePostKeyRevocationActionType] { - return pulumix.Output[*InstancePostKeyRevocationActionType]{ - OutputState: in.ToInstancePostKeyRevocationActionTypePtrOutputWithContext(ctx).OutputState, - } -} - // The private IPv6 google access type for the VM. If not specified, use INHERIT_FROM_SUBNETWORK as default. type InstancePrivateIpv6GoogleAccess string @@ -20132,12 +19459,6 @@ func (in *instancePrivateIpv6GoogleAccessPtr) ToInstancePrivateIpv6GoogleAccessP return pulumi.ToOutputWithContext(ctx, in).(InstancePrivateIpv6GoogleAccessPtrOutput) } -func (in *instancePrivateIpv6GoogleAccessPtr) ToOutput(ctx context.Context) pulumix.Output[*InstancePrivateIpv6GoogleAccess] { - return pulumix.Output[*InstancePrivateIpv6GoogleAccess]{ - OutputState: in.ToInstancePrivateIpv6GoogleAccessPtrOutputWithContext(ctx).OutputState, - } -} - // KeyRevocationActionType of the instance. Supported options are "STOP" and "NONE". The default value is "NONE" if it is not specified. type InstancePropertiesKeyRevocationActionType string @@ -20309,12 +19630,6 @@ func (in *instancePropertiesKeyRevocationActionTypePtr) ToInstancePropertiesKeyR return pulumi.ToOutputWithContext(ctx, in).(InstancePropertiesKeyRevocationActionTypePtrOutput) } -func (in *instancePropertiesKeyRevocationActionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstancePropertiesKeyRevocationActionType] { - return pulumix.Output[*InstancePropertiesKeyRevocationActionType]{ - OutputState: in.ToInstancePropertiesKeyRevocationActionTypePtrOutputWithContext(ctx).OutputState, - } -} - // PostKeyRevocationActionType of the instance. type InstancePropertiesPostKeyRevocationActionType string @@ -20486,12 +19801,6 @@ func (in *instancePropertiesPostKeyRevocationActionTypePtr) ToInstanceProperties return pulumi.ToOutputWithContext(ctx, in).(InstancePropertiesPostKeyRevocationActionTypePtrOutput) } -func (in *instancePropertiesPostKeyRevocationActionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstancePropertiesPostKeyRevocationActionType] { - return pulumix.Output[*InstancePropertiesPostKeyRevocationActionType]{ - OutputState: in.ToInstancePropertiesPostKeyRevocationActionTypePtrOutputWithContext(ctx).OutputState, - } -} - // The private IPv6 google access type for VMs. If not specified, use INHERIT_FROM_SUBNETWORK as default. Note that for MachineImage, this is not supported yet. type InstancePropertiesPrivateIpv6GoogleAccess string @@ -20663,12 +19972,6 @@ func (in *instancePropertiesPrivateIpv6GoogleAccessPtr) ToInstancePropertiesPriv return pulumi.ToOutputWithContext(ctx, in).(InstancePropertiesPrivateIpv6GoogleAccessPtrOutput) } -func (in *instancePropertiesPrivateIpv6GoogleAccessPtr) ToOutput(ctx context.Context) pulumix.Output[*InstancePropertiesPrivateIpv6GoogleAccess] { - return pulumix.Output[*InstancePropertiesPrivateIpv6GoogleAccess]{ - OutputState: in.ToInstancePropertiesPrivateIpv6GoogleAccessPtrOutputWithContext(ctx).OutputState, - } -} - // Provisioned bandwidth capacity for the interconnect attachment. For attachments of type DEDICATED, the user can set the bandwidth. For attachments of type PARTNER, the Google Partner that is operating the interconnect must set the bandwidth. Output only for PARTNER type, mutable for PARTNER_PROVIDER and DEDICATED, and can take one of the following values: - BPS_50M: 50 Mbit/s - BPS_100M: 100 Mbit/s - BPS_200M: 200 Mbit/s - BPS_300M: 300 Mbit/s - BPS_400M: 400 Mbit/s - BPS_500M: 500 Mbit/s - BPS_1G: 1 Gbit/s - BPS_2G: 2 Gbit/s - BPS_5G: 5 Gbit/s - BPS_10G: 10 Gbit/s - BPS_20G: 20 Gbit/s - BPS_50G: 50 Gbit/s type InterconnectAttachmentBandwidth string @@ -20867,12 +20170,6 @@ func (in *interconnectAttachmentBandwidthPtr) ToInterconnectAttachmentBandwidthP return pulumi.ToOutputWithContext(ctx, in).(InterconnectAttachmentBandwidthPtrOutput) } -func (in *interconnectAttachmentBandwidthPtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectAttachmentBandwidth] { - return pulumix.Output[*InterconnectAttachmentBandwidth]{ - OutputState: in.ToInterconnectAttachmentBandwidthPtrOutputWithContext(ctx).OutputState, - } -} - // Desired availability domain for the attachment. Only available for type PARTNER, at creation time, and can take one of the following values: - AVAILABILITY_DOMAIN_ANY - AVAILABILITY_DOMAIN_1 - AVAILABILITY_DOMAIN_2 For improved reliability, customers should configure a pair of attachments, one per availability domain. The selected availability domain will be provided to the Partner via the pairing key, so that the provisioned circuit will lie in the specified domain. If not specified, the value will default to AVAILABILITY_DOMAIN_ANY. type InterconnectAttachmentEdgeAvailabilityDomain string @@ -21041,12 +20338,6 @@ func (in *interconnectAttachmentEdgeAvailabilityDomainPtr) ToInterconnectAttachm return pulumi.ToOutputWithContext(ctx, in).(InterconnectAttachmentEdgeAvailabilityDomainPtrOutput) } -func (in *interconnectAttachmentEdgeAvailabilityDomainPtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectAttachmentEdgeAvailabilityDomain] { - return pulumix.Output[*InterconnectAttachmentEdgeAvailabilityDomain]{ - OutputState: in.ToInterconnectAttachmentEdgeAvailabilityDomainPtrOutputWithContext(ctx).OutputState, - } -} - // Indicates the user-supplied encryption option of this VLAN attachment (interconnectAttachment). Can only be specified at attachment creation for PARTNER or DEDICATED attachments. Possible values are: - NONE - This is the default value, which means that the VLAN attachment carries unencrypted traffic. VMs are able to send traffic to, or receive traffic from, such a VLAN attachment. - IPSEC - The VLAN attachment carries only encrypted traffic that is encrypted by an IPsec device, such as an HA VPN gateway or third-party IPsec VPN. VMs cannot directly send traffic to, or receive traffic from, such a VLAN attachment. To use *HA VPN over Cloud Interconnect*, the VLAN attachment must be created with this option. type InterconnectAttachmentEncryption string @@ -21215,12 +20506,6 @@ func (in *interconnectAttachmentEncryptionPtr) ToInterconnectAttachmentEncryptio return pulumi.ToOutputWithContext(ctx, in).(InterconnectAttachmentEncryptionPtrOutput) } -func (in *interconnectAttachmentEncryptionPtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectAttachmentEncryption] { - return pulumix.Output[*InterconnectAttachmentEncryption]{ - OutputState: in.ToInterconnectAttachmentEncryptionPtrOutputWithContext(ctx).OutputState, - } -} - // The stack type for this interconnect attachment to identify whether the IPv6 feature is enabled or not. If not specified, IPV4_ONLY will be used. This field can be both set at interconnect attachments creation and update interconnect attachment operations. type InterconnectAttachmentStackType string @@ -21389,12 +20674,6 @@ func (in *interconnectAttachmentStackTypePtr) ToInterconnectAttachmentStackTypeP return pulumi.ToOutputWithContext(ctx, in).(InterconnectAttachmentStackTypePtrOutput) } -func (in *interconnectAttachmentStackTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectAttachmentStackType] { - return pulumix.Output[*InterconnectAttachmentStackType]{ - OutputState: in.ToInterconnectAttachmentStackTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of interconnect attachment this is, which can take one of the following values: - DEDICATED: an attachment to a Dedicated Interconnect. - PARTNER: an attachment to a Partner Interconnect, created by the customer. - PARTNER_PROVIDER: an attachment to a Partner Interconnect, created by the partner. type InterconnectAttachmentType string @@ -21566,12 +20845,6 @@ func (in *interconnectAttachmentTypePtr) ToInterconnectAttachmentTypePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(InterconnectAttachmentTypePtrOutput) } -func (in *interconnectAttachmentTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectAttachmentType] { - return pulumix.Output[*InterconnectAttachmentType]{ - OutputState: in.ToInterconnectAttachmentTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of interconnect, which can take one of the following values: - PARTNER: A partner-managed interconnection shared between customers though a partner. - DEDICATED: A dedicated physical interconnection with the customer. Note that a value IT_PRIVATE has been deprecated in favor of DEDICATED. type InterconnectInterconnectType string @@ -21743,12 +21016,6 @@ func (in *interconnectInterconnectTypePtr) ToInterconnectInterconnectTypePtrOutp return pulumi.ToOutputWithContext(ctx, in).(InterconnectInterconnectTypePtrOutput) } -func (in *interconnectInterconnectTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectInterconnectType] { - return pulumix.Output[*InterconnectInterconnectType]{ - OutputState: in.ToInterconnectInterconnectTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of link requested, which can take one of the following values: - LINK_TYPE_ETHERNET_10G_LR: A 10G Ethernet with LR optics - LINK_TYPE_ETHERNET_100G_LR: A 100G Ethernet with LR optics. Note that this field indicates the speed of each of the links in the bundle, not the speed of the entire bundle. type InterconnectLinkType string @@ -21917,12 +21184,6 @@ func (in *interconnectLinkTypePtr) ToInterconnectLinkTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(InterconnectLinkTypePtrOutput) } -func (in *interconnectLinkTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectLinkType] { - return pulumix.Output[*InterconnectLinkType]{ - OutputState: in.ToInterconnectLinkTypePtrOutputWithContext(ctx).OutputState, - } -} - type InterconnectRequestedFeaturesItem string const ( @@ -22087,12 +21348,6 @@ func (in *interconnectRequestedFeaturesItemPtr) ToInterconnectRequestedFeaturesI return pulumi.ToOutputWithContext(ctx, in).(InterconnectRequestedFeaturesItemPtrOutput) } -func (in *interconnectRequestedFeaturesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectRequestedFeaturesItem] { - return pulumix.Output[*InterconnectRequestedFeaturesItem]{ - OutputState: in.ToInterconnectRequestedFeaturesItemPtrOutputWithContext(ctx).OutputState, - } -} - // InterconnectRequestedFeaturesItemArrayInput is an input type that accepts InterconnectRequestedFeaturesItemArray and InterconnectRequestedFeaturesItemArrayOutput values. // You can construct a concrete instance of `InterconnectRequestedFeaturesItemArrayInput` via: // @@ -22309,12 +21564,6 @@ func (in *locationPolicyTargetShapePtr) ToLocationPolicyTargetShapePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(LocationPolicyTargetShapePtrOutput) } -func (in *locationPolicyTargetShapePtr) ToOutput(ctx context.Context) pulumix.Output[*LocationPolicyTargetShape] { - return pulumix.Output[*LocationPolicyTargetShape]{ - OutputState: in.ToLocationPolicyTargetShapePtrOutputWithContext(ctx).OutputState, - } -} - // This is deprecated and has no effect. Do not use. type LogConfigCloudAuditOptionsLogName string @@ -22486,12 +21735,6 @@ func (in *logConfigCloudAuditOptionsLogNamePtr) ToLogConfigCloudAuditOptionsLogN return pulumi.ToOutputWithContext(ctx, in).(LogConfigCloudAuditOptionsLogNamePtrOutput) } -func (in *logConfigCloudAuditOptionsLogNamePtr) ToOutput(ctx context.Context) pulumix.Output[*LogConfigCloudAuditOptionsLogName] { - return pulumix.Output[*LogConfigCloudAuditOptionsLogName]{ - OutputState: in.ToLogConfigCloudAuditOptionsLogNamePtrOutputWithContext(ctx).OutputState, - } -} - // This is deprecated and has no effect. Do not use. type LogConfigDataAccessOptionsLogMode string @@ -22660,12 +21903,6 @@ func (in *logConfigDataAccessOptionsLogModePtr) ToLogConfigDataAccessOptionsLogM return pulumi.ToOutputWithContext(ctx, in).(LogConfigDataAccessOptionsLogModePtrOutput) } -func (in *logConfigDataAccessOptionsLogModePtr) ToOutput(ctx context.Context) pulumix.Output[*LogConfigDataAccessOptionsLogMode] { - return pulumix.Output[*LogConfigDataAccessOptionsLogMode]{ - OutputState: in.ToLogConfigDataAccessOptionsLogModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how individual filter label matches within the list of filterLabels and contributes toward the overall metadataFilter match. Supported values are: - MATCH_ANY: at least one of the filterLabels must have a matching label in the provided metadata. - MATCH_ALL: all filterLabels must have matching labels in the provided metadata. type MetadataFilterFilterMatchCriteria string @@ -22837,12 +22074,6 @@ func (in *metadataFilterFilterMatchCriteriaPtr) ToMetadataFilterFilterMatchCrite return pulumi.ToOutputWithContext(ctx, in).(MetadataFilterFilterMatchCriteriaPtrOutput) } -func (in *metadataFilterFilterMatchCriteriaPtr) ToOutput(ctx context.Context) pulumix.Output[*MetadataFilterFilterMatchCriteria] { - return pulumix.Output[*MetadataFilterFilterMatchCriteria]{ - OutputState: in.ToMetadataFilterFilterMatchCriteriaPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies if the server TLS is configured to be strict or permissive. This field can be set to one of the following: STRICT: Client certificate must be presented, connection is in TLS. PERMISSIVE: Client certificate can be omitted, connection can be either plaintext or TLS. type MutualTlsMode string @@ -23013,12 +22244,6 @@ func (in *mutualTlsModePtr) ToMutualTlsModePtrOutputWithContext(ctx context.Cont return pulumi.ToOutputWithContext(ctx, in).(MutualTlsModePtrOutput) } -func (in *mutualTlsModePtr) ToOutput(ctx context.Context) pulumix.Output[*MutualTlsMode] { - return pulumix.Output[*MutualTlsMode]{ - OutputState: in.ToMutualTlsModePtrOutputWithContext(ctx).OutputState, - } -} - type NetworkAttachmentConnectionPreference string const ( @@ -23186,12 +22411,6 @@ func (in *networkAttachmentConnectionPreferencePtr) ToNetworkAttachmentConnectio return pulumi.ToOutputWithContext(ctx, in).(NetworkAttachmentConnectionPreferencePtrOutput) } -func (in *networkAttachmentConnectionPreferencePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkAttachmentConnectionPreference] { - return pulumix.Output[*NetworkAttachmentConnectionPreference]{ - OutputState: in.ToNetworkAttachmentConnectionPreferencePtrOutputWithContext(ctx).OutputState, - } -} - // Only valid when networkEndpointType is "GCE_VM_IP_PORT" and the NEG is regional. type NetworkEndpointGroupClientPortMappingMode string @@ -23360,12 +22579,6 @@ func (in *networkEndpointGroupClientPortMappingModePtr) ToNetworkEndpointGroupCl return pulumi.ToOutputWithContext(ctx, in).(NetworkEndpointGroupClientPortMappingModePtrOutput) } -func (in *networkEndpointGroupClientPortMappingModePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkEndpointGroupClientPortMappingMode] { - return pulumix.Output[*NetworkEndpointGroupClientPortMappingMode]{ - OutputState: in.ToNetworkEndpointGroupClientPortMappingModePtrOutputWithContext(ctx).OutputState, - } -} - // Type of network endpoints in this network endpoint group. Can be one of GCE_VM_IP, GCE_VM_IP_PORT, NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT, INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT. type NetworkEndpointGroupNetworkEndpointType string @@ -23549,12 +22762,6 @@ func (in *networkEndpointGroupNetworkEndpointTypePtr) ToNetworkEndpointGroupNetw return pulumi.ToOutputWithContext(ctx, in).(NetworkEndpointGroupNetworkEndpointTypePtrOutput) } -func (in *networkEndpointGroupNetworkEndpointTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkEndpointGroupNetworkEndpointType] { - return pulumix.Output[*NetworkEndpointGroupNetworkEndpointType]{ - OutputState: in.ToNetworkEndpointGroupNetworkEndpointTypePtrOutputWithContext(ctx).OutputState, - } -} - // Specify the type of this network endpoint group. Only LOAD_BALANCING is valid for now. type NetworkEndpointGroupType string @@ -23720,12 +22927,6 @@ func (in *networkEndpointGroupTypePtr) ToNetworkEndpointGroupTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(NetworkEndpointGroupTypePtrOutput) } -func (in *networkEndpointGroupTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkEndpointGroupType] { - return pulumix.Output[*NetworkEndpointGroupType]{ - OutputState: in.ToNetworkEndpointGroupTypePtrOutputWithContext(ctx).OutputState, - } -} - // The scope of networks allowed to be associated with the firewall policy. This field can be either GLOBAL_VPC_NETWORK or REGIONAL_VPC_NETWORK. A firewall policy with the VPC scope set to GLOBAL_VPC_NETWORK is allowed to be attached only to global networks. When the VPC scope is set to REGIONAL_VPC_NETWORK the firewall policy is allowed to be attached only to regional networks in the same scope as the firewall policy. Note: if not specified then GLOBAL_VPC_NETWORK will be used. type NetworkFirewallPolicyVpcNetworkScope string @@ -23894,12 +23095,6 @@ func (in *networkFirewallPolicyVpcNetworkScopePtr) ToNetworkFirewallPolicyVpcNet return pulumi.ToOutputWithContext(ctx, in).(NetworkFirewallPolicyVpcNetworkScopePtrOutput) } -func (in *networkFirewallPolicyVpcNetworkScopePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkFirewallPolicyVpcNetworkScope] { - return pulumix.Output[*NetworkFirewallPolicyVpcNetworkScope]{ - OutputState: in.ToNetworkFirewallPolicyVpcNetworkScopePtrOutputWithContext(ctx).OutputState, - } -} - // The type of vNIC to be used on this interface. This may be gVNIC or VirtioNet. type NetworkInterfaceNicType string @@ -24071,12 +23266,6 @@ func (in *networkInterfaceNicTypePtr) ToNetworkInterfaceNicTypePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(NetworkInterfaceNicTypePtrOutput) } -func (in *networkInterfaceNicTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkInterfaceNicType] { - return pulumix.Output[*NetworkInterfaceNicType]{ - OutputState: in.ToNetworkInterfaceNicTypePtrOutputWithContext(ctx).OutputState, - } -} - // The stack type for this network interface. To assign only IPv4 addresses, use IPV4_ONLY. To assign both IPv4 and IPv6 addresses, use IPV4_IPV6. If not specified, IPV4_ONLY is used. This field can be both set at instance creation and update network interface operations. type NetworkInterfaceStackType string @@ -24248,12 +23437,6 @@ func (in *networkInterfaceStackTypePtr) ToNetworkInterfaceStackTypePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(NetworkInterfaceStackTypePtrOutput) } -func (in *networkInterfaceStackTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkInterfaceStackType] { - return pulumix.Output[*NetworkInterfaceStackType]{ - OutputState: in.ToNetworkInterfaceStackTypePtrOutputWithContext(ctx).OutputState, - } -} - type NetworkInterfaceSubInterfaceIpAllocationMode string const ( @@ -24423,12 +23606,6 @@ func (in *networkInterfaceSubInterfaceIpAllocationModePtr) ToNetworkInterfaceSub return pulumi.ToOutputWithContext(ctx, in).(NetworkInterfaceSubInterfaceIpAllocationModePtrOutput) } -func (in *networkInterfaceSubInterfaceIpAllocationModePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkInterfaceSubInterfaceIpAllocationMode] { - return pulumix.Output[*NetworkInterfaceSubInterfaceIpAllocationMode]{ - OutputState: in.ToNetworkInterfaceSubInterfaceIpAllocationModePtrOutputWithContext(ctx).OutputState, - } -} - // The network firewall policy enforcement order. Can be either AFTER_CLASSIC_FIREWALL or BEFORE_CLASSIC_FIREWALL. Defaults to AFTER_CLASSIC_FIREWALL if the field is not specified. type NetworkNetworkFirewallPolicyEnforcementOrder string @@ -24595,12 +23772,6 @@ func (in *networkNetworkFirewallPolicyEnforcementOrderPtr) ToNetworkNetworkFirew return pulumi.ToOutputWithContext(ctx, in).(NetworkNetworkFirewallPolicyEnforcementOrderPtrOutput) } -func (in *networkNetworkFirewallPolicyEnforcementOrderPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkNetworkFirewallPolicyEnforcementOrder] { - return pulumix.Output[*NetworkNetworkFirewallPolicyEnforcementOrder]{ - OutputState: in.ToNetworkNetworkFirewallPolicyEnforcementOrderPtrOutputWithContext(ctx).OutputState, - } -} - type NetworkPerformanceConfigExternalIpEgressBandwidthTier string const ( @@ -24766,12 +23937,6 @@ func (in *networkPerformanceConfigExternalIpEgressBandwidthTierPtr) ToNetworkPer return pulumi.ToOutputWithContext(ctx, in).(NetworkPerformanceConfigExternalIpEgressBandwidthTierPtrOutput) } -func (in *networkPerformanceConfigExternalIpEgressBandwidthTierPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkPerformanceConfigExternalIpEgressBandwidthTier] { - return pulumix.Output[*NetworkPerformanceConfigExternalIpEgressBandwidthTier]{ - OutputState: in.ToNetworkPerformanceConfigExternalIpEgressBandwidthTierPtrOutputWithContext(ctx).OutputState, - } -} - type NetworkPerformanceConfigTotalEgressBandwidthTier string const ( @@ -24937,12 +24102,6 @@ func (in *networkPerformanceConfigTotalEgressBandwidthTierPtr) ToNetworkPerforma return pulumi.ToOutputWithContext(ctx, in).(NetworkPerformanceConfigTotalEgressBandwidthTierPtrOutput) } -func (in *networkPerformanceConfigTotalEgressBandwidthTierPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkPerformanceConfigTotalEgressBandwidthTier] { - return pulumix.Output[*NetworkPerformanceConfigTotalEgressBandwidthTier]{ - OutputState: in.ToNetworkPerformanceConfigTotalEgressBandwidthTierPtrOutputWithContext(ctx).OutputState, - } -} - // The BGP best path selection algorithm to be employed within this network for dynamic routes learned by Cloud Routers. Can be LEGACY (default) or STANDARD. type NetworkRoutingConfigBgpBestPathSelectionMode string @@ -25109,12 +24268,6 @@ func (in *networkRoutingConfigBgpBestPathSelectionModePtr) ToNetworkRoutingConfi return pulumi.ToOutputWithContext(ctx, in).(NetworkRoutingConfigBgpBestPathSelectionModePtrOutput) } -func (in *networkRoutingConfigBgpBestPathSelectionModePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkRoutingConfigBgpBestPathSelectionMode] { - return pulumix.Output[*NetworkRoutingConfigBgpBestPathSelectionMode]{ - OutputState: in.ToNetworkRoutingConfigBgpBestPathSelectionModePtrOutputWithContext(ctx).OutputState, - } -} - // Allows to define a preferred approach for handling inter-region cost in the selection process when using the STANDARD BGP best path selection algorithm. Can be DEFAULT or ADD_COST_TO_MED. type NetworkRoutingConfigBgpInterRegionCost string @@ -25281,12 +24434,6 @@ func (in *networkRoutingConfigBgpInterRegionCostPtr) ToNetworkRoutingConfigBgpIn return pulumi.ToOutputWithContext(ctx, in).(NetworkRoutingConfigBgpInterRegionCostPtrOutput) } -func (in *networkRoutingConfigBgpInterRegionCostPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkRoutingConfigBgpInterRegionCost] { - return pulumix.Output[*NetworkRoutingConfigBgpInterRegionCost]{ - OutputState: in.ToNetworkRoutingConfigBgpInterRegionCostPtrOutputWithContext(ctx).OutputState, - } -} - // The network-wide routing mode to use. If set to REGIONAL, this network's Cloud Routers will only advertise routes with subnets of this network in the same region as the router. If set to GLOBAL, this network's Cloud Routers will advertise routes with all subnets of this network, across regions. type NetworkRoutingConfigRoutingMode string @@ -25453,12 +24600,6 @@ func (in *networkRoutingConfigRoutingModePtr) ToNetworkRoutingConfigRoutingModeP return pulumi.ToOutputWithContext(ctx, in).(NetworkRoutingConfigRoutingModePtrOutput) } -func (in *networkRoutingConfigRoutingModePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkRoutingConfigRoutingMode] { - return pulumix.Output[*NetworkRoutingConfigRoutingMode]{ - OutputState: in.ToNetworkRoutingConfigRoutingModePtrOutputWithContext(ctx).OutputState, - } -} - // The autoscaling mode. Set to one of: ON, OFF, or ONLY_SCALE_OUT. For more information, see Autoscaler modes. type NodeGroupAutoscalingPolicyMode string @@ -25632,12 +24773,6 @@ func (in *nodeGroupAutoscalingPolicyModePtr) ToNodeGroupAutoscalingPolicyModePtr return pulumi.ToOutputWithContext(ctx, in).(NodeGroupAutoscalingPolicyModePtrOutput) } -func (in *nodeGroupAutoscalingPolicyModePtr) ToOutput(ctx context.Context) pulumix.Output[*NodeGroupAutoscalingPolicyMode] { - return pulumix.Output[*NodeGroupAutoscalingPolicyMode]{ - OutputState: in.ToNodeGroupAutoscalingPolicyModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the frequency of planned maintenance events. The accepted values are: `AS_NEEDED` and `RECURRENT`. type NodeGroupMaintenanceInterval string @@ -25809,12 +24944,6 @@ func (in *nodeGroupMaintenanceIntervalPtr) ToNodeGroupMaintenanceIntervalPtrOutp return pulumi.ToOutputWithContext(ctx, in).(NodeGroupMaintenanceIntervalPtrOutput) } -func (in *nodeGroupMaintenanceIntervalPtr) ToOutput(ctx context.Context) pulumix.Output[*NodeGroupMaintenanceInterval] { - return pulumix.Output[*NodeGroupMaintenanceInterval]{ - OutputState: in.ToNodeGroupMaintenanceIntervalPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how to handle instances when a node in the group undergoes maintenance. Set to one of: DEFAULT, RESTART_IN_PLACE, or MIGRATE_WITHIN_NODE_GROUP. The default value is DEFAULT. For more information, see Maintenance policies. type NodeGroupMaintenancePolicy string @@ -25988,12 +25117,6 @@ func (in *nodeGroupMaintenancePolicyPtr) ToNodeGroupMaintenancePolicyPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(NodeGroupMaintenancePolicyPtrOutput) } -func (in *nodeGroupMaintenancePolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*NodeGroupMaintenancePolicy] { - return pulumix.Output[*NodeGroupMaintenancePolicy]{ - OutputState: in.ToNodeGroupMaintenancePolicyPtrOutputWithContext(ctx).OutputState, - } -} - type NodeGroupStatus string const ( @@ -26171,12 +25294,6 @@ func (in *nodeTemplateCpuOvercommitTypePtr) ToNodeTemplateCpuOvercommitTypePtrOu return pulumi.ToOutputWithContext(ctx, in).(NodeTemplateCpuOvercommitTypePtrOutput) } -func (in *nodeTemplateCpuOvercommitTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NodeTemplateCpuOvercommitType] { - return pulumix.Output[*NodeTemplateCpuOvercommitType]{ - OutputState: in.ToNodeTemplateCpuOvercommitTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type indicates the intended use of the security policy. - CLOUD_ARMOR: Cloud Armor backend security policies can be configured to filter incoming HTTP requests targeting backend services. They filter requests before they hit the origin servers. - CLOUD_ARMOR_EDGE: Cloud Armor edge security policies can be configured to filter incoming HTTP requests targeting backend services (including Cloud CDN-enabled) as well as backend buckets (Cloud Storage). They filter requests before the request is served from Google's cache. - CLOUD_ARMOR_INTERNAL_SERVICE: Cloud Armor internal service policies can be configured to filter HTTP requests targeting services managed by Traffic Director in a service mesh. They filter requests before the request is served from the application. - CLOUD_ARMOR_NETWORK: Cloud Armor network policies can be configured to filter packets targeting network load balancing resources such as backend services, target pools, target instances, and instances with external IPs. They filter requests before the request is served from the application. This field can be set only at resource creation time. type OrganizationSecurityPolicyType string @@ -26349,12 +25466,6 @@ func (in *organizationSecurityPolicyTypePtr) ToOrganizationSecurityPolicyTypePtr return pulumi.ToOutputWithContext(ctx, in).(OrganizationSecurityPolicyTypePtrOutput) } -func (in *organizationSecurityPolicyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*OrganizationSecurityPolicyType] { - return pulumix.Output[*OrganizationSecurityPolicyType]{ - OutputState: in.ToOrganizationSecurityPolicyTypePtrOutputWithContext(ctx).OutputState, - } -} - // Indicates whether or not this packet mirroring takes effect. If set to FALSE, this packet mirroring policy will not be enforced on the network. The default is TRUE. type PacketMirroringEnable string @@ -26521,12 +25632,6 @@ func (in *packetMirroringEnablePtr) ToPacketMirroringEnablePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(PacketMirroringEnablePtrOutput) } -func (in *packetMirroringEnablePtr) ToOutput(ctx context.Context) pulumix.Output[*PacketMirroringEnable] { - return pulumix.Output[*PacketMirroringEnable]{ - OutputState: in.ToPacketMirroringEnablePtrOutputWithContext(ctx).OutputState, - } -} - // Direction of traffic to mirror, either INGRESS, EGRESS, or BOTH. The default is BOTH. type PacketMirroringFilterDirection string @@ -26698,12 +25803,6 @@ func (in *packetMirroringFilterDirectionPtr) ToPacketMirroringFilterDirectionPtr return pulumi.ToOutputWithContext(ctx, in).(PacketMirroringFilterDirectionPtrOutput) } -func (in *packetMirroringFilterDirectionPtr) ToOutput(ctx context.Context) pulumix.Output[*PacketMirroringFilterDirection] { - return pulumix.Output[*PacketMirroringFilterDirection]{ - OutputState: in.ToPacketMirroringFilterDirectionPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how child public delegated prefix will be scoped. It could be one of following values: - `REGIONAL`: The public delegated prefix is regional only. The provisioning will take a few minutes. - `GLOBAL`: The public delegated prefix is global only. The provisioning will take ~4 weeks. - `GLOBAL_AND_REGIONAL` [output only]: The public delegated prefixes is BYOIP V1 legacy prefix. This is output only value and no longer supported in BYOIP V2. type PublicAdvertisedPrefixPdpScope string @@ -26875,12 +25974,6 @@ func (in *publicAdvertisedPrefixPdpScopePtr) ToPublicAdvertisedPrefixPdpScopePtr return pulumi.ToOutputWithContext(ctx, in).(PublicAdvertisedPrefixPdpScopePtrOutput) } -func (in *publicAdvertisedPrefixPdpScopePtr) ToOutput(ctx context.Context) pulumix.Output[*PublicAdvertisedPrefixPdpScope] { - return pulumix.Output[*PublicAdvertisedPrefixPdpScope]{ - OutputState: in.ToPublicAdvertisedPrefixPdpScopePtrOutputWithContext(ctx).OutputState, - } -} - // The status of the public advertised prefix. Possible values include: - `INITIAL`: RPKI validation is complete. - `PTR_CONFIGURED`: User has configured the PTR. - `VALIDATED`: Reverse DNS lookup is successful. - `REVERSE_DNS_LOOKUP_FAILED`: Reverse DNS lookup failed. - `PREFIX_CONFIGURATION_IN_PROGRESS`: The prefix is being configured. - `PREFIX_CONFIGURATION_COMPLETE`: The prefix is fully configured. - `PREFIX_REMOVAL_IN_PROGRESS`: The prefix is being removed. type PublicAdvertisedPrefixStatus string @@ -27070,12 +26163,6 @@ func (in *publicAdvertisedPrefixStatusPtr) ToPublicAdvertisedPrefixStatusPtrOutp return pulumi.ToOutputWithContext(ctx, in).(PublicAdvertisedPrefixStatusPtrOutput) } -func (in *publicAdvertisedPrefixStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*PublicAdvertisedPrefixStatus] { - return pulumix.Output[*PublicAdvertisedPrefixStatus]{ - OutputState: in.ToPublicAdvertisedPrefixStatusPtrOutputWithContext(ctx).OutputState, - } -} - // The public delegated prefix mode for IPv6 only. type PublicDelegatedPrefixMode string @@ -27244,12 +26331,6 @@ func (in *publicDelegatedPrefixModePtr) ToPublicDelegatedPrefixModePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(PublicDelegatedPrefixModePtrOutput) } -func (in *publicDelegatedPrefixModePtr) ToOutput(ctx context.Context) pulumix.Output[*PublicDelegatedPrefixMode] { - return pulumix.Output[*PublicDelegatedPrefixMode]{ - OutputState: in.ToPublicDelegatedPrefixModePtrOutputWithContext(ctx).OutputState, - } -} - // The PublicDelegatedSubPrefix mode for IPv6 only. type PublicDelegatedPrefixPublicDelegatedSubPrefixMode string @@ -27418,12 +26499,6 @@ func (in *publicDelegatedPrefixPublicDelegatedSubPrefixModePtr) ToPublicDelegate return pulumi.ToOutputWithContext(ctx, in).(PublicDelegatedPrefixPublicDelegatedSubPrefixModePtrOutput) } -func (in *publicDelegatedPrefixPublicDelegatedSubPrefixModePtr) ToOutput(ctx context.Context) pulumix.Output[*PublicDelegatedPrefixPublicDelegatedSubPrefixMode] { - return pulumix.Output[*PublicDelegatedPrefixPublicDelegatedSubPrefixMode]{ - OutputState: in.ToPublicDelegatedPrefixPublicDelegatedSubPrefixModePtrOutputWithContext(ctx).OutputState, - } -} - // Compress text responses using Brotli or gzip compression, based on the client's Accept-Encoding header. type RegionBackendServiceCompressionMode string @@ -27592,12 +26667,6 @@ func (in *regionBackendServiceCompressionModePtr) ToRegionBackendServiceCompress return pulumi.ToOutputWithContext(ctx, in).(RegionBackendServiceCompressionModePtrOutput) } -func (in *regionBackendServiceCompressionModePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionBackendServiceCompressionMode] { - return pulumix.Output[*RegionBackendServiceCompressionMode]{ - OutputState: in.ToRegionBackendServiceCompressionModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies a preference for traffic sent from the proxy to the backend (or from the client to the backend for proxyless gRPC). The possible values are: - IPV4_ONLY: Only send IPv4 traffic to the backends of the backend service (Instance Group, Managed Instance Group, Network Endpoint Group), regardless of traffic from the client to the proxy. Only IPv4 health checks are used to check the health of the backends. This is the default setting. - PREFER_IPV6: Prioritize the connection to the endpoint's IPv6 address over its IPv4 address (provided there is a healthy IPv6 address). - IPV6_ONLY: Only send IPv6 traffic to the backends of the backend service (Instance Group, Managed Instance Group, Network Endpoint Group), regardless of traffic from the client to the proxy. Only IPv6 health checks are used to check the health of the backends. This field is applicable to either: - Advanced Global External HTTPS Load Balancing (load balancing scheme EXTERNAL_MANAGED), - Regional External HTTPS Load Balancing, - Internal TCP Proxy (load balancing scheme INTERNAL_MANAGED), - Regional Internal HTTPS Load Balancing (load balancing scheme INTERNAL_MANAGED), - Traffic Director with Envoy proxies and proxyless gRPC (load balancing scheme INTERNAL_SELF_MANAGED). type RegionBackendServiceIpAddressSelectionPolicy string @@ -27772,12 +26841,6 @@ func (in *regionBackendServiceIpAddressSelectionPolicyPtr) ToRegionBackendServic return pulumi.ToOutputWithContext(ctx, in).(RegionBackendServiceIpAddressSelectionPolicyPtrOutput) } -func (in *regionBackendServiceIpAddressSelectionPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionBackendServiceIpAddressSelectionPolicy] { - return pulumix.Output[*RegionBackendServiceIpAddressSelectionPolicy]{ - OutputState: in.ToRegionBackendServiceIpAddressSelectionPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the load balancer type. A backend service created for one type of load balancer cannot be used with another. For more information, refer to Choosing a load balancer. type RegionBackendServiceLoadBalancingScheme string @@ -27957,12 +27020,6 @@ func (in *regionBackendServiceLoadBalancingSchemePtr) ToRegionBackendServiceLoad return pulumi.ToOutputWithContext(ctx, in).(RegionBackendServiceLoadBalancingSchemePtrOutput) } -func (in *regionBackendServiceLoadBalancingSchemePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionBackendServiceLoadBalancingScheme] { - return pulumix.Output[*RegionBackendServiceLoadBalancingScheme]{ - OutputState: in.ToRegionBackendServiceLoadBalancingSchemePtrOutputWithContext(ctx).OutputState, - } -} - // The load balancing algorithm used within the scope of the locality. The possible values are: - ROUND_ROBIN: This is a simple policy in which each healthy backend is selected in round robin order. This is the default. - LEAST_REQUEST: An O(1) algorithm which selects two random healthy hosts and picks the host which has fewer active requests. - RING_HASH: The ring/modulo hash load balancer implements consistent hashing to backends. The algorithm has the property that the addition/removal of a host from a set of N hosts only affects 1/N of the requests. - RANDOM: The load balancer selects a random healthy host. - ORIGINAL_DESTINATION: Backend host is selected based on the client connection metadata, i.e., connections are opened to the same address as the destination address of the incoming connection before the connection was redirected to the load balancer. - MAGLEV: used as a drop in replacement for the ring hash load balancer. Maglev is not as stable as ring hash but has faster table lookup build times and host selection times. For more information about Maglev, see https://ai.google/research/pubs/pub44824 This field is applicable to either: - A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2, and load_balancing_scheme set to INTERNAL_MANAGED. - A global backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED, INTERNAL_MANAGED, or EXTERNAL_MANAGED. If sessionAffinity is not NONE, and this field is not set to MAGLEV or RING_HASH, session affinity settings will not take effect. Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced by a URL map that is bound to target gRPC proxy that has validateForProxyless field set to true. type RegionBackendServiceLocalityLbPolicy string @@ -28148,12 +27205,6 @@ func (in *regionBackendServiceLocalityLbPolicyPtr) ToRegionBackendServiceLocalit return pulumi.ToOutputWithContext(ctx, in).(RegionBackendServiceLocalityLbPolicyPtrOutput) } -func (in *regionBackendServiceLocalityLbPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionBackendServiceLocalityLbPolicy] { - return pulumix.Output[*RegionBackendServiceLocalityLbPolicy]{ - OutputState: in.ToRegionBackendServiceLocalityLbPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // The protocol this BackendService uses to communicate with backends. Possible values are HTTP, HTTPS, HTTP2, TCP, SSL, UDP or GRPC. depending on the chosen load balancer or Traffic Director configuration. Refer to the documentation for the load balancers or for Traffic Director for more information. Must be set to GRPC when the backend service is referenced by a URL map that is bound to target gRPC proxy. type RegionBackendServiceProtocol string @@ -28341,12 +27392,6 @@ func (in *regionBackendServiceProtocolPtr) ToRegionBackendServiceProtocolPtrOutp return pulumi.ToOutputWithContext(ctx, in).(RegionBackendServiceProtocolPtrOutput) } -func (in *regionBackendServiceProtocolPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionBackendServiceProtocol] { - return pulumix.Output[*RegionBackendServiceProtocol]{ - OutputState: in.ToRegionBackendServiceProtocolPtrOutputWithContext(ctx).OutputState, - } -} - // Type of session affinity to use. The default is NONE. Only NONE and HEADER_FIELD are supported when the backend service is referenced by a URL map that is bound to target gRPC proxy that has validateForProxyless field set to true. For more details, see: [Session Affinity](https://cloud.google.com/load-balancing/docs/backend-service#session_affinity). type RegionBackendServiceSessionAffinity string @@ -28533,12 +27578,6 @@ func (in *regionBackendServiceSessionAffinityPtr) ToRegionBackendServiceSessionA return pulumi.ToOutputWithContext(ctx, in).(RegionBackendServiceSessionAffinityPtrOutput) } -func (in *regionBackendServiceSessionAffinityPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionBackendServiceSessionAffinity] { - return pulumix.Output[*RegionBackendServiceSessionAffinity]{ - OutputState: in.ToRegionBackendServiceSessionAffinityPtrOutputWithContext(ctx).OutputState, - } -} - // The network scope of the backends that can be added to the backend service. This field can be either GLOBAL_VPC_NETWORK or REGIONAL_VPC_NETWORK. A backend service with the VPC scope set to GLOBAL_VPC_NETWORK is only allowed to have backends in global VPC networks. When the VPC scope is set to REGIONAL_VPC_NETWORK the backend service is only allowed to have backends in regional networks in the same scope as the backend service. Note: if not specified then GLOBAL_VPC_NETWORK will be used. type RegionBackendServiceVpcNetworkScope string @@ -28707,12 +27746,6 @@ func (in *regionBackendServiceVpcNetworkScopePtr) ToRegionBackendServiceVpcNetwo return pulumi.ToOutputWithContext(ctx, in).(RegionBackendServiceVpcNetworkScopePtrOutput) } -func (in *regionBackendServiceVpcNetworkScopePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionBackendServiceVpcNetworkScope] { - return pulumix.Output[*RegionBackendServiceVpcNetworkScope]{ - OutputState: in.ToRegionBackendServiceVpcNetworkScopePtrOutputWithContext(ctx).OutputState, - } -} - // The category of the commitment. Category MACHINE specifies commitments composed of machine resources such as VCPU or MEMORY, listed in resources. Category LICENSE specifies commitments composed of software licenses, listed in licenseResources. Note that only MACHINE commitments should have a Type specified. type RegionCommitmentCategory string @@ -28881,12 +27914,6 @@ func (in *regionCommitmentCategoryPtr) ToRegionCommitmentCategoryPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(RegionCommitmentCategoryPtrOutput) } -func (in *regionCommitmentCategoryPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionCommitmentCategory] { - return pulumix.Output[*RegionCommitmentCategory]{ - OutputState: in.ToRegionCommitmentCategoryPtrOutputWithContext(ctx).OutputState, - } -} - // The plan for this commitment, which determines duration and discount rate. The currently supported plans are TWELVE_MONTH (1 year), and THIRTY_SIX_MONTH (3 years). type RegionCommitmentPlan string @@ -29055,12 +28082,6 @@ func (in *regionCommitmentPlanPtr) ToRegionCommitmentPlanPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(RegionCommitmentPlanPtrOutput) } -func (in *regionCommitmentPlanPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionCommitmentPlan] { - return pulumix.Output[*RegionCommitmentPlan]{ - OutputState: in.ToRegionCommitmentPlanPtrOutputWithContext(ctx).OutputState, - } -} - // The type of commitment, which affects the discount rate and the eligible resources. Type MEMORY_OPTIMIZED specifies a commitment that will only apply to memory optimized machines. Type ACCELERATOR_OPTIMIZED specifies a commitment that will only apply to accelerator optimized machines. type RegionCommitmentType string @@ -29255,12 +28276,6 @@ func (in *regionCommitmentTypePtr) ToRegionCommitmentTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(RegionCommitmentTypePtrOutput) } -func (in *regionCommitmentTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionCommitmentType] { - return pulumix.Output[*RegionCommitmentType]{ - OutputState: in.ToRegionCommitmentTypePtrOutputWithContext(ctx).OutputState, - } -} - // The access mode of the disk. - READ_WRITE_SINGLE: The default AccessMode, means the disk can be attached to single instance in RW mode. - READ_WRITE_MANY: The AccessMode means the disk can be attached to multiple instances in RW mode. - READ_ONLY_MANY: The AccessMode means the disk can be attached to multiple instances in RO mode. The AccessMode is only valid for Hyperdisk disk types. type RegionDiskAccessMode string @@ -29432,12 +28447,6 @@ func (in *regionDiskAccessModePtr) ToRegionDiskAccessModePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(RegionDiskAccessModePtrOutput) } -func (in *regionDiskAccessModePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionDiskAccessMode] { - return pulumix.Output[*RegionDiskAccessMode]{ - OutputState: in.ToRegionDiskAccessModePtrOutputWithContext(ctx).OutputState, - } -} - // The architecture of the disk. Valid values are ARM64 or X86_64. type RegionDiskArchitecture string @@ -29609,12 +28618,6 @@ func (in *regionDiskArchitecturePtr) ToRegionDiskArchitecturePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(RegionDiskArchitecturePtrOutput) } -func (in *regionDiskArchitecturePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionDiskArchitecture] { - return pulumix.Output[*RegionDiskArchitecture]{ - OutputState: in.ToRegionDiskArchitecturePtrOutputWithContext(ctx).OutputState, - } -} - // [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. type RegionDiskInterface string @@ -29783,12 +28786,6 @@ func (in *regionDiskInterfacePtr) ToRegionDiskInterfacePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(RegionDiskInterfacePtrOutput) } -func (in *regionDiskInterfacePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionDiskInterface] { - return pulumix.Output[*RegionDiskInterface]{ - OutputState: in.ToRegionDiskInterfacePtrOutputWithContext(ctx).OutputState, - } -} - // [Deprecated] Storage type of the persistent disk. type RegionDiskStorageType string @@ -29955,12 +28952,6 @@ func (in *regionDiskStorageTypePtr) ToRegionDiskStorageTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(RegionDiskStorageTypePtrOutput) } -func (in *regionDiskStorageTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionDiskStorageType] { - return pulumix.Output[*RegionDiskStorageType]{ - OutputState: in.ToRegionDiskStorageTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Policy for how the results from multiple health checks for the same endpoint are aggregated. Defaults to NO_AGGREGATION if unspecified. - NO_AGGREGATION. An EndpointHealth message is returned for each pair in the health check service. - AND. If any health check of an endpoint reports UNHEALTHY, then UNHEALTHY is the HealthState of the endpoint. If all health checks report HEALTHY, the HealthState of the endpoint is HEALTHY. . This is only allowed with regional HealthCheckService. type RegionHealthCheckServiceHealthStatusAggregationPolicy string @@ -30129,12 +29120,6 @@ func (in *regionHealthCheckServiceHealthStatusAggregationPolicyPtr) ToRegionHeal return pulumi.ToOutputWithContext(ctx, in).(RegionHealthCheckServiceHealthStatusAggregationPolicyPtrOutput) } -func (in *regionHealthCheckServiceHealthStatusAggregationPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionHealthCheckServiceHealthStatusAggregationPolicy] { - return pulumix.Output[*RegionHealthCheckServiceHealthStatusAggregationPolicy]{ - OutputState: in.ToRegionHealthCheckServiceHealthStatusAggregationPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. . type RegionHealthCheckServiceHealthStatusAggregationStrategy string @@ -30303,12 +29288,6 @@ func (in *regionHealthCheckServiceHealthStatusAggregationStrategyPtr) ToRegionHe return pulumi.ToOutputWithContext(ctx, in).(RegionHealthCheckServiceHealthStatusAggregationStrategyPtrOutput) } -func (in *regionHealthCheckServiceHealthStatusAggregationStrategyPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionHealthCheckServiceHealthStatusAggregationStrategy] { - return pulumix.Output[*RegionHealthCheckServiceHealthStatusAggregationStrategy]{ - OutputState: in.ToRegionHealthCheckServiceHealthStatusAggregationStrategyPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of the healthCheck, either TCP, SSL, HTTP, HTTPS, HTTP2 or GRPC. Exactly one of the protocol-specific health check fields must be specified, which must match type field. type RegionHealthCheckType string @@ -30487,12 +29466,6 @@ func (in *regionHealthCheckTypePtr) ToRegionHealthCheckTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(RegionHealthCheckTypePtrOutput) } -func (in *regionHealthCheckTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionHealthCheckType] { - return pulumix.Output[*RegionHealthCheckType]{ - OutputState: in.ToRegionHealthCheckTypePtrOutputWithContext(ctx).OutputState, - } -} - // The action to perform in case of zone failure. Only one value is supported, NO_FAILOVER. The default is NO_FAILOVER. type RegionInstanceGroupManagerFailoverAction string @@ -30659,12 +29632,6 @@ func (in *regionInstanceGroupManagerFailoverActionPtr) ToRegionInstanceGroupMana return pulumi.ToOutputWithContext(ctx, in).(RegionInstanceGroupManagerFailoverActionPtrOutput) } -func (in *regionInstanceGroupManagerFailoverActionPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionInstanceGroupManagerFailoverAction] { - return pulumix.Output[*RegionInstanceGroupManagerFailoverAction]{ - OutputState: in.ToRegionInstanceGroupManagerFailoverActionPtrOutputWithContext(ctx).OutputState, - } -} - // Pagination behavior of the listManagedInstances API method for this managed instance group. type RegionInstanceGroupManagerListManagedInstancesResults string @@ -30833,12 +29800,6 @@ func (in *regionInstanceGroupManagerListManagedInstancesResultsPtr) ToRegionInst return pulumi.ToOutputWithContext(ctx, in).(RegionInstanceGroupManagerListManagedInstancesResultsPtrOutput) } -func (in *regionInstanceGroupManagerListManagedInstancesResultsPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionInstanceGroupManagerListManagedInstancesResults] { - return pulumix.Output[*RegionInstanceGroupManagerListManagedInstancesResults]{ - OutputState: in.ToRegionInstanceGroupManagerListManagedInstancesResultsPtrOutputWithContext(ctx).OutputState, - } -} - // The unit of measure for the target size. type RegionInstanceGroupManagerTargetSizeUnit string @@ -31007,12 +29968,6 @@ func (in *regionInstanceGroupManagerTargetSizeUnitPtr) ToRegionInstanceGroupMana return pulumi.ToOutputWithContext(ctx, in).(RegionInstanceGroupManagerTargetSizeUnitPtrOutput) } -func (in *regionInstanceGroupManagerTargetSizeUnitPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionInstanceGroupManagerTargetSizeUnit] { - return pulumix.Output[*RegionInstanceGroupManagerTargetSizeUnit]{ - OutputState: in.ToRegionInstanceGroupManagerTargetSizeUnitPtrOutputWithContext(ctx).OutputState, - } -} - // Only valid when networkEndpointType is "GCE_VM_IP_PORT" and the NEG is regional. type RegionNetworkEndpointGroupClientPortMappingMode string @@ -31181,12 +30136,6 @@ func (in *regionNetworkEndpointGroupClientPortMappingModePtr) ToRegionNetworkEnd return pulumi.ToOutputWithContext(ctx, in).(RegionNetworkEndpointGroupClientPortMappingModePtrOutput) } -func (in *regionNetworkEndpointGroupClientPortMappingModePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionNetworkEndpointGroupClientPortMappingMode] { - return pulumix.Output[*RegionNetworkEndpointGroupClientPortMappingMode]{ - OutputState: in.ToRegionNetworkEndpointGroupClientPortMappingModePtrOutputWithContext(ctx).OutputState, - } -} - // Type of network endpoints in this network endpoint group. Can be one of GCE_VM_IP, GCE_VM_IP_PORT, NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT, INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT. type RegionNetworkEndpointGroupNetworkEndpointType string @@ -31370,12 +30319,6 @@ func (in *regionNetworkEndpointGroupNetworkEndpointTypePtr) ToRegionNetworkEndpo return pulumi.ToOutputWithContext(ctx, in).(RegionNetworkEndpointGroupNetworkEndpointTypePtrOutput) } -func (in *regionNetworkEndpointGroupNetworkEndpointTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionNetworkEndpointGroupNetworkEndpointType] { - return pulumix.Output[*RegionNetworkEndpointGroupNetworkEndpointType]{ - OutputState: in.ToRegionNetworkEndpointGroupNetworkEndpointTypePtrOutputWithContext(ctx).OutputState, - } -} - // Specify the type of this network endpoint group. Only LOAD_BALANCING is valid for now. type RegionNetworkEndpointGroupType string @@ -31541,12 +30484,6 @@ func (in *regionNetworkEndpointGroupTypePtr) ToRegionNetworkEndpointGroupTypePtr return pulumi.ToOutputWithContext(ctx, in).(RegionNetworkEndpointGroupTypePtrOutput) } -func (in *regionNetworkEndpointGroupTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionNetworkEndpointGroupType] { - return pulumix.Output[*RegionNetworkEndpointGroupType]{ - OutputState: in.ToRegionNetworkEndpointGroupTypePtrOutputWithContext(ctx).OutputState, - } -} - // The scope of networks allowed to be associated with the firewall policy. This field can be either GLOBAL_VPC_NETWORK or REGIONAL_VPC_NETWORK. A firewall policy with the VPC scope set to GLOBAL_VPC_NETWORK is allowed to be attached only to global networks. When the VPC scope is set to REGIONAL_VPC_NETWORK the firewall policy is allowed to be attached only to regional networks in the same scope as the firewall policy. Note: if not specified then GLOBAL_VPC_NETWORK will be used. type RegionNetworkFirewallPolicyVpcNetworkScope string @@ -31715,12 +30652,6 @@ func (in *regionNetworkFirewallPolicyVpcNetworkScopePtr) ToRegionNetworkFirewall return pulumi.ToOutputWithContext(ctx, in).(RegionNetworkFirewallPolicyVpcNetworkScopePtrOutput) } -func (in *regionNetworkFirewallPolicyVpcNetworkScopePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionNetworkFirewallPolicyVpcNetworkScope] { - return pulumix.Output[*RegionNetworkFirewallPolicyVpcNetworkScope]{ - OutputState: in.ToRegionNetworkFirewallPolicyVpcNetworkScopePtrOutputWithContext(ctx).OutputState, - } -} - // The type indicates the intended use of the security policy. - CLOUD_ARMOR: Cloud Armor backend security policies can be configured to filter incoming HTTP requests targeting backend services. They filter requests before they hit the origin servers. - CLOUD_ARMOR_EDGE: Cloud Armor edge security policies can be configured to filter incoming HTTP requests targeting backend services (including Cloud CDN-enabled) as well as backend buckets (Cloud Storage). They filter requests before the request is served from Google's cache. - CLOUD_ARMOR_INTERNAL_SERVICE: Cloud Armor internal service policies can be configured to filter HTTP requests targeting services managed by Traffic Director in a service mesh. They filter requests before the request is served from the application. - CLOUD_ARMOR_NETWORK: Cloud Armor network policies can be configured to filter packets targeting network load balancing resources such as backend services, target pools, target instances, and instances with external IPs. They filter requests before the request is served from the application. This field can be set only at resource creation time. type RegionSecurityPolicyType string @@ -31893,12 +30824,6 @@ func (in *regionSecurityPolicyTypePtr) ToRegionSecurityPolicyTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(RegionSecurityPolicyTypePtrOutput) } -func (in *regionSecurityPolicyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionSecurityPolicyType] { - return pulumix.Output[*RegionSecurityPolicyType]{ - OutputState: in.ToRegionSecurityPolicyTypePtrOutputWithContext(ctx).OutputState, - } -} - // Indicates the type of the snapshot. type RegionSnapshotSnapshotType string @@ -32065,12 +30990,6 @@ func (in *regionSnapshotSnapshotTypePtr) ToRegionSnapshotSnapshotTypePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(RegionSnapshotSnapshotTypePtrOutput) } -func (in *regionSnapshotSnapshotTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionSnapshotSnapshotType] { - return pulumix.Output[*RegionSnapshotSnapshotType]{ - OutputState: in.ToRegionSnapshotSnapshotTypePtrOutputWithContext(ctx).OutputState, - } -} - // (Optional) Specifies the type of SSL certificate, either "SELF_MANAGED" or "MANAGED". If not specified, the certificate is self-managed and the fields certificate and private_key are used. type RegionSslCertificateType string @@ -32241,12 +31160,6 @@ func (in *regionSslCertificateTypePtr) ToRegionSslCertificateTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(RegionSslCertificateTypePtrOutput) } -func (in *regionSslCertificateTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionSslCertificateType] { - return pulumix.Output[*RegionSslCertificateType]{ - OutputState: in.ToRegionSslCertificateTypePtrOutputWithContext(ctx).OutputState, - } -} - // The minimum version of SSL protocol that can be used by the clients to establish a connection with the load balancer. This can be one of TLS_1_0, TLS_1_1, TLS_1_2. type RegionSslPolicyMinTlsVersion string @@ -32418,12 +31331,6 @@ func (in *regionSslPolicyMinTlsVersionPtr) ToRegionSslPolicyMinTlsVersionPtrOutp return pulumi.ToOutputWithContext(ctx, in).(RegionSslPolicyMinTlsVersionPtrOutput) } -func (in *regionSslPolicyMinTlsVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionSslPolicyMinTlsVersion] { - return pulumix.Output[*RegionSslPolicyMinTlsVersion]{ - OutputState: in.ToRegionSslPolicyMinTlsVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Profile specifies the set of SSL features that can be used by the load balancer when negotiating SSL with clients. This can be one of COMPATIBLE, MODERN, RESTRICTED, or CUSTOM. If using CUSTOM, the set of SSL features to enable must be specified in the customFeatures field. type RegionSslPolicyProfile string @@ -32598,12 +31505,6 @@ func (in *regionSslPolicyProfilePtr) ToRegionSslPolicyProfilePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(RegionSslPolicyProfilePtrOutput) } -func (in *regionSslPolicyProfilePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionSslPolicyProfile] { - return pulumix.Output[*RegionSslPolicyProfile]{ - OutputState: in.ToRegionSslPolicyProfilePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the QUIC override policy for this TargetHttpsProxy resource. This setting determines whether the load balancer attempts to negotiate QUIC with clients. You can specify NONE, ENABLE, or DISABLE. - When quic-override is set to NONE, Google manages whether QUIC is used. - When quic-override is set to ENABLE, the load balancer uses QUIC when possible. - When quic-override is set to DISABLE, the load balancer doesn't use QUIC. - If the quic-override flag is not specified, NONE is implied. type RegionTargetHttpsProxyQuicOverride string @@ -32775,12 +31676,6 @@ func (in *regionTargetHttpsProxyQuicOverridePtr) ToRegionTargetHttpsProxyQuicOve return pulumi.ToOutputWithContext(ctx, in).(RegionTargetHttpsProxyQuicOverridePtrOutput) } -func (in *regionTargetHttpsProxyQuicOverridePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionTargetHttpsProxyQuicOverride] { - return pulumix.Output[*RegionTargetHttpsProxyQuicOverride]{ - OutputState: in.ToRegionTargetHttpsProxyQuicOverridePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type RegionTargetTcpProxyProxyHeader string @@ -32947,12 +31842,6 @@ func (in *regionTargetTcpProxyProxyHeaderPtr) ToRegionTargetTcpProxyProxyHeaderP return pulumi.ToOutputWithContext(ctx, in).(RegionTargetTcpProxyProxyHeaderPtrOutput) } -func (in *regionTargetTcpProxyProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionTargetTcpProxyProxyHeader] { - return pulumix.Output[*RegionTargetTcpProxyProxyHeader]{ - OutputState: in.ToRegionTargetTcpProxyProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of reservation from which this instance can consume resources: ANY_RESERVATION (default), SPECIFIC_RESERVATION, or NO_RESERVATION. See Consuming reserved instances for examples. type ReservationAffinityConsumeReservationType string @@ -33132,12 +32021,6 @@ func (in *reservationAffinityConsumeReservationTypePtr) ToReservationAffinityCon return pulumi.ToOutputWithContext(ctx, in).(ReservationAffinityConsumeReservationTypePtrOutput) } -func (in *reservationAffinityConsumeReservationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ReservationAffinityConsumeReservationType] { - return pulumix.Output[*ReservationAffinityConsumeReservationType]{ - OutputState: in.ToReservationAffinityConsumeReservationTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of resource for which this commitment applies. Possible values are VCPU, MEMORY, LOCAL_SSD, and ACCELERATOR. type ResourceCommitmentType string @@ -33310,12 +32193,6 @@ func (in *resourceCommitmentTypePtr) ToResourceCommitmentTypePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(ResourceCommitmentTypePtrOutput) } -func (in *resourceCommitmentTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ResourceCommitmentType] { - return pulumix.Output[*ResourceCommitmentType]{ - OutputState: in.ToResourceCommitmentTypePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies network collocation type ResourcePolicyGroupPlacementPolicyCollocation string @@ -33485,12 +32362,6 @@ func (in *resourcePolicyGroupPlacementPolicyCollocationPtr) ToResourcePolicyGrou return pulumi.ToOutputWithContext(ctx, in).(ResourcePolicyGroupPlacementPolicyCollocationPtrOutput) } -func (in *resourcePolicyGroupPlacementPolicyCollocationPtr) ToOutput(ctx context.Context) pulumix.Output[*ResourcePolicyGroupPlacementPolicyCollocation] { - return pulumix.Output[*ResourcePolicyGroupPlacementPolicyCollocation]{ - OutputState: in.ToResourcePolicyGroupPlacementPolicyCollocationPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies network locality type ResourcePolicyGroupPlacementPolicyLocality string @@ -33659,12 +32530,6 @@ func (in *resourcePolicyGroupPlacementPolicyLocalityPtr) ToResourcePolicyGroupPl return pulumi.ToOutputWithContext(ctx, in).(ResourcePolicyGroupPlacementPolicyLocalityPtrOutput) } -func (in *resourcePolicyGroupPlacementPolicyLocalityPtr) ToOutput(ctx context.Context) pulumix.Output[*ResourcePolicyGroupPlacementPolicyLocality] { - return pulumix.Output[*ResourcePolicyGroupPlacementPolicyLocality]{ - OutputState: in.ToResourcePolicyGroupPlacementPolicyLocalityPtrOutputWithContext(ctx).OutputState, - } -} - // Scope specifies the availability domain to which the VMs should be spread. type ResourcePolicyGroupPlacementPolicyScope string @@ -33833,12 +32698,6 @@ func (in *resourcePolicyGroupPlacementPolicyScopePtr) ToResourcePolicyGroupPlace return pulumi.ToOutputWithContext(ctx, in).(ResourcePolicyGroupPlacementPolicyScopePtrOutput) } -func (in *resourcePolicyGroupPlacementPolicyScopePtr) ToOutput(ctx context.Context) pulumix.Output[*ResourcePolicyGroupPlacementPolicyScope] { - return pulumix.Output[*ResourcePolicyGroupPlacementPolicyScope]{ - OutputState: in.ToResourcePolicyGroupPlacementPolicyScopePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies instances to hosts placement relationship type ResourcePolicyGroupPlacementPolicyStyle string @@ -34009,12 +32868,6 @@ func (in *resourcePolicyGroupPlacementPolicyStylePtr) ToResourcePolicyGroupPlace return pulumi.ToOutputWithContext(ctx, in).(ResourcePolicyGroupPlacementPolicyStylePtrOutput) } -func (in *resourcePolicyGroupPlacementPolicyStylePtr) ToOutput(ctx context.Context) pulumix.Output[*ResourcePolicyGroupPlacementPolicyStyle] { - return pulumix.Output[*ResourcePolicyGroupPlacementPolicyStyle]{ - OutputState: in.ToResourcePolicyGroupPlacementPolicyStylePtrOutputWithContext(ctx).OutputState, - } -} - type ResourcePolicySnapshotSchedulePolicyRetentionPolicyOnPolicySwitch string const ( @@ -34182,12 +33035,6 @@ func (in *resourcePolicySnapshotSchedulePolicyRetentionPolicyOnPolicySwitchPtr) return pulumi.ToOutputWithContext(ctx, in).(ResourcePolicySnapshotSchedulePolicyRetentionPolicyOnPolicySwitchPtrOutput) } -func (in *resourcePolicySnapshotSchedulePolicyRetentionPolicyOnPolicySwitchPtr) ToOutput(ctx context.Context) pulumix.Output[*ResourcePolicySnapshotSchedulePolicyRetentionPolicyOnPolicySwitch] { - return pulumix.Output[*ResourcePolicySnapshotSchedulePolicyRetentionPolicyOnPolicySwitch]{ - OutputState: in.ToResourcePolicySnapshotSchedulePolicyRetentionPolicyOnPolicySwitchPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the behavior to apply to scheduled snapshots when the source disk is deleted. type ResourcePolicySnapshotSchedulePolicyRetentionPolicyOnSourceDiskDelete string @@ -34356,12 +33203,6 @@ func (in *resourcePolicySnapshotSchedulePolicyRetentionPolicyOnSourceDiskDeleteP return pulumi.ToOutputWithContext(ctx, in).(ResourcePolicySnapshotSchedulePolicyRetentionPolicyOnSourceDiskDeletePtrOutput) } -func (in *resourcePolicySnapshotSchedulePolicyRetentionPolicyOnSourceDiskDeletePtr) ToOutput(ctx context.Context) pulumix.Output[*ResourcePolicySnapshotSchedulePolicyRetentionPolicyOnSourceDiskDelete] { - return pulumix.Output[*ResourcePolicySnapshotSchedulePolicyRetentionPolicyOnSourceDiskDelete]{ - OutputState: in.ToResourcePolicySnapshotSchedulePolicyRetentionPolicyOnSourceDiskDeletePtrOutputWithContext(ctx).OutputState, - } -} - // Defines a schedule that runs on specific days of the week. Specify one or more days. The following options are available: MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY. type ResourcePolicyWeeklyCycleDayOfWeekDay string @@ -34540,12 +33381,6 @@ func (in *resourcePolicyWeeklyCycleDayOfWeekDayPtr) ToResourcePolicyWeeklyCycleD return pulumi.ToOutputWithContext(ctx, in).(ResourcePolicyWeeklyCycleDayOfWeekDayPtrOutput) } -func (in *resourcePolicyWeeklyCycleDayOfWeekDayPtr) ToOutput(ctx context.Context) pulumix.Output[*ResourcePolicyWeeklyCycleDayOfWeekDay] { - return pulumix.Output[*ResourcePolicyWeeklyCycleDayOfWeekDay]{ - OutputState: in.ToResourcePolicyWeeklyCycleDayOfWeekDayPtrOutputWithContext(ctx).OutputState, - } -} - // ILB route behavior when ILB is deemed unhealthy based on user specified threshold on the Backend Service of the internal load balancing. type RouteIlbRouteBehaviorOnUnhealthy string @@ -34714,12 +33549,6 @@ func (in *routeIlbRouteBehaviorOnUnhealthyPtr) ToRouteIlbRouteBehaviorOnUnhealth return pulumi.ToOutputWithContext(ctx, in).(RouteIlbRouteBehaviorOnUnhealthyPtrOutput) } -func (in *routeIlbRouteBehaviorOnUnhealthyPtr) ToOutput(ctx context.Context) pulumix.Output[*RouteIlbRouteBehaviorOnUnhealthy] { - return pulumix.Output[*RouteIlbRouteBehaviorOnUnhealthy]{ - OutputState: in.ToRouteIlbRouteBehaviorOnUnhealthyPtrOutputWithContext(ctx).OutputState, - } -} - // User-specified flag to indicate which mode to use for advertisement. The options are DEFAULT or CUSTOM. type RouterBgpAdvertiseMode string @@ -34886,12 +33715,6 @@ func (in *routerBgpAdvertiseModePtr) ToRouterBgpAdvertiseModePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(RouterBgpAdvertiseModePtrOutput) } -func (in *routerBgpAdvertiseModePtr) ToOutput(ctx context.Context) pulumix.Output[*RouterBgpAdvertiseMode] { - return pulumix.Output[*RouterBgpAdvertiseMode]{ - OutputState: in.ToRouterBgpAdvertiseModePtrOutputWithContext(ctx).OutputState, - } -} - type RouterBgpAdvertisedGroupsItem string const ( @@ -35062,12 +33885,6 @@ func (in *routerBgpAdvertisedGroupsItemPtr) ToRouterBgpAdvertisedGroupsItemPtrOu return pulumi.ToOutputWithContext(ctx, in).(RouterBgpAdvertisedGroupsItemPtrOutput) } -func (in *routerBgpAdvertisedGroupsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterBgpAdvertisedGroupsItem] { - return pulumix.Output[*RouterBgpAdvertisedGroupsItem]{ - OutputState: in.ToRouterBgpAdvertisedGroupsItemPtrOutputWithContext(ctx).OutputState, - } -} - // RouterBgpAdvertisedGroupsItemArrayInput is an input type that accepts RouterBgpAdvertisedGroupsItemArray and RouterBgpAdvertisedGroupsItemArrayOutput values. // You can construct a concrete instance of `RouterBgpAdvertisedGroupsItemArrayInput` via: // @@ -35279,12 +34096,6 @@ func (in *routerBgpPeerAdvertiseModePtr) ToRouterBgpPeerAdvertiseModePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(RouterBgpPeerAdvertiseModePtrOutput) } -func (in *routerBgpPeerAdvertiseModePtr) ToOutput(ctx context.Context) pulumix.Output[*RouterBgpPeerAdvertiseMode] { - return pulumix.Output[*RouterBgpPeerAdvertiseMode]{ - OutputState: in.ToRouterBgpPeerAdvertiseModePtrOutputWithContext(ctx).OutputState, - } -} - type RouterBgpPeerAdvertisedGroupsItem string const ( @@ -35455,12 +34266,6 @@ func (in *routerBgpPeerAdvertisedGroupsItemPtr) ToRouterBgpPeerAdvertisedGroupsI return pulumi.ToOutputWithContext(ctx, in).(RouterBgpPeerAdvertisedGroupsItemPtrOutput) } -func (in *routerBgpPeerAdvertisedGroupsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterBgpPeerAdvertisedGroupsItem] { - return pulumix.Output[*RouterBgpPeerAdvertisedGroupsItem]{ - OutputState: in.ToRouterBgpPeerAdvertisedGroupsItemPtrOutputWithContext(ctx).OutputState, - } -} - // RouterBgpPeerAdvertisedGroupsItemArrayInput is an input type that accepts RouterBgpPeerAdvertisedGroupsItemArray and RouterBgpPeerAdvertisedGroupsItemArrayOutput values. // You can construct a concrete instance of `RouterBgpPeerAdvertisedGroupsItemArrayInput` via: // @@ -35674,12 +34479,6 @@ func (in *routerBgpPeerBfdModePtr) ToRouterBgpPeerBfdModePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(RouterBgpPeerBfdModePtrOutput) } -func (in *routerBgpPeerBfdModePtr) ToOutput(ctx context.Context) pulumix.Output[*RouterBgpPeerBfdMode] { - return pulumix.Output[*RouterBgpPeerBfdMode]{ - OutputState: in.ToRouterBgpPeerBfdModePtrOutputWithContext(ctx).OutputState, - } -} - // The BFD packet mode for this BGP peer. If set to CONTROL_AND_ECHO, BFD echo mode is enabled for this BGP peer. In this mode, if the peer router also has BFD echo mode enabled, BFD echo packets will be sent to the other router. If the peer router does not have BFD echo mode enabled, only control packets will be sent. If set to CONTROL_ONLY, BFD echo mode is disabled for this BGP peer. If this router and the peer router have a multihop connection, this should be set to CONTROL_ONLY as BFD echo mode is only supported on singlehop connections. The default is CONTROL_AND_ECHO. type RouterBgpPeerBfdPacketMode string @@ -35846,12 +34645,6 @@ func (in *routerBgpPeerBfdPacketModePtr) ToRouterBgpPeerBfdPacketModePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(RouterBgpPeerBfdPacketModePtrOutput) } -func (in *routerBgpPeerBfdPacketModePtr) ToOutput(ctx context.Context) pulumix.Output[*RouterBgpPeerBfdPacketMode] { - return pulumix.Output[*RouterBgpPeerBfdPacketMode]{ - OutputState: in.ToRouterBgpPeerBfdPacketModePtrOutputWithContext(ctx).OutputState, - } -} - // The BFD session initialization mode for this BGP peer. If set to ACTIVE, the Cloud Router will initiate the BFD session for this BGP peer. If set to PASSIVE, the Cloud Router will wait for the peer router to initiate the BFD session for this BGP peer. If set to DISABLED, BFD is disabled for this BGP peer. The default is DISABLED. type RouterBgpPeerBfdSessionInitializationMode string @@ -36020,12 +34813,6 @@ func (in *routerBgpPeerBfdSessionInitializationModePtr) ToRouterBgpPeerBfdSessio return pulumi.ToOutputWithContext(ctx, in).(RouterBgpPeerBfdSessionInitializationModePtrOutput) } -func (in *routerBgpPeerBfdSessionInitializationModePtr) ToOutput(ctx context.Context) pulumix.Output[*RouterBgpPeerBfdSessionInitializationMode] { - return pulumix.Output[*RouterBgpPeerBfdSessionInitializationMode]{ - OutputState: in.ToRouterBgpPeerBfdSessionInitializationModePtrOutputWithContext(ctx).OutputState, - } -} - // The status of the BGP peer connection. If set to FALSE, any active session with the peer is terminated and all associated routing information is removed. If set to TRUE, the peer connection can be established with routing information. The default is TRUE. type RouterBgpPeerEnable string @@ -36192,12 +34979,6 @@ func (in *routerBgpPeerEnablePtr) ToRouterBgpPeerEnablePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(RouterBgpPeerEnablePtrOutput) } -func (in *routerBgpPeerEnablePtr) ToOutput(ctx context.Context) pulumix.Output[*RouterBgpPeerEnable] { - return pulumix.Output[*RouterBgpPeerEnable]{ - OutputState: in.ToRouterBgpPeerEnablePtrOutputWithContext(ctx).OutputState, - } -} - // IP version of this interface. type RouterInterfaceIpVersion string @@ -36364,12 +35145,6 @@ func (in *routerInterfaceIpVersionPtr) ToRouterInterfaceIpVersionPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(RouterInterfaceIpVersionPtrOutput) } -func (in *routerInterfaceIpVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterInterfaceIpVersion] { - return pulumix.Output[*RouterInterfaceIpVersion]{ - OutputState: in.ToRouterInterfaceIpVersionPtrOutputWithContext(ctx).OutputState, - } -} - // The network tier to use when automatically reserving NAT IP addresses. Must be one of: PREMIUM, STANDARD. If not specified, then the current project-level default tier is used. type RouterNatAutoNetworkTier string @@ -36547,12 +35322,6 @@ func (in *routerNatAutoNetworkTierPtr) ToRouterNatAutoNetworkTierPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(RouterNatAutoNetworkTierPtrOutput) } -func (in *routerNatAutoNetworkTierPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterNatAutoNetworkTier] { - return pulumix.Output[*RouterNatAutoNetworkTier]{ - OutputState: in.ToRouterNatAutoNetworkTierPtrOutputWithContext(ctx).OutputState, - } -} - type RouterNatEndpointTypesItem string const ( @@ -36723,12 +35492,6 @@ func (in *routerNatEndpointTypesItemPtr) ToRouterNatEndpointTypesItemPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(RouterNatEndpointTypesItemPtrOutput) } -func (in *routerNatEndpointTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterNatEndpointTypesItem] { - return pulumix.Output[*RouterNatEndpointTypesItem]{ - OutputState: in.ToRouterNatEndpointTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // RouterNatEndpointTypesItemArrayInput is an input type that accepts RouterNatEndpointTypesItemArray and RouterNatEndpointTypesItemArrayOutput values. // You can construct a concrete instance of `RouterNatEndpointTypesItemArrayInput` via: // @@ -36945,12 +35708,6 @@ func (in *routerNatLogConfigFilterPtr) ToRouterNatLogConfigFilterPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(RouterNatLogConfigFilterPtrOutput) } -func (in *routerNatLogConfigFilterPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterNatLogConfigFilter] { - return pulumix.Output[*RouterNatLogConfigFilter]{ - OutputState: in.ToRouterNatLogConfigFilterPtrOutputWithContext(ctx).OutputState, - } -} - // Specify the NatIpAllocateOption, which can take one of the following values: - MANUAL_ONLY: Uses only Nat IP addresses provided by customers. When there are not enough specified Nat IPs, the Nat service fails for new VMs. - AUTO_ONLY: Nat IPs are allocated by Google Cloud Platform; customers can't specify any Nat IPs. When choosing AUTO_ONLY, then nat_ip should be empty. type RouterNatNatIpAllocateOption string @@ -37119,12 +35876,6 @@ func (in *routerNatNatIpAllocateOptionPtr) ToRouterNatNatIpAllocateOptionPtrOutp return pulumi.ToOutputWithContext(ctx, in).(RouterNatNatIpAllocateOptionPtrOutput) } -func (in *routerNatNatIpAllocateOptionPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterNatNatIpAllocateOption] { - return pulumix.Output[*RouterNatNatIpAllocateOption]{ - OutputState: in.ToRouterNatNatIpAllocateOptionPtrOutputWithContext(ctx).OutputState, - } -} - // Specify the Nat option, which can take one of the following values: - ALL_SUBNETWORKS_ALL_IP_RANGES: All of the IP ranges in every Subnetwork are allowed to Nat. - ALL_SUBNETWORKS_ALL_PRIMARY_IP_RANGES: All of the primary IP ranges in every Subnetwork are allowed to Nat. - LIST_OF_SUBNETWORKS: A list of Subnetworks are allowed to Nat (specified in the field subnetwork below) The default is SUBNETWORK_IP_RANGE_TO_NAT_OPTION_UNSPECIFIED. Note that if this field contains ALL_SUBNETWORKS_ALL_IP_RANGES then there should not be any other Router.Nat section in any Router for this network in this region. type RouterNatSourceSubnetworkIpRangesToNat string @@ -37296,12 +36047,6 @@ func (in *routerNatSourceSubnetworkIpRangesToNatPtr) ToRouterNatSourceSubnetwork return pulumi.ToOutputWithContext(ctx, in).(RouterNatSourceSubnetworkIpRangesToNatPtrOutput) } -func (in *routerNatSourceSubnetworkIpRangesToNatPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterNatSourceSubnetworkIpRangesToNat] { - return pulumix.Output[*RouterNatSourceSubnetworkIpRangesToNat]{ - OutputState: in.ToRouterNatSourceSubnetworkIpRangesToNatPtrOutputWithContext(ctx).OutputState, - } -} - type RouterNatSubnetworkToNatSourceIpRangesToNatItem string const ( @@ -37472,12 +36217,6 @@ func (in *routerNatSubnetworkToNatSourceIpRangesToNatItemPtr) ToRouterNatSubnetw return pulumi.ToOutputWithContext(ctx, in).(RouterNatSubnetworkToNatSourceIpRangesToNatItemPtrOutput) } -func (in *routerNatSubnetworkToNatSourceIpRangesToNatItemPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterNatSubnetworkToNatSourceIpRangesToNatItem] { - return pulumix.Output[*RouterNatSubnetworkToNatSourceIpRangesToNatItem]{ - OutputState: in.ToRouterNatSubnetworkToNatSourceIpRangesToNatItemPtrOutputWithContext(ctx).OutputState, - } -} - // RouterNatSubnetworkToNatSourceIpRangesToNatItemArrayInput is an input type that accepts RouterNatSubnetworkToNatSourceIpRangesToNatItemArray and RouterNatSubnetworkToNatSourceIpRangesToNatItemArrayOutput values. // You can construct a concrete instance of `RouterNatSubnetworkToNatSourceIpRangesToNatItemArrayInput` via: // @@ -37691,12 +36430,6 @@ func (in *routerNatTypePtr) ToRouterNatTypePtrOutputWithContext(ctx context.Cont return pulumi.ToOutputWithContext(ctx, in).(RouterNatTypePtrOutput) } -func (in *routerNatTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RouterNatType] { - return pulumix.Output[*RouterNatType]{ - OutputState: in.ToRouterNatTypePtrOutputWithContext(ctx).OutputState, - } -} - // This is deprecated and has no effect. Do not use. type RuleAction string @@ -37877,12 +36610,6 @@ func (in *ruleActionPtr) ToRuleActionPtrOutputWithContext(ctx context.Context) R return pulumi.ToOutputWithContext(ctx, in).(RuleActionPtrOutput) } -func (in *ruleActionPtr) ToOutput(ctx context.Context) pulumix.Output[*RuleAction] { - return pulumix.Output[*RuleAction]{ - OutputState: in.ToRuleActionPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how a port is selected for health checking. Can be one of the following values: USE_FIXED_PORT: Specifies a port number explicitly using the port field in the health check. Supported by backend services for pass-through load balancers and backend services for proxy load balancers. Not supported by target pools. The health check supports all backends supported by the backend service provided the backend can be health checked. For example, GCE_VM_IP network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an indirect method of specifying the health check port by referring to the backend service. Only supported by backend services for proxy load balancers. Not supported by target pools. Not supported by backend services for pass-through load balancers. Supports all backends that can be health checked; for example, GCE_VM_IP_PORT network endpoint groups and instance group backends. For GCE_VM_IP_PORT network endpoint group backends, the health check uses the port number specified for each endpoint in the network endpoint group. For instance group backends, the health check uses the port number determined by looking up the backend service's named port in the instance group's list of named ports. type SSLHealthCheckPortSpecification string @@ -38054,12 +36781,6 @@ func (in *sslhealthCheckPortSpecificationPtr) ToSSLHealthCheckPortSpecificationP return pulumi.ToOutputWithContext(ctx, in).(SSLHealthCheckPortSpecificationPtrOutput) } -func (in *sslhealthCheckPortSpecificationPtr) ToOutput(ctx context.Context) pulumix.Output[*SSLHealthCheckPortSpecification] { - return pulumix.Output[*SSLHealthCheckPortSpecification]{ - OutputState: in.ToSSLHealthCheckPortSpecificationPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type SSLHealthCheckProxyHeader string @@ -38226,12 +36947,6 @@ func (in *sslhealthCheckProxyHeaderPtr) ToSSLHealthCheckProxyHeaderPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(SSLHealthCheckProxyHeaderPtrOutput) } -func (in *sslhealthCheckProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*SSLHealthCheckProxyHeader] { - return pulumix.Output[*SSLHealthCheckProxyHeader]{ - OutputState: in.ToSSLHealthCheckProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the termination action for the instance. type SchedulingInstanceTerminationAction string @@ -38403,12 +37118,6 @@ func (in *schedulingInstanceTerminationActionPtr) ToSchedulingInstanceTerminatio return pulumi.ToOutputWithContext(ctx, in).(SchedulingInstanceTerminationActionPtrOutput) } -func (in *schedulingInstanceTerminationActionPtr) ToOutput(ctx context.Context) pulumix.Output[*SchedulingInstanceTerminationAction] { - return pulumix.Output[*SchedulingInstanceTerminationAction]{ - OutputState: in.ToSchedulingInstanceTerminationActionPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the frequency of planned maintenance events. The accepted values are: `PERIODIC`. type SchedulingMaintenanceInterval string @@ -38580,12 +37289,6 @@ func (in *schedulingMaintenanceIntervalPtr) ToSchedulingMaintenanceIntervalPtrOu return pulumi.ToOutputWithContext(ctx, in).(SchedulingMaintenanceIntervalPtrOutput) } -func (in *schedulingMaintenanceIntervalPtr) ToOutput(ctx context.Context) pulumix.Output[*SchedulingMaintenanceInterval] { - return pulumix.Output[*SchedulingMaintenanceInterval]{ - OutputState: in.ToSchedulingMaintenanceIntervalPtrOutputWithContext(ctx).OutputState, - } -} - // Defines the operation of node selection. Valid operators are IN for affinity and NOT_IN for anti-affinity. type SchedulingNodeAffinityOperator string @@ -38756,12 +37459,6 @@ func (in *schedulingNodeAffinityOperatorPtr) ToSchedulingNodeAffinityOperatorPtr return pulumi.ToOutputWithContext(ctx, in).(SchedulingNodeAffinityOperatorPtrOutput) } -func (in *schedulingNodeAffinityOperatorPtr) ToOutput(ctx context.Context) pulumix.Output[*SchedulingNodeAffinityOperator] { - return pulumix.Output[*SchedulingNodeAffinityOperator]{ - OutputState: in.ToSchedulingNodeAffinityOperatorPtrOutputWithContext(ctx).OutputState, - } -} - // Defines the maintenance behavior for this instance. For standard instances, the default behavior is MIGRATE. For preemptible instances, the default and only possible behavior is TERMINATE. For more information, see Set VM host maintenance policy. type SchedulingOnHostMaintenance string @@ -38930,12 +37627,6 @@ func (in *schedulingOnHostMaintenancePtr) ToSchedulingOnHostMaintenancePtrOutput return pulumi.ToOutputWithContext(ctx, in).(SchedulingOnHostMaintenancePtrOutput) } -func (in *schedulingOnHostMaintenancePtr) ToOutput(ctx context.Context) pulumix.Output[*SchedulingOnHostMaintenance] { - return pulumix.Output[*SchedulingOnHostMaintenance]{ - OutputState: in.ToSchedulingOnHostMaintenancePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the provisioning model of the instance. type SchedulingProvisioningModel string @@ -39104,12 +37795,6 @@ func (in *schedulingProvisioningModelPtr) ToSchedulingProvisioningModelPtrOutput return pulumi.ToOutputWithContext(ctx, in).(SchedulingProvisioningModelPtrOutput) } -func (in *schedulingProvisioningModelPtr) ToOutput(ctx context.Context) pulumix.Output[*SchedulingProvisioningModel] { - return pulumix.Output[*SchedulingProvisioningModel]{ - OutputState: in.ToSchedulingProvisioningModelPtrOutputWithContext(ctx).OutputState, - } -} - // Rule visibility can be one of the following: STANDARD - opaque rules. (default) PREMIUM - transparent rules. This field is only supported in Global Security Policies of type CLOUD_ARMOR. type SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigRuleVisibility string @@ -39276,12 +37961,6 @@ func (in *securityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigRuleVisib return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigRuleVisibilityPtrOutput) } -func (in *securityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigRuleVisibilityPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigRuleVisibility] { - return pulumix.Output[*SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigRuleVisibility]{ - OutputState: in.ToSecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigRuleVisibilityPtrOutputWithContext(ctx).OutputState, - } -} - type SecurityPolicyAdvancedOptionsConfigJsonParsing string const ( @@ -39449,12 +38128,6 @@ func (in *securityPolicyAdvancedOptionsConfigJsonParsingPtr) ToSecurityPolicyAdv return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyAdvancedOptionsConfigJsonParsingPtrOutput) } -func (in *securityPolicyAdvancedOptionsConfigJsonParsingPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyAdvancedOptionsConfigJsonParsing] { - return pulumix.Output[*SecurityPolicyAdvancedOptionsConfigJsonParsing]{ - OutputState: in.ToSecurityPolicyAdvancedOptionsConfigJsonParsingPtrOutputWithContext(ctx).OutputState, - } -} - type SecurityPolicyAdvancedOptionsConfigLogLevel string const ( @@ -39620,12 +38293,6 @@ func (in *securityPolicyAdvancedOptionsConfigLogLevelPtr) ToSecurityPolicyAdvanc return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyAdvancedOptionsConfigLogLevelPtrOutput) } -func (in *securityPolicyAdvancedOptionsConfigLogLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyAdvancedOptionsConfigLogLevel] { - return pulumix.Output[*SecurityPolicyAdvancedOptionsConfigLogLevel]{ - OutputState: in.ToSecurityPolicyAdvancedOptionsConfigLogLevelPtrOutputWithContext(ctx).OutputState, - } -} - type SecurityPolicyDdosProtectionConfigDdosProtection string const ( @@ -39793,12 +38460,6 @@ func (in *securityPolicyDdosProtectionConfigDdosProtectionPtr) ToSecurityPolicyD return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyDdosProtectionConfigDdosProtectionPtrOutput) } -func (in *securityPolicyDdosProtectionConfigDdosProtectionPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyDdosProtectionConfigDdosProtection] { - return pulumix.Output[*SecurityPolicyDdosProtectionConfigDdosProtection]{ - OutputState: in.ToSecurityPolicyDdosProtectionConfigDdosProtectionPtrOutputWithContext(ctx).OutputState, - } -} - // The direction in which this rule applies. This field may only be specified when versioned_expr is set to FIREWALL. type SecurityPolicyRuleDirection string @@ -39965,12 +38626,6 @@ func (in *securityPolicyRuleDirectionPtr) ToSecurityPolicyRuleDirectionPtrOutput return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyRuleDirectionPtrOutput) } -func (in *securityPolicyRuleDirectionPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyRuleDirection] { - return pulumix.Output[*SecurityPolicyRuleDirection]{ - OutputState: in.ToSecurityPolicyRuleDirectionPtrOutputWithContext(ctx).OutputState, - } -} - // Preconfigured versioned expression. If this field is specified, config must also be specified. Available preconfigured expressions along with their requirements are: SRC_IPS_V1 - must specify the corresponding src_ip_range field in config. type SecurityPolicyRuleMatcherVersionedExpr string @@ -40138,12 +38793,6 @@ func (in *securityPolicyRuleMatcherVersionedExprPtr) ToSecurityPolicyRuleMatcher return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyRuleMatcherVersionedExprPtrOutput) } -func (in *securityPolicyRuleMatcherVersionedExprPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyRuleMatcherVersionedExpr] { - return pulumix.Output[*SecurityPolicyRuleMatcherVersionedExpr]{ - OutputState: in.ToSecurityPolicyRuleMatcherVersionedExprPtrOutputWithContext(ctx).OutputState, - } -} - // The match operator for the field. type SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParamsOp string @@ -40321,12 +38970,6 @@ func (in *securityPolicyRulePreconfiguredWafConfigExclusionFieldParamsOpPtr) ToS return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParamsOpPtrOutput) } -func (in *securityPolicyRulePreconfiguredWafConfigExclusionFieldParamsOpPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParamsOp] { - return pulumix.Output[*SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParamsOp]{ - OutputState: in.ToSecurityPolicyRulePreconfiguredWafConfigExclusionFieldParamsOpPtrOutputWithContext(ctx).OutputState, - } -} - // Determines the key to enforce the rate_limit_threshold on. Possible values are: - ALL: A single rate limit threshold is applied to all the requests matching this rule. This is the default value if "enforceOnKey" is not configured. - IP: The source IP address of the request is the key. Each IP has this limit enforced separately. - HTTP_HEADER: The value of the HTTP header whose name is configured under "enforceOnKeyName". The key value is truncated to the first 128 bytes of the header value. If no such header is present in the request, the key type defaults to ALL. - XFF_IP: The first IP address (i.e. the originating client IP address) specified in the list of IPs under X-Forwarded-For HTTP header. If no such header is present or the value is not a valid IP, the key defaults to the source IP address of the request i.e. key type IP. - HTTP_COOKIE: The value of the HTTP cookie whose name is configured under "enforceOnKeyName". The key value is truncated to the first 128 bytes of the cookie value. If no such cookie is present in the request, the key type defaults to ALL. - HTTP_PATH: The URL path of the HTTP request. The key value is truncated to the first 128 bytes. - SNI: Server name indication in the TLS session of the HTTPS request. The key value is truncated to the first 128 bytes. The key type defaults to ALL on a HTTP session. - REGION_CODE: The country/region from which the request originates. type SecurityPolicyRuleRateLimitOptionsEnforceOnKey string @@ -40507,12 +39150,6 @@ func (in *securityPolicyRuleRateLimitOptionsEnforceOnKeyPtr) ToSecurityPolicyRul return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyRuleRateLimitOptionsEnforceOnKeyPtrOutput) } -func (in *securityPolicyRuleRateLimitOptionsEnforceOnKeyPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyRuleRateLimitOptionsEnforceOnKey] { - return pulumix.Output[*SecurityPolicyRuleRateLimitOptionsEnforceOnKey]{ - OutputState: in.ToSecurityPolicyRuleRateLimitOptionsEnforceOnKeyPtrOutputWithContext(ctx).OutputState, - } -} - // Determines the key to enforce the rate_limit_threshold on. Possible values are: - ALL: A single rate limit threshold is applied to all the requests matching this rule. This is the default value if "enforceOnKeyConfigs" is not configured. - IP: The source IP address of the request is the key. Each IP has this limit enforced separately. - HTTP_HEADER: The value of the HTTP header whose name is configured under "enforceOnKeyName". The key value is truncated to the first 128 bytes of the header value. If no such header is present in the request, the key type defaults to ALL. - XFF_IP: The first IP address (i.e. the originating client IP address) specified in the list of IPs under X-Forwarded-For HTTP header. If no such header is present or the value is not a valid IP, the key defaults to the source IP address of the request i.e. key type IP. - HTTP_COOKIE: The value of the HTTP cookie whose name is configured under "enforceOnKeyName". The key value is truncated to the first 128 bytes of the cookie value. If no such cookie is present in the request, the key type defaults to ALL. - HTTP_PATH: The URL path of the HTTP request. The key value is truncated to the first 128 bytes. - SNI: Server name indication in the TLS session of the HTTPS request. The key value is truncated to the first 128 bytes. The key type defaults to ALL on a HTTP session. - REGION_CODE: The country/region from which the request originates. type SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfigEnforceOnKeyType string @@ -40693,12 +39330,6 @@ func (in *securityPolicyRuleRateLimitOptionsEnforceOnKeyConfigEnforceOnKeyTypePt return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfigEnforceOnKeyTypePtrOutput) } -func (in *securityPolicyRuleRateLimitOptionsEnforceOnKeyConfigEnforceOnKeyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfigEnforceOnKeyType] { - return pulumix.Output[*SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfigEnforceOnKeyType]{ - OutputState: in.ToSecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfigEnforceOnKeyTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of the redirect action. type SecurityPolicyRuleRedirectOptionsType string @@ -40865,12 +39496,6 @@ func (in *securityPolicyRuleRedirectOptionsTypePtr) ToSecurityPolicyRuleRedirect return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyRuleRedirectOptionsTypePtrOutput) } -func (in *securityPolicyRuleRedirectOptionsTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyRuleRedirectOptionsType] { - return pulumix.Output[*SecurityPolicyRuleRedirectOptionsType]{ - OutputState: in.ToSecurityPolicyRuleRedirectOptionsTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type indicates the intended use of the security policy. - CLOUD_ARMOR: Cloud Armor backend security policies can be configured to filter incoming HTTP requests targeting backend services. They filter requests before they hit the origin servers. - CLOUD_ARMOR_EDGE: Cloud Armor edge security policies can be configured to filter incoming HTTP requests targeting backend services (including Cloud CDN-enabled) as well as backend buckets (Cloud Storage). They filter requests before the request is served from Google's cache. - CLOUD_ARMOR_INTERNAL_SERVICE: Cloud Armor internal service policies can be configured to filter HTTP requests targeting services managed by Traffic Director in a service mesh. They filter requests before the request is served from the application. - CLOUD_ARMOR_NETWORK: Cloud Armor network policies can be configured to filter packets targeting network load balancing resources such as backend services, target pools, target instances, and instances with external IPs. They filter requests before the request is served from the application. This field can be set only at resource creation time. type SecurityPolicyType string @@ -41043,12 +39668,6 @@ func (in *securityPolicyTypePtr) ToSecurityPolicyTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyTypePtrOutput) } -func (in *securityPolicyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyType] { - return pulumix.Output[*SecurityPolicyType]{ - OutputState: in.ToSecurityPolicyTypePtrOutputWithContext(ctx).OutputState, - } -} - // The base relative to which 'offset' is measured. Possible values are: - IPV4: Points to the beginning of the IPv4 header. - IPV6: Points to the beginning of the IPv6 header. - TCP: Points to the beginning of the TCP header, skipping over any IPv4 options or IPv6 extension headers. Not present for non-first fragments. - UDP: Points to the beginning of the UDP header, skipping over any IPv4 options or IPv6 extension headers. Not present for non-first fragments. required type SecurityPolicyUserDefinedFieldBase string @@ -41219,12 +39838,6 @@ func (in *securityPolicyUserDefinedFieldBasePtr) ToSecurityPolicyUserDefinedFiel return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyUserDefinedFieldBasePtrOutput) } -func (in *securityPolicyUserDefinedFieldBasePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyUserDefinedFieldBase] { - return pulumix.Output[*SecurityPolicyUserDefinedFieldBase]{ - OutputState: in.ToSecurityPolicyUserDefinedFieldBasePtrOutputWithContext(ctx).OutputState, - } -} - type ServerBindingType string const ( @@ -41394,12 +40007,6 @@ func (in *serverBindingTypePtr) ToServerBindingTypePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(ServerBindingTypePtrOutput) } -func (in *serverBindingTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ServerBindingType] { - return pulumix.Output[*ServerBindingType]{ - OutputState: in.ToServerBindingTypePtrOutputWithContext(ctx).OutputState, - } -} - // Indicates whether connections should be secured using TLS. The value of this field determines how TLS is enforced. This field can be set to one of the following: - SIMPLE Secure connections with standard TLS semantics. - MUTUAL Secure connections to the backends using mutual TLS by presenting client certificates for authentication. type ServerTlsSettingsTlsMode string @@ -41570,12 +40177,6 @@ func (in *serverTlsSettingsTlsModePtr) ToServerTlsSettingsTlsModePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(ServerTlsSettingsTlsModePtrOutput) } -func (in *serverTlsSettingsTlsModePtr) ToOutput(ctx context.Context) pulumix.Output[*ServerTlsSettingsTlsMode] { - return pulumix.Output[*ServerTlsSettingsTlsMode]{ - OutputState: in.ToServerTlsSettingsTlsModePtrOutputWithContext(ctx).OutputState, - } -} - // The connection preference of service attachment. The value can be set to ACCEPT_AUTOMATIC. An ACCEPT_AUTOMATIC service attachment is one that always accepts the connection from consumer forwarding rules. type ServiceAttachmentConnectionPreference string @@ -41744,12 +40345,6 @@ func (in *serviceAttachmentConnectionPreferencePtr) ToServiceAttachmentConnectio return pulumi.ToOutputWithContext(ctx, in).(ServiceAttachmentConnectionPreferencePtrOutput) } -func (in *serviceAttachmentConnectionPreferencePtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceAttachmentConnectionPreference] { - return pulumix.Output[*ServiceAttachmentConnectionPreference]{ - OutputState: in.ToServiceAttachmentConnectionPreferencePtrOutputWithContext(ctx).OutputState, - } -} - // Specify the encapsulation protocol and what metadata to include in incoming encapsulated packet headers. type ServiceAttachmentTunnelingConfigEncapsulationProfile string @@ -41917,12 +40512,6 @@ func (in *serviceAttachmentTunnelingConfigEncapsulationProfilePtr) ToServiceAtta return pulumi.ToOutputWithContext(ctx, in).(ServiceAttachmentTunnelingConfigEncapsulationProfilePtrOutput) } -func (in *serviceAttachmentTunnelingConfigEncapsulationProfilePtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceAttachmentTunnelingConfigEncapsulationProfile] { - return pulumix.Output[*ServiceAttachmentTunnelingConfigEncapsulationProfile]{ - OutputState: in.ToServiceAttachmentTunnelingConfigEncapsulationProfilePtrOutputWithContext(ctx).OutputState, - } -} - // How this Service Attachment will treat traffic sent to the tunnel_ip, destined for the consumer network. type ServiceAttachmentTunnelingConfigRoutingMode string @@ -42093,12 +40682,6 @@ func (in *serviceAttachmentTunnelingConfigRoutingModePtr) ToServiceAttachmentTun return pulumi.ToOutputWithContext(ctx, in).(ServiceAttachmentTunnelingConfigRoutingModePtrOutput) } -func (in *serviceAttachmentTunnelingConfigRoutingModePtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceAttachmentTunnelingConfigRoutingMode] { - return pulumix.Output[*ServiceAttachmentTunnelingConfigRoutingMode]{ - OutputState: in.ToServiceAttachmentTunnelingConfigRoutingModePtrOutputWithContext(ctx).OutputState, - } -} - // Type of sharing for this shared-reservation type ShareSettingsShareType string @@ -42276,12 +40859,6 @@ func (in *shareSettingsShareTypePtr) ToShareSettingsShareTypePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(ShareSettingsShareTypePtrOutput) } -func (in *shareSettingsShareTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ShareSettingsShareType] { - return pulumix.Output[*ShareSettingsShareType]{ - OutputState: in.ToShareSettingsShareTypePtrOutputWithContext(ctx).OutputState, - } -} - // Indicates the type of the snapshot. type SnapshotSnapshotType string @@ -42448,12 +41025,6 @@ func (in *snapshotSnapshotTypePtr) ToSnapshotSnapshotTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(SnapshotSnapshotTypePtrOutput) } -func (in *snapshotSnapshotTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SnapshotSnapshotType] { - return pulumix.Output[*SnapshotSnapshotType]{ - OutputState: in.ToSnapshotSnapshotTypePtrOutputWithContext(ctx).OutputState, - } -} - // (Optional) Specifies the type of SSL certificate, either "SELF_MANAGED" or "MANAGED". If not specified, the certificate is self-managed and the fields certificate and private_key are used. type SslCertificateType string @@ -42624,12 +41195,6 @@ func (in *sslCertificateTypePtr) ToSslCertificateTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(SslCertificateTypePtrOutput) } -func (in *sslCertificateTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SslCertificateType] { - return pulumix.Output[*SslCertificateType]{ - OutputState: in.ToSslCertificateTypePtrOutputWithContext(ctx).OutputState, - } -} - // The minimum version of SSL protocol that can be used by the clients to establish a connection with the load balancer. This can be one of TLS_1_0, TLS_1_1, TLS_1_2. type SslPolicyMinTlsVersion string @@ -42801,12 +41366,6 @@ func (in *sslPolicyMinTlsVersionPtr) ToSslPolicyMinTlsVersionPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(SslPolicyMinTlsVersionPtrOutput) } -func (in *sslPolicyMinTlsVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*SslPolicyMinTlsVersion] { - return pulumix.Output[*SslPolicyMinTlsVersion]{ - OutputState: in.ToSslPolicyMinTlsVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Profile specifies the set of SSL features that can be used by the load balancer when negotiating SSL with clients. This can be one of COMPATIBLE, MODERN, RESTRICTED, or CUSTOM. If using CUSTOM, the set of SSL features to enable must be specified in the customFeatures field. type SslPolicyProfile string @@ -42981,12 +41540,6 @@ func (in *sslPolicyProfilePtr) ToSslPolicyProfilePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(SslPolicyProfilePtrOutput) } -func (in *sslPolicyProfilePtr) ToOutput(ctx context.Context) pulumix.Output[*SslPolicyProfile] { - return pulumix.Output[*SslPolicyProfile]{ - OutputState: in.ToSslPolicyProfilePtrOutputWithContext(ctx).OutputState, - } -} - // Provisioning type of the byte capacity of the pool. type StoragePoolCapacityProvisioningType string @@ -43157,12 +41710,6 @@ func (in *storagePoolCapacityProvisioningTypePtr) ToStoragePoolCapacityProvision return pulumi.ToOutputWithContext(ctx, in).(StoragePoolCapacityProvisioningTypePtrOutput) } -func (in *storagePoolCapacityProvisioningTypePtr) ToOutput(ctx context.Context) pulumix.Output[*StoragePoolCapacityProvisioningType] { - return pulumix.Output[*StoragePoolCapacityProvisioningType]{ - OutputState: in.ToStoragePoolCapacityProvisioningTypePtrOutputWithContext(ctx).OutputState, - } -} - // Provisioning type of the performance-related parameters of the pool, such as throughput and IOPS. type StoragePoolPerformanceProvisioningType string @@ -43333,12 +41880,6 @@ func (in *storagePoolPerformanceProvisioningTypePtr) ToStoragePoolPerformancePro return pulumi.ToOutputWithContext(ctx, in).(StoragePoolPerformanceProvisioningTypePtrOutput) } -func (in *storagePoolPerformanceProvisioningTypePtr) ToOutput(ctx context.Context) pulumix.Output[*StoragePoolPerformanceProvisioningType] { - return pulumix.Output[*StoragePoolPerformanceProvisioningType]{ - OutputState: in.ToStoragePoolPerformanceProvisioningTypePtrOutputWithContext(ctx).OutputState, - } -} - // Can only be specified if VPC flow logging for this subnetwork is enabled. Sets the aggregation interval for collecting flow logs. Increasing the interval time reduces the amount of generated flow logs for long-lasting connections. Default is an interval of 5 seconds per connection. Valid values: INTERVAL_5_SEC, INTERVAL_30_SEC, INTERVAL_1_MIN, INTERVAL_5_MIN, INTERVAL_10_MIN, INTERVAL_15_MIN. type SubnetworkAggregationInterval string @@ -43513,12 +42054,6 @@ func (in *subnetworkAggregationIntervalPtr) ToSubnetworkAggregationIntervalPtrOu return pulumi.ToOutputWithContext(ctx, in).(SubnetworkAggregationIntervalPtrOutput) } -func (in *subnetworkAggregationIntervalPtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkAggregationInterval] { - return pulumix.Output[*SubnetworkAggregationInterval]{ - OutputState: in.ToSubnetworkAggregationIntervalPtrOutputWithContext(ctx).OutputState, - } -} - // The access type of IPv6 address this subnet holds. It's immutable and can only be specified during creation or the first time the subnet is updated into IPV4_IPV6 dual stack. type SubnetworkIpv6AccessType string @@ -43687,12 +42222,6 @@ func (in *subnetworkIpv6AccessTypePtr) ToSubnetworkIpv6AccessTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(SubnetworkIpv6AccessTypePtrOutput) } -func (in *subnetworkIpv6AccessTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkIpv6AccessType] { - return pulumix.Output[*SubnetworkIpv6AccessType]{ - OutputState: in.ToSubnetworkIpv6AccessTypePtrOutputWithContext(ctx).OutputState, - } -} - // Can only be specified if VPC flow logging for this subnetwork is enabled. Toggles the aggregation interval for collecting flow logs. Increasing the interval time will reduce the amount of generated flow logs for long lasting connections. Default is an interval of 5 seconds per connection. type SubnetworkLogConfigAggregationInterval string @@ -43867,12 +42396,6 @@ func (in *subnetworkLogConfigAggregationIntervalPtr) ToSubnetworkLogConfigAggreg return pulumi.ToOutputWithContext(ctx, in).(SubnetworkLogConfigAggregationIntervalPtrOutput) } -func (in *subnetworkLogConfigAggregationIntervalPtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkLogConfigAggregationInterval] { - return pulumix.Output[*SubnetworkLogConfigAggregationInterval]{ - OutputState: in.ToSubnetworkLogConfigAggregationIntervalPtrOutputWithContext(ctx).OutputState, - } -} - // Can only be specified if VPC flow logs for this subnetwork is enabled. Configures whether all, none or a subset of metadata fields should be added to the reported VPC flow logs. Default is EXCLUDE_ALL_METADATA. type SubnetworkLogConfigMetadata string @@ -44041,12 +42564,6 @@ func (in *subnetworkLogConfigMetadataPtr) ToSubnetworkLogConfigMetadataPtrOutput return pulumi.ToOutputWithContext(ctx, in).(SubnetworkLogConfigMetadataPtrOutput) } -func (in *subnetworkLogConfigMetadataPtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkLogConfigMetadata] { - return pulumix.Output[*SubnetworkLogConfigMetadata]{ - OutputState: in.ToSubnetworkLogConfigMetadataPtrOutputWithContext(ctx).OutputState, - } -} - // Can only be specified if VPC flow logging for this subnetwork is enabled. Configures whether metadata fields should be added to the reported VPC flow logs. Options are INCLUDE_ALL_METADATA, EXCLUDE_ALL_METADATA, and CUSTOM_METADATA. Default is EXCLUDE_ALL_METADATA. type SubnetworkMetadata string @@ -44213,12 +42730,6 @@ func (in *subnetworkMetadataPtr) ToSubnetworkMetadataPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(SubnetworkMetadataPtrOutput) } -func (in *subnetworkMetadataPtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkMetadata] { - return pulumix.Output[*SubnetworkMetadata]{ - OutputState: in.ToSubnetworkMetadataPtrOutputWithContext(ctx).OutputState, - } -} - // This field is for internal use. This field can be both set at resource creation time and updated using patch. type SubnetworkPrivateIpv6GoogleAccess string @@ -44390,12 +42901,6 @@ func (in *subnetworkPrivateIpv6GoogleAccessPtr) ToSubnetworkPrivateIpv6GoogleAcc return pulumi.ToOutputWithContext(ctx, in).(SubnetworkPrivateIpv6GoogleAccessPtrOutput) } -func (in *subnetworkPrivateIpv6GoogleAccessPtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkPrivateIpv6GoogleAccess] { - return pulumix.Output[*SubnetworkPrivateIpv6GoogleAccess]{ - OutputState: in.ToSubnetworkPrivateIpv6GoogleAccessPtrOutputWithContext(ctx).OutputState, - } -} - // The purpose of the resource. This field can be either PRIVATE, REGIONAL_MANAGED_PROXY, PRIVATE_SERVICE_CONNECT, or INTERNAL_HTTPS_LOAD_BALANCER. PRIVATE is the default purpose for user-created subnets or subnets that are automatically created in auto mode networks. A subnet with purpose set to REGIONAL_MANAGED_PROXY is a user-created subnetwork that is reserved for regional Envoy-based load balancers. A subnet with purpose set to PRIVATE_SERVICE_CONNECT is used to publish services using Private Service Connect. A subnet with purpose set to INTERNAL_HTTPS_LOAD_BALANCER is a proxy-only subnet that can be used only by regional internal HTTP(S) load balancers. Note that REGIONAL_MANAGED_PROXY is the preferred setting for all regional Envoy load balancers. If unspecified, the subnet purpose defaults to PRIVATE. The enableFlowLogs field isn't supported if the subnet purpose field is set to REGIONAL_MANAGED_PROXY. type SubnetworkPurpose string @@ -44585,12 +43090,6 @@ func (in *subnetworkPurposePtr) ToSubnetworkPurposePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(SubnetworkPurposePtrOutput) } -func (in *subnetworkPurposePtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkPurpose] { - return pulumix.Output[*SubnetworkPurpose]{ - OutputState: in.ToSubnetworkPurposePtrOutputWithContext(ctx).OutputState, - } -} - // The role of subnetwork. Currently, this field is only used when purpose = REGIONAL_MANAGED_PROXY. The value can be set to ACTIVE or BACKUP. An ACTIVE subnetwork is one that is currently being used for Envoy-based load balancers in a region. A BACKUP subnetwork is one that is ready to be promoted to ACTIVE or is currently draining. This field can be updated with a patch request. type SubnetworkRole string @@ -44759,12 +43258,6 @@ func (in *subnetworkRolePtr) ToSubnetworkRolePtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(SubnetworkRolePtrOutput) } -func (in *subnetworkRolePtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkRole] { - return pulumix.Output[*SubnetworkRole]{ - OutputState: in.ToSubnetworkRolePtrOutputWithContext(ctx).OutputState, - } -} - // The stack type for the subnet. If set to IPV4_ONLY, new VMs in the subnet are assigned IPv4 addresses only. If set to IPV4_IPV6, new VMs in the subnet can be assigned both IPv4 and IPv6 addresses. If not specified, IPV4_ONLY is used. This field can be both set at resource creation time and updated using patch. type SubnetworkStackType string @@ -44936,12 +43429,6 @@ func (in *subnetworkStackTypePtr) ToSubnetworkStackTypePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(SubnetworkStackTypePtrOutput) } -func (in *subnetworkStackTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkStackType] { - return pulumix.Output[*SubnetworkStackType]{ - OutputState: in.ToSubnetworkStackTypePtrOutputWithContext(ctx).OutputState, - } -} - type SubsettingPolicy string const ( @@ -45109,12 +43596,6 @@ func (in *subsettingPolicyPtr) ToSubsettingPolicyPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(SubsettingPolicyPtrOutput) } -func (in *subsettingPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*SubsettingPolicy] { - return pulumix.Output[*SubsettingPolicy]{ - OutputState: in.ToSubsettingPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how a port is selected for health checking. Can be one of the following values: USE_FIXED_PORT: Specifies a port number explicitly using the port field in the health check. Supported by backend services for pass-through load balancers and backend services for proxy load balancers. Not supported by target pools. The health check supports all backends supported by the backend service provided the backend can be health checked. For example, GCE_VM_IP network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an indirect method of specifying the health check port by referring to the backend service. Only supported by backend services for proxy load balancers. Not supported by target pools. Not supported by backend services for pass-through load balancers. Supports all backends that can be health checked; for example, GCE_VM_IP_PORT network endpoint groups and instance group backends. For GCE_VM_IP_PORT network endpoint group backends, the health check uses the port number specified for each endpoint in the network endpoint group. For instance group backends, the health check uses the port number determined by looking up the backend service's named port in the instance group's list of named ports. type TCPHealthCheckPortSpecification string @@ -45286,12 +43767,6 @@ func (in *tcphealthCheckPortSpecificationPtr) ToTCPHealthCheckPortSpecificationP return pulumi.ToOutputWithContext(ctx, in).(TCPHealthCheckPortSpecificationPtrOutput) } -func (in *tcphealthCheckPortSpecificationPtr) ToOutput(ctx context.Context) pulumix.Output[*TCPHealthCheckPortSpecification] { - return pulumix.Output[*TCPHealthCheckPortSpecification]{ - OutputState: in.ToTCPHealthCheckPortSpecificationPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type TCPHealthCheckProxyHeader string @@ -45458,12 +43933,6 @@ func (in *tcphealthCheckProxyHeaderPtr) ToTCPHealthCheckProxyHeaderPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(TCPHealthCheckProxyHeaderPtrOutput) } -func (in *tcphealthCheckProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*TCPHealthCheckProxyHeader] { - return pulumix.Output[*TCPHealthCheckProxyHeader]{ - OutputState: in.ToTCPHealthCheckProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the QUIC override policy for this TargetHttpsProxy resource. This setting determines whether the load balancer attempts to negotiate QUIC with clients. You can specify NONE, ENABLE, or DISABLE. - When quic-override is set to NONE, Google manages whether QUIC is used. - When quic-override is set to ENABLE, the load balancer uses QUIC when possible. - When quic-override is set to DISABLE, the load balancer doesn't use QUIC. - If the quic-override flag is not specified, NONE is implied. type TargetHttpsProxyQuicOverride string @@ -45635,12 +44104,6 @@ func (in *targetHttpsProxyQuicOverridePtr) ToTargetHttpsProxyQuicOverridePtrOutp return pulumi.ToOutputWithContext(ctx, in).(TargetHttpsProxyQuicOverridePtrOutput) } -func (in *targetHttpsProxyQuicOverridePtr) ToOutput(ctx context.Context) pulumix.Output[*TargetHttpsProxyQuicOverride] { - return pulumix.Output[*TargetHttpsProxyQuicOverride]{ - OutputState: in.ToTargetHttpsProxyQuicOverridePtrOutputWithContext(ctx).OutputState, - } -} - // Must have a value of NO_NAT. Protocol forwarding delivers packets while preserving the destination IP address of the forwarding rule referencing the target instance. type TargetInstanceNatPolicy string @@ -45806,12 +44269,6 @@ func (in *targetInstanceNatPolicyPtr) ToTargetInstanceNatPolicyPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(TargetInstanceNatPolicyPtrOutput) } -func (in *targetInstanceNatPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*TargetInstanceNatPolicy] { - return pulumix.Output[*TargetInstanceNatPolicy]{ - OutputState: in.ToTargetInstanceNatPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Session affinity option, must be one of the following values: NONE: Connections from the same client IP may go to any instance in the pool. CLIENT_IP: Connections from the same client IP will go to the same instance in the pool while that instance remains healthy. CLIENT_IP_PROTO: Connections from the same client IP with the same IP protocol will go to the same instance in the pool while that instance remains healthy. type TargetPoolSessionAffinity string @@ -45998,12 +44455,6 @@ func (in *targetPoolSessionAffinityPtr) ToTargetPoolSessionAffinityPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(TargetPoolSessionAffinityPtrOutput) } -func (in *targetPoolSessionAffinityPtr) ToOutput(ctx context.Context) pulumix.Output[*TargetPoolSessionAffinity] { - return pulumix.Output[*TargetPoolSessionAffinity]{ - OutputState: in.ToTargetPoolSessionAffinityPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type TargetSslProxyProxyHeader string @@ -46170,12 +44621,6 @@ func (in *targetSslProxyProxyHeaderPtr) ToTargetSslProxyProxyHeaderPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(TargetSslProxyProxyHeaderPtrOutput) } -func (in *targetSslProxyProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*TargetSslProxyProxyHeader] { - return pulumix.Output[*TargetSslProxyProxyHeader]{ - OutputState: in.ToTargetSslProxyProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type TargetTcpProxyProxyHeader string @@ -46342,12 +44787,6 @@ func (in *targetTcpProxyProxyHeaderPtr) ToTargetTcpProxyProxyHeaderPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(TargetTcpProxyProxyHeaderPtrOutput) } -func (in *targetTcpProxyProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*TargetTcpProxyProxyHeader] { - return pulumix.Output[*TargetTcpProxyProxyHeader]{ - OutputState: in.ToTargetTcpProxyProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // Defines how TLS certificates are obtained. type TlsCertificateContextCertificateSource string @@ -46518,12 +44957,6 @@ func (in *tlsCertificateContextCertificateSourcePtr) ToTlsCertificateContextCert return pulumi.ToOutputWithContext(ctx, in).(TlsCertificateContextCertificateSourcePtrOutput) } -func (in *tlsCertificateContextCertificateSourcePtr) ToOutput(ctx context.Context) pulumix.Output[*TlsCertificateContextCertificateSource] { - return pulumix.Output[*TlsCertificateContextCertificateSource]{ - OutputState: in.ToTlsCertificateContextCertificateSourcePtrOutputWithContext(ctx).OutputState, - } -} - // Defines how TLS certificates are obtained. type TlsValidationContextValidationSource string @@ -46694,12 +45127,6 @@ func (in *tlsValidationContextValidationSourcePtr) ToTlsValidationContextValidat return pulumi.ToOutputWithContext(ctx, in).(TlsValidationContextValidationSourcePtrOutput) } -func (in *tlsValidationContextValidationSourcePtr) ToOutput(ctx context.Context) pulumix.Output[*TlsValidationContextValidationSource] { - return pulumix.Output[*TlsValidationContextValidationSource]{ - OutputState: in.ToTlsValidationContextValidationSourcePtrOutputWithContext(ctx).OutputState, - } -} - // The IP family of the gateway IPs for the HA-VPN gateway interfaces. If not specified, IPV4 will be used. type VpnGatewayGatewayIpVersion string @@ -46868,12 +45295,6 @@ func (in *vpnGatewayGatewayIpVersionPtr) ToVpnGatewayGatewayIpVersionPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(VpnGatewayGatewayIpVersionPtrOutput) } -func (in *vpnGatewayGatewayIpVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*VpnGatewayGatewayIpVersion] { - return pulumix.Output[*VpnGatewayGatewayIpVersion]{ - OutputState: in.ToVpnGatewayGatewayIpVersionPtrOutputWithContext(ctx).OutputState, - } -} - // The stack type for this VPN gateway to identify the IP protocols that are enabled. Possible values are: IPV4_ONLY, IPV4_IPV6. If not specified, IPV4_ONLY will be used. type VpnGatewayStackType string @@ -47045,12 +45466,6 @@ func (in *vpnGatewayStackTypePtr) ToVpnGatewayStackTypePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(VpnGatewayStackTypePtrOutput) } -func (in *vpnGatewayStackTypePtr) ToOutput(ctx context.Context) pulumix.Output[*VpnGatewayStackType] { - return pulumix.Output[*VpnGatewayStackType]{ - OutputState: in.ToVpnGatewayStackTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AccessConfigNetworkTierInput)(nil)).Elem(), AccessConfigNetworkTier("FIXED_STANDARD")) pulumi.RegisterInputType(reflect.TypeOf((*AccessConfigNetworkTierPtrInput)(nil)).Elem(), AccessConfigNetworkTier("FIXED_STANDARD")) diff --git a/sdk/go/google/compute/beta/pulumiEnums.go b/sdk/go/google/compute/beta/pulumiEnums.go index e61b33bfe9..ce88b67e14 100644 --- a/sdk/go/google/compute/beta/pulumiEnums.go +++ b/sdk/go/google/compute/beta/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // This signifies the networking tier used for configuring this access configuration and can only take the following values: PREMIUM, STANDARD. If an AccessConfig is specified without a valid external IP address, an ephemeral IP will be created with this networkTier. If an AccessConfig with a valid external IP address is specified, it must match that of the networkTier associated with the Address resource owning that IP. @@ -185,12 +184,6 @@ func (in *accessConfigNetworkTierPtr) ToAccessConfigNetworkTierPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(AccessConfigNetworkTierPtrOutput) } -func (in *accessConfigNetworkTierPtr) ToOutput(ctx context.Context) pulumix.Output[*AccessConfigNetworkTier] { - return pulumix.Output[*AccessConfigNetworkTier]{ - OutputState: in.ToAccessConfigNetworkTierPtrOutputWithContext(ctx).OutputState, - } -} - // The type of configuration. In accessConfigs (IPv4), the default and only option is ONE_TO_ONE_NAT. In ipv6AccessConfigs, the default and only option is DIRECT_IPV6. type AccessConfigType string @@ -357,12 +350,6 @@ func (in *accessConfigTypePtr) ToAccessConfigTypePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(AccessConfigTypePtrOutput) } -func (in *accessConfigTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AccessConfigType] { - return pulumix.Output[*AccessConfigType]{ - OutputState: in.ToAccessConfigTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of address to reserve, either INTERNAL or EXTERNAL. If unspecified, defaults to EXTERNAL. type AddressAddressType string @@ -533,12 +520,6 @@ func (in *addressAddressTypePtr) ToAddressAddressTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(AddressAddressTypePtrOutput) } -func (in *addressAddressTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AddressAddressType] { - return pulumix.Output[*AddressAddressType]{ - OutputState: in.ToAddressAddressTypePtrOutputWithContext(ctx).OutputState, - } -} - // The IP version that will be used by this address. Valid options are IPV4 or IPV6. type AddressIpVersion string @@ -707,12 +688,6 @@ func (in *addressIpVersionPtr) ToAddressIpVersionPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(AddressIpVersionPtrOutput) } -func (in *addressIpVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*AddressIpVersion] { - return pulumix.Output[*AddressIpVersion]{ - OutputState: in.ToAddressIpVersionPtrOutputWithContext(ctx).OutputState, - } -} - // The endpoint type of this address, which should be VM or NETLB. This is used for deciding which type of endpoint this address can be used after the external IPv6 address reservation. type AddressIpv6EndpointType string @@ -881,12 +856,6 @@ func (in *addressIpv6EndpointTypePtr) ToAddressIpv6EndpointTypePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(AddressIpv6EndpointTypePtrOutput) } -func (in *addressIpv6EndpointTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AddressIpv6EndpointType] { - return pulumix.Output[*AddressIpv6EndpointType]{ - OutputState: in.ToAddressIpv6EndpointTypePtrOutputWithContext(ctx).OutputState, - } -} - // This signifies the networking tier used for configuring this address and can only take the following values: PREMIUM or STANDARD. Internal IP addresses are always Premium Tier; global external IP addresses are always Premium Tier; regional external IP addresses can be either Standard or Premium Tier. If this field is not specified, it is assumed to be PREMIUM. type AddressNetworkTier string @@ -1061,12 +1030,6 @@ func (in *addressNetworkTierPtr) ToAddressNetworkTierPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(AddressNetworkTierPtrOutput) } -func (in *addressNetworkTierPtr) ToOutput(ctx context.Context) pulumix.Output[*AddressNetworkTier] { - return pulumix.Output[*AddressNetworkTier]{ - OutputState: in.ToAddressNetworkTierPtrOutputWithContext(ctx).OutputState, - } -} - // The purpose of this resource, which can be one of the following values: - GCE_ENDPOINT for addresses that are used by VM instances, alias IP ranges, load balancers, and similar resources. - DNS_RESOLVER for a DNS resolver address in a subnetwork for a Cloud DNS inbound forwarder IP addresses (regional internal IP address in a subnet of a VPC network) - VPC_PEERING for global internal IP addresses used for private services access allocated ranges. - NAT_AUTO for the regional external IP addresses used by Cloud NAT when allocating addresses using automatic NAT IP address allocation. - IPSEC_INTERCONNECT for addresses created from a private IP range that are reserved for a VLAN attachment in an *HA VPN over Cloud Interconnect* configuration. These addresses are regional resources. - `SHARED_LOADBALANCER_VIP` for an internal IP address that is assigned to multiple internal forwarding rules. - `PRIVATE_SERVICE_CONNECT` for a private network address that is used to configure Private Service Connect. Only global internal addresses can use this purpose. type AddressPurpose string @@ -1253,12 +1216,6 @@ func (in *addressPurposePtr) ToAddressPurposePtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(AddressPurposePtrOutput) } -func (in *addressPurposePtr) ToOutput(ctx context.Context) pulumix.Output[*AddressPurpose] { - return pulumix.Output[*AddressPurpose]{ - OutputState: in.ToAddressPurposePtrOutputWithContext(ctx).OutputState, - } -} - // The VM family that all instances scheduled against this reservation must belong to. type AllocationAggregateReservationVmFamily string @@ -1427,12 +1384,6 @@ func (in *allocationAggregateReservationVmFamilyPtr) ToAllocationAggregateReserv return pulumi.ToOutputWithContext(ctx, in).(AllocationAggregateReservationVmFamilyPtrOutput) } -func (in *allocationAggregateReservationVmFamilyPtr) ToOutput(ctx context.Context) pulumix.Output[*AllocationAggregateReservationVmFamily] { - return pulumix.Output[*AllocationAggregateReservationVmFamily]{ - OutputState: in.ToAllocationAggregateReservationVmFamilyPtrOutputWithContext(ctx).OutputState, - } -} - // The workload type of the instances that will target this reservation. type AllocationAggregateReservationWorkloadType string @@ -1603,12 +1554,6 @@ func (in *allocationAggregateReservationWorkloadTypePtr) ToAllocationAggregateRe return pulumi.ToOutputWithContext(ctx, in).(AllocationAggregateReservationWorkloadTypePtrOutput) } -func (in *allocationAggregateReservationWorkloadTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AllocationAggregateReservationWorkloadType] { - return pulumix.Output[*AllocationAggregateReservationWorkloadType]{ - OutputState: in.ToAllocationAggregateReservationWorkloadTypePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. For performance characteristics of SCSI over NVMe, see Local SSD performance. type AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterface string @@ -1775,12 +1720,6 @@ func (in *allocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk return pulumi.ToOutputWithContext(ctx, in).(AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterfacePtrOutput) } -func (in *allocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterfacePtr) ToOutput(ctx context.Context) pulumix.Output[*AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterface] { - return pulumix.Output[*AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterface]{ - OutputState: in.ToAllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterfacePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the frequency of planned maintenance events. The accepted values are: `PERIODIC`. type AllocationSpecificSKUAllocationReservedInstancePropertiesMaintenanceInterval string @@ -1952,12 +1891,6 @@ func (in *allocationSpecificSKUAllocationReservedInstancePropertiesMaintenanceIn return pulumi.ToOutputWithContext(ctx, in).(AllocationSpecificSKUAllocationReservedInstancePropertiesMaintenanceIntervalPtrOutput) } -func (in *allocationSpecificSKUAllocationReservedInstancePropertiesMaintenanceIntervalPtr) ToOutput(ctx context.Context) pulumix.Output[*AllocationSpecificSKUAllocationReservedInstancePropertiesMaintenanceInterval] { - return pulumix.Output[*AllocationSpecificSKUAllocationReservedInstancePropertiesMaintenanceInterval]{ - OutputState: in.ToAllocationSpecificSKUAllocationReservedInstancePropertiesMaintenanceIntervalPtrOutputWithContext(ctx).OutputState, - } -} - // The architecture of the attached disk. Valid values are arm64 or x86_64. type AttachedDiskInitializeParamsArchitecture string @@ -2129,12 +2062,6 @@ func (in *attachedDiskInitializeParamsArchitecturePtr) ToAttachedDiskInitializeP return pulumi.ToOutputWithContext(ctx, in).(AttachedDiskInitializeParamsArchitecturePtrOutput) } -func (in *attachedDiskInitializeParamsArchitecturePtr) ToOutput(ctx context.Context) pulumix.Output[*AttachedDiskInitializeParamsArchitecture] { - return pulumix.Output[*AttachedDiskInitializeParamsArchitecture]{ - OutputState: in.ToAttachedDiskInitializeParamsArchitecturePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies which action to take on instance update with this disk. Default is to use the existing disk. type AttachedDiskInitializeParamsOnUpdateAction string @@ -2306,12 +2233,6 @@ func (in *attachedDiskInitializeParamsOnUpdateActionPtr) ToAttachedDiskInitializ return pulumi.ToOutputWithContext(ctx, in).(AttachedDiskInitializeParamsOnUpdateActionPtrOutput) } -func (in *attachedDiskInitializeParamsOnUpdateActionPtr) ToOutput(ctx context.Context) pulumix.Output[*AttachedDiskInitializeParamsOnUpdateAction] { - return pulumix.Output[*AttachedDiskInitializeParamsOnUpdateAction]{ - OutputState: in.ToAttachedDiskInitializeParamsOnUpdateActionPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. For most machine types, the default is SCSI. Local SSDs can use either NVME or SCSI. In certain configurations, persistent disks can use NVMe. For more information, see About persistent disks. type AttachedDiskInterface string @@ -2478,12 +2399,6 @@ func (in *attachedDiskInterfacePtr) ToAttachedDiskInterfacePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AttachedDiskInterfacePtrOutput) } -func (in *attachedDiskInterfacePtr) ToOutput(ctx context.Context) pulumix.Output[*AttachedDiskInterface] { - return pulumix.Output[*AttachedDiskInterface]{ - OutputState: in.ToAttachedDiskInterfacePtrOutputWithContext(ctx).OutputState, - } -} - // The mode in which to attach this disk, either READ_WRITE or READ_ONLY. If not specified, the default is to attach the disk in READ_WRITE mode. type AttachedDiskMode string @@ -2652,12 +2567,6 @@ func (in *attachedDiskModePtr) ToAttachedDiskModePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(AttachedDiskModePtrOutput) } -func (in *attachedDiskModePtr) ToOutput(ctx context.Context) pulumix.Output[*AttachedDiskMode] { - return pulumix.Output[*AttachedDiskMode]{ - OutputState: in.ToAttachedDiskModePtrOutputWithContext(ctx).OutputState, - } -} - // For LocalSSD disks on VM Instances in STOPPED or SUSPENDED state, this field is set to PRESERVED if the LocalSSD data has been saved to a persistent location by customer request. (see the discard_local_ssd option on Stop/Suspend). Read-only in the api. type AttachedDiskSavedState string @@ -2826,12 +2735,6 @@ func (in *attachedDiskSavedStatePtr) ToAttachedDiskSavedStatePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(AttachedDiskSavedStatePtrOutput) } -func (in *attachedDiskSavedStatePtr) ToOutput(ctx context.Context) pulumix.Output[*AttachedDiskSavedState] { - return pulumix.Output[*AttachedDiskSavedState]{ - OutputState: in.ToAttachedDiskSavedStatePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of the disk, either SCRATCH or PERSISTENT. If not specified, the default is PERSISTENT. type AttachedDiskType string @@ -2998,12 +2901,6 @@ func (in *attachedDiskTypePtr) ToAttachedDiskTypePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(AttachedDiskTypePtrOutput) } -func (in *attachedDiskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AttachedDiskType] { - return pulumix.Output[*AttachedDiskType]{ - OutputState: in.ToAttachedDiskTypePtrOutputWithContext(ctx).OutputState, - } -} - // The log type that this config enables. type AuditLogConfigLogType string @@ -3178,12 +3075,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // This is deprecated and has no effect. Do not use. type AuthorizationLoggingOptionsPermissionType string @@ -3361,12 +3252,6 @@ func (in *authorizationLoggingOptionsPermissionTypePtr) ToAuthorizationLoggingOp return pulumi.ToOutputWithContext(ctx, in).(AuthorizationLoggingOptionsPermissionTypePtrOutput) } -func (in *authorizationLoggingOptionsPermissionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuthorizationLoggingOptionsPermissionType] { - return pulumix.Output[*AuthorizationLoggingOptionsPermissionType]{ - OutputState: in.ToAuthorizationLoggingOptionsPermissionTypePtrOutputWithContext(ctx).OutputState, - } -} - // Indicates whether predictive autoscaling based on CPU metric is enabled. Valid values are: * NONE (default). No predictive method is used. The autoscaler scales the group to meet current demand based on real-time metrics. * OPTIMIZE_AVAILABILITY. Predictive autoscaling improves availability by monitoring daily and weekly load patterns and scaling out ahead of anticipated demand. type AutoscalingPolicyCpuUtilizationPredictiveMethod string @@ -3537,12 +3422,6 @@ func (in *autoscalingPolicyCpuUtilizationPredictiveMethodPtr) ToAutoscalingPolic return pulumi.ToOutputWithContext(ctx, in).(AutoscalingPolicyCpuUtilizationPredictiveMethodPtrOutput) } -func (in *autoscalingPolicyCpuUtilizationPredictiveMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*AutoscalingPolicyCpuUtilizationPredictiveMethod] { - return pulumix.Output[*AutoscalingPolicyCpuUtilizationPredictiveMethod]{ - OutputState: in.ToAutoscalingPolicyCpuUtilizationPredictiveMethodPtrOutputWithContext(ctx).OutputState, - } -} - // Defines how target utilization value is expressed for a Stackdriver Monitoring metric. Either GAUGE, DELTA_PER_SECOND, or DELTA_PER_MINUTE. type AutoscalingPolicyCustomMetricUtilizationUtilizationTargetType string @@ -3714,12 +3593,6 @@ func (in *autoscalingPolicyCustomMetricUtilizationUtilizationTargetTypePtr) ToAu return pulumi.ToOutputWithContext(ctx, in).(AutoscalingPolicyCustomMetricUtilizationUtilizationTargetTypePtrOutput) } -func (in *autoscalingPolicyCustomMetricUtilizationUtilizationTargetTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AutoscalingPolicyCustomMetricUtilizationUtilizationTargetType] { - return pulumix.Output[*AutoscalingPolicyCustomMetricUtilizationUtilizationTargetType]{ - OutputState: in.ToAutoscalingPolicyCustomMetricUtilizationUtilizationTargetTypePtrOutputWithContext(ctx).OutputState, - } -} - // Defines the operating mode for this policy. The following modes are available: - OFF: Disables the autoscaler but maintains its configuration. - ONLY_SCALE_OUT: Restricts the autoscaler to add VM instances only. - ON: Enables all autoscaler activities according to its policy. For more information, see "Turning off or restricting an autoscaler" type AutoscalingPolicyMode string @@ -3894,12 +3767,6 @@ func (in *autoscalingPolicyModePtr) ToAutoscalingPolicyModePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AutoscalingPolicyModePtrOutput) } -func (in *autoscalingPolicyModePtr) ToOutput(ctx context.Context) pulumix.Output[*AutoscalingPolicyMode] { - return pulumix.Output[*AutoscalingPolicyMode]{ - OutputState: in.ToAutoscalingPolicyModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how to determine whether the backend of a load balancer can handle additional traffic or is fully loaded. For usage guidelines, see Connection balancing mode. Backends must use compatible balancing modes. For more information, see Supported balancing modes and target capacity settings and Restrictions and guidance for instance groups. Note: Currently, if you use the API to configure incompatible balancing modes, the configuration might be accepted even though it has no impact and is ignored. Specifically, Backend.maxUtilization is ignored when Backend.balancingMode is RATE. In the future, this incompatible combination will be rejected. type BackendBalancingMode string @@ -4071,12 +3938,6 @@ func (in *backendBalancingModePtr) ToBackendBalancingModePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(BackendBalancingModePtrOutput) } -func (in *backendBalancingModePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendBalancingMode] { - return pulumix.Output[*BackendBalancingMode]{ - OutputState: in.ToBackendBalancingModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the cache setting for all responses from this backend. The possible values are: USE_ORIGIN_HEADERS Requires the origin to set valid caching headers to cache content. Responses without these headers will not be cached at Google's edge, and will require a full trip to the origin on every request, potentially impacting performance and increasing load on the origin server. FORCE_CACHE_ALL Cache all content, ignoring any "private", "no-store" or "no-cache" directives in Cache-Control response headers. Warning: this may result in Cloud CDN caching private, per-user (user identifiable) content. CACHE_ALL_STATIC Automatically cache static content, including common image formats, media (video and audio), and web assets (JavaScript and CSS). Requests and responses that are marked as uncacheable, as well as dynamic content (including HTML), will not be cached. type BackendBucketCdnPolicyCacheMode string @@ -4250,12 +4111,6 @@ func (in *backendBucketCdnPolicyCacheModePtr) ToBackendBucketCdnPolicyCacheModeP return pulumi.ToOutputWithContext(ctx, in).(BackendBucketCdnPolicyCacheModePtrOutput) } -func (in *backendBucketCdnPolicyCacheModePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendBucketCdnPolicyCacheMode] { - return pulumix.Output[*BackendBucketCdnPolicyCacheMode]{ - OutputState: in.ToBackendBucketCdnPolicyCacheModePtrOutputWithContext(ctx).OutputState, - } -} - // Compress text responses using Brotli or gzip compression, based on the client's Accept-Encoding header. type BackendBucketCompressionMode string @@ -4424,12 +4279,6 @@ func (in *backendBucketCompressionModePtr) ToBackendBucketCompressionModePtrOutp return pulumi.ToOutputWithContext(ctx, in).(BackendBucketCompressionModePtrOutput) } -func (in *backendBucketCompressionModePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendBucketCompressionMode] { - return pulumix.Output[*BackendBucketCompressionMode]{ - OutputState: in.ToBackendBucketCompressionModePtrOutputWithContext(ctx).OutputState, - } -} - // This field indicates whether this backend should be fully utilized before sending traffic to backends with default preference. The possible values are: - PREFERRED: Backends with this preference level will be filled up to their capacity limits first, based on RTT. - DEFAULT: If preferred backends don't have enough capacity, backends in this layer would be used and traffic would be assigned based on the load balancing algorithm you use. This is the default type BackendPreference string @@ -4601,12 +4450,6 @@ func (in *backendPreferencePtr) ToBackendPreferencePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(BackendPreferencePtrOutput) } -func (in *backendPreferencePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendPreference] { - return pulumix.Output[*BackendPreference]{ - OutputState: in.ToBackendPreferencePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the cache setting for all responses from this backend. The possible values are: USE_ORIGIN_HEADERS Requires the origin to set valid caching headers to cache content. Responses without these headers will not be cached at Google's edge, and will require a full trip to the origin on every request, potentially impacting performance and increasing load on the origin server. FORCE_CACHE_ALL Cache all content, ignoring any "private", "no-store" or "no-cache" directives in Cache-Control response headers. Warning: this may result in Cloud CDN caching private, per-user (user identifiable) content. CACHE_ALL_STATIC Automatically cache static content, including common image formats, media (video and audio), and web assets (JavaScript and CSS). Requests and responses that are marked as uncacheable, as well as dynamic content (including HTML), will not be cached. type BackendServiceCdnPolicyCacheMode string @@ -4780,12 +4623,6 @@ func (in *backendServiceCdnPolicyCacheModePtr) ToBackendServiceCdnPolicyCacheMod return pulumi.ToOutputWithContext(ctx, in).(BackendServiceCdnPolicyCacheModePtrOutput) } -func (in *backendServiceCdnPolicyCacheModePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceCdnPolicyCacheMode] { - return pulumix.Output[*BackendServiceCdnPolicyCacheMode]{ - OutputState: in.ToBackendServiceCdnPolicyCacheModePtrOutputWithContext(ctx).OutputState, - } -} - // Compress text responses using Brotli or gzip compression, based on the client's Accept-Encoding header. type BackendServiceCompressionMode string @@ -4954,12 +4791,6 @@ func (in *backendServiceCompressionModePtr) ToBackendServiceCompressionModePtrOu return pulumi.ToOutputWithContext(ctx, in).(BackendServiceCompressionModePtrOutput) } -func (in *backendServiceCompressionModePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceCompressionMode] { - return pulumix.Output[*BackendServiceCompressionMode]{ - OutputState: in.ToBackendServiceCompressionModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies connection persistence when backends are unhealthy. The default value is DEFAULT_FOR_PROTOCOL. If set to DEFAULT_FOR_PROTOCOL, the existing connections persist on unhealthy backends only for connection-oriented protocols (TCP and SCTP) and only if the Tracking Mode is PER_CONNECTION (default tracking mode) or the Session Affinity is configured for 5-tuple. They do not persist for UDP. If set to NEVER_PERSIST, after a backend becomes unhealthy, the existing connections on the unhealthy backend are never persisted on the unhealthy backend. They are always diverted to newly selected healthy backends (unless all backends are unhealthy). If set to ALWAYS_PERSIST, existing connections always persist on unhealthy backends regardless of protocol and session affinity. It is generally not recommended to use this mode overriding the default. For more details, see [Connection Persistence for Network Load Balancing](https://cloud.google.com/load-balancing/docs/network/networklb-backend-service#connection-persistence) and [Connection Persistence for Internal TCP/UDP Load Balancing](https://cloud.google.com/load-balancing/docs/internal#connection-persistence). type BackendServiceConnectionTrackingPolicyConnectionPersistenceOnUnhealthyBackends string @@ -5128,12 +4959,6 @@ func (in *backendServiceConnectionTrackingPolicyConnectionPersistenceOnUnhealthy return pulumi.ToOutputWithContext(ctx, in).(BackendServiceConnectionTrackingPolicyConnectionPersistenceOnUnhealthyBackendsPtrOutput) } -func (in *backendServiceConnectionTrackingPolicyConnectionPersistenceOnUnhealthyBackendsPtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceConnectionTrackingPolicyConnectionPersistenceOnUnhealthyBackends] { - return pulumix.Output[*BackendServiceConnectionTrackingPolicyConnectionPersistenceOnUnhealthyBackends]{ - OutputState: in.ToBackendServiceConnectionTrackingPolicyConnectionPersistenceOnUnhealthyBackendsPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the key used for connection tracking. There are two options: - PER_CONNECTION: This is the default mode. The Connection Tracking is performed as per the Connection Key (default Hash Method) for the specific protocol. - PER_SESSION: The Connection Tracking is performed as per the configured Session Affinity. It matches the configured Session Affinity. For more details, see [Tracking Mode for Network Load Balancing](https://cloud.google.com/load-balancing/docs/network/networklb-backend-service#tracking-mode) and [Tracking Mode for Internal TCP/UDP Load Balancing](https://cloud.google.com/load-balancing/docs/internal#tracking-mode). type BackendServiceConnectionTrackingPolicyTrackingMode string @@ -5302,12 +5127,6 @@ func (in *backendServiceConnectionTrackingPolicyTrackingModePtr) ToBackendServic return pulumi.ToOutputWithContext(ctx, in).(BackendServiceConnectionTrackingPolicyTrackingModePtrOutput) } -func (in *backendServiceConnectionTrackingPolicyTrackingModePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceConnectionTrackingPolicyTrackingMode] { - return pulumix.Output[*BackendServiceConnectionTrackingPolicyTrackingMode]{ - OutputState: in.ToBackendServiceConnectionTrackingPolicyTrackingModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies a preference for traffic sent from the proxy to the backend (or from the client to the backend for proxyless gRPC). The possible values are: - IPV4_ONLY: Only send IPv4 traffic to the backends of the backend service (Instance Group, Managed Instance Group, Network Endpoint Group), regardless of traffic from the client to the proxy. Only IPv4 health checks are used to check the health of the backends. This is the default setting. - PREFER_IPV6: Prioritize the connection to the endpoint's IPv6 address over its IPv4 address (provided there is a healthy IPv6 address). - IPV6_ONLY: Only send IPv6 traffic to the backends of the backend service (Instance Group, Managed Instance Group, Network Endpoint Group), regardless of traffic from the client to the proxy. Only IPv6 health checks are used to check the health of the backends. This field is applicable to either: - Advanced Global External HTTPS Load Balancing (load balancing scheme EXTERNAL_MANAGED), - Regional External HTTPS Load Balancing, - Internal TCP Proxy (load balancing scheme INTERNAL_MANAGED), - Regional Internal HTTPS Load Balancing (load balancing scheme INTERNAL_MANAGED), - Traffic Director with Envoy proxies and proxyless gRPC (load balancing scheme INTERNAL_SELF_MANAGED). type BackendServiceIpAddressSelectionPolicy string @@ -5482,12 +5301,6 @@ func (in *backendServiceIpAddressSelectionPolicyPtr) ToBackendServiceIpAddressSe return pulumi.ToOutputWithContext(ctx, in).(BackendServiceIpAddressSelectionPolicyPtrOutput) } -func (in *backendServiceIpAddressSelectionPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceIpAddressSelectionPolicy] { - return pulumix.Output[*BackendServiceIpAddressSelectionPolicy]{ - OutputState: in.ToBackendServiceIpAddressSelectionPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the load balancer type. A backend service created for one type of load balancer cannot be used with another. For more information, refer to Choosing a load balancer. type BackendServiceLoadBalancingScheme string @@ -5667,12 +5480,6 @@ func (in *backendServiceLoadBalancingSchemePtr) ToBackendServiceLoadBalancingSch return pulumi.ToOutputWithContext(ctx, in).(BackendServiceLoadBalancingSchemePtrOutput) } -func (in *backendServiceLoadBalancingSchemePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceLoadBalancingScheme] { - return pulumix.Output[*BackendServiceLoadBalancingScheme]{ - OutputState: in.ToBackendServiceLoadBalancingSchemePtrOutputWithContext(ctx).OutputState, - } -} - // The load balancing algorithm used within the scope of the locality. The possible values are: - ROUND_ROBIN: This is a simple policy in which each healthy backend is selected in round robin order. This is the default. - LEAST_REQUEST: An O(1) algorithm which selects two random healthy hosts and picks the host which has fewer active requests. - RING_HASH: The ring/modulo hash load balancer implements consistent hashing to backends. The algorithm has the property that the addition/removal of a host from a set of N hosts only affects 1/N of the requests. - RANDOM: The load balancer selects a random healthy host. - ORIGINAL_DESTINATION: Backend host is selected based on the client connection metadata, i.e., connections are opened to the same address as the destination address of the incoming connection before the connection was redirected to the load balancer. - MAGLEV: used as a drop in replacement for the ring hash load balancer. Maglev is not as stable as ring hash but has faster table lookup build times and host selection times. For more information about Maglev, see https://ai.google/research/pubs/pub44824 This field is applicable to either: - A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2, and load_balancing_scheme set to INTERNAL_MANAGED. - A global backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED, INTERNAL_MANAGED, or EXTERNAL_MANAGED. If sessionAffinity is not NONE, and this field is not set to MAGLEV or RING_HASH, session affinity settings will not take effect. Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced by a URL map that is bound to target gRPC proxy that has validateForProxyless field set to true. type BackendServiceLocalityLbPolicy string @@ -5858,12 +5665,6 @@ func (in *backendServiceLocalityLbPolicyPtr) ToBackendServiceLocalityLbPolicyPtr return pulumi.ToOutputWithContext(ctx, in).(BackendServiceLocalityLbPolicyPtrOutput) } -func (in *backendServiceLocalityLbPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceLocalityLbPolicy] { - return pulumix.Output[*BackendServiceLocalityLbPolicy]{ - OutputState: in.ToBackendServiceLocalityLbPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // The name of a locality load-balancing policy. Valid values include ROUND_ROBIN and, for Java clients, LEAST_REQUEST. For information about these values, see the description of localityLbPolicy. Do not specify the same policy more than once for a backend. If you do, the configuration is rejected. type BackendServiceLocalityLoadBalancingPolicyConfigPolicyName string @@ -6049,12 +5850,6 @@ func (in *backendServiceLocalityLoadBalancingPolicyConfigPolicyNamePtr) ToBacken return pulumi.ToOutputWithContext(ctx, in).(BackendServiceLocalityLoadBalancingPolicyConfigPolicyNamePtrOutput) } -func (in *backendServiceLocalityLoadBalancingPolicyConfigPolicyNamePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceLocalityLoadBalancingPolicyConfigPolicyName] { - return pulumix.Output[*BackendServiceLocalityLoadBalancingPolicyConfigPolicyName]{ - OutputState: in.ToBackendServiceLocalityLoadBalancingPolicyConfigPolicyNamePtrOutputWithContext(ctx).OutputState, - } -} - // This field can only be specified if logging is enabled for this backend service. Configures whether all, none or a subset of optional fields should be added to the reported logs. One of [INCLUDE_ALL_OPTIONAL, EXCLUDE_ALL_OPTIONAL, CUSTOM]. Default is EXCLUDE_ALL_OPTIONAL. type BackendServiceLogConfigOptionalMode string @@ -6226,12 +6021,6 @@ func (in *backendServiceLogConfigOptionalModePtr) ToBackendServiceLogConfigOptio return pulumi.ToOutputWithContext(ctx, in).(BackendServiceLogConfigOptionalModePtrOutput) } -func (in *backendServiceLogConfigOptionalModePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceLogConfigOptionalMode] { - return pulumix.Output[*BackendServiceLogConfigOptionalMode]{ - OutputState: in.ToBackendServiceLogConfigOptionalModePtrOutputWithContext(ctx).OutputState, - } -} - // The protocol this BackendService uses to communicate with backends. Possible values are HTTP, HTTPS, HTTP2, TCP, SSL, UDP or GRPC. depending on the chosen load balancer or Traffic Director configuration. Refer to the documentation for the load balancers or for Traffic Director for more information. Must be set to GRPC when the backend service is referenced by a URL map that is bound to target gRPC proxy. type BackendServiceProtocol string @@ -6416,12 +6205,6 @@ func (in *backendServiceProtocolPtr) ToBackendServiceProtocolPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(BackendServiceProtocolPtrOutput) } -func (in *backendServiceProtocolPtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceProtocol] { - return pulumix.Output[*BackendServiceProtocol]{ - OutputState: in.ToBackendServiceProtocolPtrOutputWithContext(ctx).OutputState, - } -} - // Type of session affinity to use. The default is NONE. Only NONE and HEADER_FIELD are supported when the backend service is referenced by a URL map that is bound to target gRPC proxy that has validateForProxyless field set to true. For more details, see: [Session Affinity](https://cloud.google.com/load-balancing/docs/backend-service#session_affinity). type BackendServiceSessionAffinity string @@ -6608,12 +6391,6 @@ func (in *backendServiceSessionAffinityPtr) ToBackendServiceSessionAffinityPtrOu return pulumi.ToOutputWithContext(ctx, in).(BackendServiceSessionAffinityPtrOutput) } -func (in *backendServiceSessionAffinityPtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceSessionAffinity] { - return pulumix.Output[*BackendServiceSessionAffinity]{ - OutputState: in.ToBackendServiceSessionAffinityPtrOutputWithContext(ctx).OutputState, - } -} - // This is deprecated and has no effect. Do not use. type ConditionIam string @@ -6800,12 +6577,6 @@ func (in *conditionIamPtr) ToConditionIamPtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(ConditionIamPtrOutput) } -func (in *conditionIamPtr) ToOutput(ctx context.Context) pulumix.Output[*ConditionIam] { - return pulumix.Output[*ConditionIam]{ - OutputState: in.ToConditionIamPtrOutputWithContext(ctx).OutputState, - } -} - // This is deprecated and has no effect. Do not use. type ConditionOp string @@ -6986,12 +6757,6 @@ func (in *conditionOpPtr) ToConditionOpPtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(ConditionOpPtrOutput) } -func (in *conditionOpPtr) ToOutput(ctx context.Context) pulumix.Output[*ConditionOp] { - return pulumix.Output[*ConditionOp]{ - OutputState: in.ToConditionOpPtrOutputWithContext(ctx).OutputState, - } -} - // This is deprecated and has no effect. Do not use. type ConditionSys string @@ -7169,12 +6934,6 @@ func (in *conditionSysPtr) ToConditionSysPtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(ConditionSysPtrOutput) } -func (in *conditionSysPtr) ToOutput(ctx context.Context) pulumix.Output[*ConditionSys] { - return pulumix.Output[*ConditionSys]{ - OutputState: in.ToConditionSysPtrOutputWithContext(ctx).OutputState, - } -} - // Defines the type of technology used by the confidential instance. type ConfidentialInstanceConfigConfidentialInstanceType string @@ -7346,12 +7105,6 @@ func (in *confidentialInstanceConfigConfidentialInstanceTypePtr) ToConfidentialI return pulumi.ToOutputWithContext(ctx, in).(ConfidentialInstanceConfigConfidentialInstanceTypePtrOutput) } -func (in *confidentialInstanceConfigConfidentialInstanceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ConfidentialInstanceConfigConfidentialInstanceType] { - return pulumix.Output[*ConfidentialInstanceConfigConfidentialInstanceType]{ - OutputState: in.ToConfidentialInstanceConfigConfidentialInstanceTypePtrOutputWithContext(ctx).OutputState, - } -} - // The deprecation state of this resource. This can be ACTIVE, DEPRECATED, OBSOLETE, or DELETED. Operations which communicate the end of life date for an image, can use ACTIVE. Operations which create a new resource using a DEPRECATED resource will return successfully, but with a warning indicating the deprecated resource and recommending its replacement. Operations which use OBSOLETE or DELETED resources will be rejected and result in an error. type DeprecationStatusState string @@ -7522,12 +7275,6 @@ func (in *deprecationStatusStatePtr) ToDeprecationStatusStatePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(DeprecationStatusStatePtrOutput) } -func (in *deprecationStatusStatePtr) ToOutput(ctx context.Context) pulumix.Output[*DeprecationStatusState] { - return pulumix.Output[*DeprecationStatusState]{ - OutputState: in.ToDeprecationStatusStatePtrOutputWithContext(ctx).OutputState, - } -} - // The architecture of the disk. Valid values are ARM64 or X86_64. type DiskArchitecture string @@ -7699,12 +7446,6 @@ func (in *diskArchitecturePtr) ToDiskArchitecturePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(DiskArchitecturePtrOutput) } -func (in *diskArchitecturePtr) ToOutput(ctx context.Context) pulumix.Output[*DiskArchitecture] { - return pulumix.Output[*DiskArchitecture]{ - OutputState: in.ToDiskArchitecturePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies whether to include the disk and what image to use. Possible values are: - source-image: to use the same image that was used to create the source instance's corresponding disk. Applicable to the boot disk and additional read-write disks. - source-image-family: to use the same image family that was used to create the source instance's corresponding disk. Applicable to the boot disk and additional read-write disks. - custom-image: to use a user-provided image url for disk creation. Applicable to the boot disk and additional read-write disks. - attach-read-only: to attach a read-only disk. Applicable to read-only disks. - do-not-include: to exclude a disk from the template. Applicable to additional read-write disks, local SSDs, and read-only disks. type DiskInstantiationConfigInstantiateFrom string @@ -7888,12 +7629,6 @@ func (in *diskInstantiationConfigInstantiateFromPtr) ToDiskInstantiationConfigIn return pulumi.ToOutputWithContext(ctx, in).(DiskInstantiationConfigInstantiateFromPtrOutput) } -func (in *diskInstantiationConfigInstantiateFromPtr) ToOutput(ctx context.Context) pulumix.Output[*DiskInstantiationConfigInstantiateFrom] { - return pulumix.Output[*DiskInstantiationConfigInstantiateFrom]{ - OutputState: in.ToDiskInstantiationConfigInstantiateFromPtrOutputWithContext(ctx).OutputState, - } -} - // [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. type DiskInterface string @@ -8062,12 +7797,6 @@ func (in *diskInterfacePtr) ToDiskInterfacePtrOutputWithContext(ctx context.Cont return pulumi.ToOutputWithContext(ctx, in).(DiskInterfacePtrOutput) } -func (in *diskInterfacePtr) ToOutput(ctx context.Context) pulumix.Output[*DiskInterface] { - return pulumix.Output[*DiskInterface]{ - OutputState: in.ToDiskInterfacePtrOutputWithContext(ctx).OutputState, - } -} - // [Deprecated] Storage type of the persistent disk. type DiskStorageType string @@ -8234,12 +7963,6 @@ func (in *diskStorageTypePtr) ToDiskStorageTypePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(DiskStorageTypePtrOutput) } -func (in *diskStorageTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DiskStorageType] { - return pulumix.Output[*DiskStorageType]{ - OutputState: in.ToDiskStorageTypePtrOutputWithContext(ctx).OutputState, - } -} - // The distribution shape to which the group converges either proactively or on resize events (depending on the value set in updatePolicy.instanceRedistributionType). type DistributionPolicyTargetShape string @@ -8414,12 +8137,6 @@ func (in *distributionPolicyTargetShapePtr) ToDistributionPolicyTargetShapePtrOu return pulumi.ToOutputWithContext(ctx, in).(DistributionPolicyTargetShapePtrOutput) } -func (in *distributionPolicyTargetShapePtr) ToOutput(ctx context.Context) pulumix.Output[*DistributionPolicyTargetShape] { - return pulumix.Output[*DistributionPolicyTargetShape]{ - OutputState: in.ToDistributionPolicyTargetShapePtrOutputWithContext(ctx).OutputState, - } -} - // Indicates the user-supplied redundancy type of this external VPN gateway. type ExternalVpnGatewayRedundancyType string @@ -8591,12 +8308,6 @@ func (in *externalVpnGatewayRedundancyTypePtr) ToExternalVpnGatewayRedundancyTyp return pulumi.ToOutputWithContext(ctx, in).(ExternalVpnGatewayRedundancyTypePtrOutput) } -func (in *externalVpnGatewayRedundancyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ExternalVpnGatewayRedundancyType] { - return pulumix.Output[*ExternalVpnGatewayRedundancyType]{ - OutputState: in.ToExternalVpnGatewayRedundancyTypePtrOutputWithContext(ctx).OutputState, - } -} - // The file type of source file. type FileContentBufferFileType string @@ -8765,12 +8476,6 @@ func (in *fileContentBufferFileTypePtr) ToFileContentBufferFileTypePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(FileContentBufferFileTypePtrOutput) } -func (in *fileContentBufferFileTypePtr) ToOutput(ctx context.Context) pulumix.Output[*FileContentBufferFileType] { - return pulumix.Output[*FileContentBufferFileType]{ - OutputState: in.ToFileContentBufferFileTypePtrOutputWithContext(ctx).OutputState, - } -} - // Direction of traffic to which this firewall applies, either `INGRESS` or `EGRESS`. The default is `INGRESS`. For `EGRESS` traffic, you cannot specify the sourceTags fields. type FirewallDirection string @@ -8939,12 +8644,6 @@ func (in *firewallDirectionPtr) ToFirewallDirectionPtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(FirewallDirectionPtrOutput) } -func (in *firewallDirectionPtr) ToOutput(ctx context.Context) pulumix.Output[*FirewallDirection] { - return pulumix.Output[*FirewallDirection]{ - OutputState: in.ToFirewallDirectionPtrOutputWithContext(ctx).OutputState, - } -} - // This field can only be specified for a particular firewall rule if logging is enabled for that rule. This field denotes whether to include or exclude metadata for firewall logs. type FirewallLogConfigMetadata string @@ -9111,12 +8810,6 @@ func (in *firewallLogConfigMetadataPtr) ToFirewallLogConfigMetadataPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(FirewallLogConfigMetadataPtrOutput) } -func (in *firewallLogConfigMetadataPtr) ToOutput(ctx context.Context) pulumix.Output[*FirewallLogConfigMetadata] { - return pulumix.Output[*FirewallLogConfigMetadata]{ - OutputState: in.ToFirewallLogConfigMetadataPtrOutputWithContext(ctx).OutputState, - } -} - // The direction in which this rule applies. type FirewallPolicyRuleDirection string @@ -9283,12 +8976,6 @@ func (in *firewallPolicyRuleDirectionPtr) ToFirewallPolicyRuleDirectionPtrOutput return pulumi.ToOutputWithContext(ctx, in).(FirewallPolicyRuleDirectionPtrOutput) } -func (in *firewallPolicyRuleDirectionPtr) ToOutput(ctx context.Context) pulumix.Output[*FirewallPolicyRuleDirection] { - return pulumix.Output[*FirewallPolicyRuleDirection]{ - OutputState: in.ToFirewallPolicyRuleDirectionPtrOutputWithContext(ctx).OutputState, - } -} - // The IP protocol to which this rule applies. For protocol forwarding, valid options are TCP, UDP, ESP, AH, SCTP, ICMP and L3_DEFAULT. The valid IP protocols are different for different load balancing products as described in [Load balancing features](https://cloud.google.com/load-balancing/docs/features#protocols_from_the_load_balancer_to_the_backends). type ForwardingRuleIpProtocol string @@ -9465,12 +9152,6 @@ func (in *forwardingRuleIpProtocolPtr) ToForwardingRuleIpProtocolPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(ForwardingRuleIpProtocolPtrOutput) } -func (in *forwardingRuleIpProtocolPtr) ToOutput(ctx context.Context) pulumix.Output[*ForwardingRuleIpProtocol] { - return pulumix.Output[*ForwardingRuleIpProtocol]{ - OutputState: in.ToForwardingRuleIpProtocolPtrOutputWithContext(ctx).OutputState, - } -} - // The IP Version that will be used by this forwarding rule. Valid options are IPV4 or IPV6. type ForwardingRuleIpVersion string @@ -9639,12 +9320,6 @@ func (in *forwardingRuleIpVersionPtr) ToForwardingRuleIpVersionPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(ForwardingRuleIpVersionPtrOutput) } -func (in *forwardingRuleIpVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*ForwardingRuleIpVersion] { - return pulumix.Output[*ForwardingRuleIpVersion]{ - OutputState: in.ToForwardingRuleIpVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the forwarding rule type. For more information about forwarding rules, refer to Forwarding rule concepts. type ForwardingRuleLoadBalancingScheme string @@ -9819,12 +9494,6 @@ func (in *forwardingRuleLoadBalancingSchemePtr) ToForwardingRuleLoadBalancingSch return pulumi.ToOutputWithContext(ctx, in).(ForwardingRuleLoadBalancingSchemePtrOutput) } -func (in *forwardingRuleLoadBalancingSchemePtr) ToOutput(ctx context.Context) pulumix.Output[*ForwardingRuleLoadBalancingScheme] { - return pulumix.Output[*ForwardingRuleLoadBalancingScheme]{ - OutputState: in.ToForwardingRuleLoadBalancingSchemePtrOutputWithContext(ctx).OutputState, - } -} - // This signifies the networking tier used for configuring this load balancer and can only take the following values: PREMIUM, STANDARD. For regional ForwardingRule, the valid values are PREMIUM and STANDARD. For GlobalForwardingRule, the valid value is PREMIUM. If this field is not specified, it is assumed to be PREMIUM. If IPAddress is specified, this value must be equal to the networkTier of the Address. type ForwardingRuleNetworkTier string @@ -9999,12 +9668,6 @@ func (in *forwardingRuleNetworkTierPtr) ToForwardingRuleNetworkTierPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(ForwardingRuleNetworkTierPtrOutput) } -func (in *forwardingRuleNetworkTierPtr) ToOutput(ctx context.Context) pulumix.Output[*ForwardingRuleNetworkTier] { - return pulumix.Output[*ForwardingRuleNetworkTier]{ - OutputState: in.ToForwardingRuleNetworkTierPtrOutputWithContext(ctx).OutputState, - } -} - type ForwardingRulePscConnectionStatus string const ( @@ -10183,12 +9846,6 @@ func (in *forwardingRulePscConnectionStatusPtr) ToForwardingRulePscConnectionSta return pulumi.ToOutputWithContext(ctx, in).(ForwardingRulePscConnectionStatusPtrOutput) } -func (in *forwardingRulePscConnectionStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*ForwardingRulePscConnectionStatus] { - return pulumix.Output[*ForwardingRulePscConnectionStatus]{ - OutputState: in.ToForwardingRulePscConnectionStatusPtrOutputWithContext(ctx).OutputState, - } -} - // Planning state before being submitted for evaluation type FutureReservationPlanningStatus string @@ -10359,12 +10016,6 @@ func (in *futureReservationPlanningStatusPtr) ToFutureReservationPlanningStatusP return pulumi.ToOutputWithContext(ctx, in).(FutureReservationPlanningStatusPtrOutput) } -func (in *futureReservationPlanningStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*FutureReservationPlanningStatus] { - return pulumix.Output[*FutureReservationPlanningStatus]{ - OutputState: in.ToFutureReservationPlanningStatusPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how a port is selected for health checking. Can be one of the following values: USE_FIXED_PORT: Specifies a port number explicitly using the port field in the health check. Supported by backend services for pass-through load balancers and backend services for proxy load balancers. Not supported by target pools. The health check supports all backends supported by the backend service provided the backend can be health checked. For example, GCE_VM_IP network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an indirect method of specifying the health check port by referring to the backend service. Only supported by backend services for proxy load balancers. Not supported by target pools. Not supported by backend services for pass-through load balancers. Supports all backends that can be health checked; for example, GCE_VM_IP_PORT network endpoint groups and instance group backends. For GCE_VM_IP_PORT network endpoint group backends, the health check uses the port number specified for each endpoint in the network endpoint group. For instance group backends, the health check uses the port number determined by looking up the backend service's named port in the instance group's list of named ports. type GRPCHealthCheckPortSpecification string @@ -10536,12 +10187,6 @@ func (in *grpchealthCheckPortSpecificationPtr) ToGRPCHealthCheckPortSpecificatio return pulumi.ToOutputWithContext(ctx, in).(GRPCHealthCheckPortSpecificationPtrOutput) } -func (in *grpchealthCheckPortSpecificationPtr) ToOutput(ctx context.Context) pulumix.Output[*GRPCHealthCheckPortSpecification] { - return pulumix.Output[*GRPCHealthCheckPortSpecification]{ - OutputState: in.ToGRPCHealthCheckPortSpecificationPtrOutputWithContext(ctx).OutputState, - } -} - // The type of address to reserve, either INTERNAL or EXTERNAL. If unspecified, defaults to EXTERNAL. type GlobalAddressAddressType string @@ -10712,12 +10357,6 @@ func (in *globalAddressAddressTypePtr) ToGlobalAddressAddressTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(GlobalAddressAddressTypePtrOutput) } -func (in *globalAddressAddressTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalAddressAddressType] { - return pulumix.Output[*GlobalAddressAddressType]{ - OutputState: in.ToGlobalAddressAddressTypePtrOutputWithContext(ctx).OutputState, - } -} - // The IP version that will be used by this address. Valid options are IPV4 or IPV6. type GlobalAddressIpVersion string @@ -10886,12 +10525,6 @@ func (in *globalAddressIpVersionPtr) ToGlobalAddressIpVersionPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(GlobalAddressIpVersionPtrOutput) } -func (in *globalAddressIpVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalAddressIpVersion] { - return pulumix.Output[*GlobalAddressIpVersion]{ - OutputState: in.ToGlobalAddressIpVersionPtrOutputWithContext(ctx).OutputState, - } -} - // The endpoint type of this address, which should be VM or NETLB. This is used for deciding which type of endpoint this address can be used after the external IPv6 address reservation. type GlobalAddressIpv6EndpointType string @@ -11060,12 +10693,6 @@ func (in *globalAddressIpv6EndpointTypePtr) ToGlobalAddressIpv6EndpointTypePtrOu return pulumi.ToOutputWithContext(ctx, in).(GlobalAddressIpv6EndpointTypePtrOutput) } -func (in *globalAddressIpv6EndpointTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalAddressIpv6EndpointType] { - return pulumix.Output[*GlobalAddressIpv6EndpointType]{ - OutputState: in.ToGlobalAddressIpv6EndpointTypePtrOutputWithContext(ctx).OutputState, - } -} - // This signifies the networking tier used for configuring this address and can only take the following values: PREMIUM or STANDARD. Internal IP addresses are always Premium Tier; global external IP addresses are always Premium Tier; regional external IP addresses can be either Standard or Premium Tier. If this field is not specified, it is assumed to be PREMIUM. type GlobalAddressNetworkTier string @@ -11240,12 +10867,6 @@ func (in *globalAddressNetworkTierPtr) ToGlobalAddressNetworkTierPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(GlobalAddressNetworkTierPtrOutput) } -func (in *globalAddressNetworkTierPtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalAddressNetworkTier] { - return pulumix.Output[*GlobalAddressNetworkTier]{ - OutputState: in.ToGlobalAddressNetworkTierPtrOutputWithContext(ctx).OutputState, - } -} - // The purpose of this resource, which can be one of the following values: - GCE_ENDPOINT for addresses that are used by VM instances, alias IP ranges, load balancers, and similar resources. - DNS_RESOLVER for a DNS resolver address in a subnetwork for a Cloud DNS inbound forwarder IP addresses (regional internal IP address in a subnet of a VPC network) - VPC_PEERING for global internal IP addresses used for private services access allocated ranges. - NAT_AUTO for the regional external IP addresses used by Cloud NAT when allocating addresses using automatic NAT IP address allocation. - IPSEC_INTERCONNECT for addresses created from a private IP range that are reserved for a VLAN attachment in an *HA VPN over Cloud Interconnect* configuration. These addresses are regional resources. - `SHARED_LOADBALANCER_VIP` for an internal IP address that is assigned to multiple internal forwarding rules. - `PRIVATE_SERVICE_CONNECT` for a private network address that is used to configure Private Service Connect. Only global internal addresses can use this purpose. type GlobalAddressPurpose string @@ -11432,12 +11053,6 @@ func (in *globalAddressPurposePtr) ToGlobalAddressPurposePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(GlobalAddressPurposePtrOutput) } -func (in *globalAddressPurposePtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalAddressPurpose] { - return pulumix.Output[*GlobalAddressPurpose]{ - OutputState: in.ToGlobalAddressPurposePtrOutputWithContext(ctx).OutputState, - } -} - // The IP protocol to which this rule applies. For protocol forwarding, valid options are TCP, UDP, ESP, AH, SCTP, ICMP and L3_DEFAULT. The valid IP protocols are different for different load balancing products as described in [Load balancing features](https://cloud.google.com/load-balancing/docs/features#protocols_from_the_load_balancer_to_the_backends). type GlobalForwardingRuleIpProtocol string @@ -11614,12 +11229,6 @@ func (in *globalForwardingRuleIpProtocolPtr) ToGlobalForwardingRuleIpProtocolPtr return pulumi.ToOutputWithContext(ctx, in).(GlobalForwardingRuleIpProtocolPtrOutput) } -func (in *globalForwardingRuleIpProtocolPtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalForwardingRuleIpProtocol] { - return pulumix.Output[*GlobalForwardingRuleIpProtocol]{ - OutputState: in.ToGlobalForwardingRuleIpProtocolPtrOutputWithContext(ctx).OutputState, - } -} - // The IP Version that will be used by this forwarding rule. Valid options are IPV4 or IPV6. type GlobalForwardingRuleIpVersion string @@ -11788,12 +11397,6 @@ func (in *globalForwardingRuleIpVersionPtr) ToGlobalForwardingRuleIpVersionPtrOu return pulumi.ToOutputWithContext(ctx, in).(GlobalForwardingRuleIpVersionPtrOutput) } -func (in *globalForwardingRuleIpVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalForwardingRuleIpVersion] { - return pulumix.Output[*GlobalForwardingRuleIpVersion]{ - OutputState: in.ToGlobalForwardingRuleIpVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the forwarding rule type. For more information about forwarding rules, refer to Forwarding rule concepts. type GlobalForwardingRuleLoadBalancingScheme string @@ -11968,12 +11571,6 @@ func (in *globalForwardingRuleLoadBalancingSchemePtr) ToGlobalForwardingRuleLoad return pulumi.ToOutputWithContext(ctx, in).(GlobalForwardingRuleLoadBalancingSchemePtrOutput) } -func (in *globalForwardingRuleLoadBalancingSchemePtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalForwardingRuleLoadBalancingScheme] { - return pulumix.Output[*GlobalForwardingRuleLoadBalancingScheme]{ - OutputState: in.ToGlobalForwardingRuleLoadBalancingSchemePtrOutputWithContext(ctx).OutputState, - } -} - // This signifies the networking tier used for configuring this load balancer and can only take the following values: PREMIUM, STANDARD. For regional ForwardingRule, the valid values are PREMIUM and STANDARD. For GlobalForwardingRule, the valid value is PREMIUM. If this field is not specified, it is assumed to be PREMIUM. If IPAddress is specified, this value must be equal to the networkTier of the Address. type GlobalForwardingRuleNetworkTier string @@ -12148,12 +11745,6 @@ func (in *globalForwardingRuleNetworkTierPtr) ToGlobalForwardingRuleNetworkTierP return pulumi.ToOutputWithContext(ctx, in).(GlobalForwardingRuleNetworkTierPtrOutput) } -func (in *globalForwardingRuleNetworkTierPtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalForwardingRuleNetworkTier] { - return pulumix.Output[*GlobalForwardingRuleNetworkTier]{ - OutputState: in.ToGlobalForwardingRuleNetworkTierPtrOutputWithContext(ctx).OutputState, - } -} - type GlobalForwardingRulePscConnectionStatus string const ( @@ -12332,12 +11923,6 @@ func (in *globalForwardingRulePscConnectionStatusPtr) ToGlobalForwardingRulePscC return pulumi.ToOutputWithContext(ctx, in).(GlobalForwardingRulePscConnectionStatusPtrOutput) } -func (in *globalForwardingRulePscConnectionStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalForwardingRulePscConnectionStatus] { - return pulumix.Output[*GlobalForwardingRulePscConnectionStatus]{ - OutputState: in.ToGlobalForwardingRulePscConnectionStatusPtrOutputWithContext(ctx).OutputState, - } -} - // Type of network endpoints in this network endpoint group. Can be one of GCE_VM_IP, GCE_VM_IP_PORT, NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT, INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT. type GlobalNetworkEndpointGroupNetworkEndpointType string @@ -12521,12 +12106,6 @@ func (in *globalNetworkEndpointGroupNetworkEndpointTypePtr) ToGlobalNetworkEndpo return pulumi.ToOutputWithContext(ctx, in).(GlobalNetworkEndpointGroupNetworkEndpointTypePtrOutput) } -func (in *globalNetworkEndpointGroupNetworkEndpointTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalNetworkEndpointGroupNetworkEndpointType] { - return pulumix.Output[*GlobalNetworkEndpointGroupNetworkEndpointType]{ - OutputState: in.ToGlobalNetworkEndpointGroupNetworkEndpointTypePtrOutputWithContext(ctx).OutputState, - } -} - // The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE - SEV_SNP_CAPABLE For more information, see Enabling guest operating system features. type GuestOsFeatureType string @@ -12711,12 +12290,6 @@ func (in *guestOsFeatureTypePtr) ToGuestOsFeatureTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(GuestOsFeatureTypePtrOutput) } -func (in *guestOsFeatureTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GuestOsFeatureType] { - return pulumix.Output[*GuestOsFeatureType]{ - OutputState: in.ToGuestOsFeatureTypePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how a port is selected for health checking. Can be one of the following values: USE_FIXED_PORT: Specifies a port number explicitly using the port field in the health check. Supported by backend services for pass-through load balancers and backend services for proxy load balancers. Not supported by target pools. The health check supports all backends supported by the backend service provided the backend can be health checked. For example, GCE_VM_IP network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an indirect method of specifying the health check port by referring to the backend service. Only supported by backend services for proxy load balancers. Not supported by target pools. Not supported by backend services for pass-through load balancers. Supports all backends that can be health checked; for example, GCE_VM_IP_PORT network endpoint groups and instance group backends. For GCE_VM_IP_PORT network endpoint group backends, the health check uses the port number specified for each endpoint in the network endpoint group. For instance group backends, the health check uses the port number determined by looking up the backend service's named port in the instance group's list of named ports. type HTTP2HealthCheckPortSpecification string @@ -12888,12 +12461,6 @@ func (in *http2healthCheckPortSpecificationPtr) ToHTTP2HealthCheckPortSpecificat return pulumi.ToOutputWithContext(ctx, in).(HTTP2HealthCheckPortSpecificationPtrOutput) } -func (in *http2healthCheckPortSpecificationPtr) ToOutput(ctx context.Context) pulumix.Output[*HTTP2HealthCheckPortSpecification] { - return pulumix.Output[*HTTP2HealthCheckPortSpecification]{ - OutputState: in.ToHTTP2HealthCheckPortSpecificationPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type HTTP2HealthCheckProxyHeader string @@ -13060,12 +12627,6 @@ func (in *http2healthCheckProxyHeaderPtr) ToHTTP2HealthCheckProxyHeaderPtrOutput return pulumi.ToOutputWithContext(ctx, in).(HTTP2HealthCheckProxyHeaderPtrOutput) } -func (in *http2healthCheckProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*HTTP2HealthCheckProxyHeader] { - return pulumix.Output[*HTTP2HealthCheckProxyHeader]{ - OutputState: in.ToHTTP2HealthCheckProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how a port is selected for health checking. Can be one of the following values: USE_FIXED_PORT: Specifies a port number explicitly using the port field in the health check. Supported by backend services for pass-through load balancers and backend services for proxy load balancers. Also supported in legacy HTTP health checks for target pools. The health check supports all backends supported by the backend service provided the backend can be health checked. For example, GCE_VM_IP network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an indirect method of specifying the health check port by referring to the backend service. Only supported by backend services for proxy load balancers. Not supported by target pools. Not supported by backend services for pass-through load balancers. Supports all backends that can be health checked; for example, GCE_VM_IP_PORT network endpoint groups and instance group backends. For GCE_VM_IP_PORT network endpoint group backends, the health check uses the port number specified for each endpoint in the network endpoint group. For instance group backends, the health check uses the port number determined by looking up the backend service's named port in the instance group's list of named ports. type HTTPHealthCheckPortSpecification string @@ -13237,12 +12798,6 @@ func (in *httphealthCheckPortSpecificationPtr) ToHTTPHealthCheckPortSpecificatio return pulumi.ToOutputWithContext(ctx, in).(HTTPHealthCheckPortSpecificationPtrOutput) } -func (in *httphealthCheckPortSpecificationPtr) ToOutput(ctx context.Context) pulumix.Output[*HTTPHealthCheckPortSpecification] { - return pulumix.Output[*HTTPHealthCheckPortSpecification]{ - OutputState: in.ToHTTPHealthCheckPortSpecificationPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type HTTPHealthCheckProxyHeader string @@ -13409,12 +12964,6 @@ func (in *httphealthCheckProxyHeaderPtr) ToHTTPHealthCheckProxyHeaderPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(HTTPHealthCheckProxyHeaderPtrOutput) } -func (in *httphealthCheckProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*HTTPHealthCheckProxyHeader] { - return pulumix.Output[*HTTPHealthCheckProxyHeader]{ - OutputState: in.ToHTTPHealthCheckProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how a port is selected for health checking. Can be one of the following values: USE_FIXED_PORT: Specifies a port number explicitly using the port field in the health check. Supported by backend services for pass-through load balancers and backend services for proxy load balancers. Not supported by target pools. The health check supports all backends supported by the backend service provided the backend can be health checked. For example, GCE_VM_IP network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an indirect method of specifying the health check port by referring to the backend service. Only supported by backend services for proxy load balancers. Not supported by target pools. Not supported by backend services for pass-through load balancers. Supports all backends that can be health checked; for example, GCE_VM_IP_PORT network endpoint groups and instance group backends. For GCE_VM_IP_PORT network endpoint group backends, the health check uses the port number specified for each endpoint in the network endpoint group. For instance group backends, the health check uses the port number determined by looking up the backend service's named port in the instance group's list of named ports. type HTTPSHealthCheckPortSpecification string @@ -13586,12 +13135,6 @@ func (in *httpshealthCheckPortSpecificationPtr) ToHTTPSHealthCheckPortSpecificat return pulumi.ToOutputWithContext(ctx, in).(HTTPSHealthCheckPortSpecificationPtrOutput) } -func (in *httpshealthCheckPortSpecificationPtr) ToOutput(ctx context.Context) pulumix.Output[*HTTPSHealthCheckPortSpecification] { - return pulumix.Output[*HTTPSHealthCheckPortSpecification]{ - OutputState: in.ToHTTPSHealthCheckPortSpecificationPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type HTTPSHealthCheckProxyHeader string @@ -13758,12 +13301,6 @@ func (in *httpshealthCheckProxyHeaderPtr) ToHTTPSHealthCheckProxyHeaderPtrOutput return pulumi.ToOutputWithContext(ctx, in).(HTTPSHealthCheckProxyHeaderPtrOutput) } -func (in *httpshealthCheckProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*HTTPSHealthCheckProxyHeader] { - return pulumix.Output[*HTTPSHealthCheckProxyHeader]{ - OutputState: in.ToHTTPSHealthCheckProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of the healthCheck, either TCP, SSL, HTTP, HTTPS, HTTP2 or GRPC. Exactly one of the protocol-specific health check fields must be specified, which must match type field. type HealthCheckType string @@ -13940,12 +13477,6 @@ func (in *healthCheckTypePtr) ToHealthCheckTypePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(HealthCheckTypePtrOutput) } -func (in *healthCheckTypePtr) ToOutput(ctx context.Context) pulumix.Output[*HealthCheckType] { - return pulumix.Output[*HealthCheckType]{ - OutputState: in.ToHealthCheckTypePtrOutputWithContext(ctx).OutputState, - } -} - // The HTTP Status code to use for this RedirectAction. Supported values are: - MOVED_PERMANENTLY_DEFAULT, which is the default value and corresponds to 301. - FOUND, which corresponds to 302. - SEE_OTHER which corresponds to 303. - TEMPORARY_REDIRECT, which corresponds to 307. In this case, the request method is retained. - PERMANENT_REDIRECT, which corresponds to 308. In this case, the request method is retained. type HttpRedirectActionRedirectResponseCode string @@ -14123,12 +13654,6 @@ func (in *httpRedirectActionRedirectResponseCodePtr) ToHttpRedirectActionRedirec return pulumi.ToOutputWithContext(ctx, in).(HttpRedirectActionRedirectResponseCodePtrOutput) } -func (in *httpRedirectActionRedirectResponseCodePtr) ToOutput(ctx context.Context) pulumix.Output[*HttpRedirectActionRedirectResponseCode] { - return pulumix.Output[*HttpRedirectActionRedirectResponseCode]{ - OutputState: in.ToHttpRedirectActionRedirectResponseCodePtrOutputWithContext(ctx).OutputState, - } -} - // The architecture of the image. Valid values are ARM64 or X86_64. type ImageArchitecture string @@ -14300,12 +13825,6 @@ func (in *imageArchitecturePtr) ToImageArchitecturePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(ImageArchitecturePtrOutput) } -func (in *imageArchitecturePtr) ToOutput(ctx context.Context) pulumix.Output[*ImageArchitecture] { - return pulumix.Output[*ImageArchitecture]{ - OutputState: in.ToImageArchitecturePtrOutputWithContext(ctx).OutputState, - } -} - // The format used to encode and transmit the block device, which should be TAR. This is just a container and transmission format and not a runtime format. Provided by the client when the disk image is created. type ImageRawDiskContainerType string @@ -14470,12 +13989,6 @@ func (in *imageRawDiskContainerTypePtr) ToImageRawDiskContainerTypePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(ImageRawDiskContainerTypePtrOutput) } -func (in *imageRawDiskContainerTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ImageRawDiskContainerType] { - return pulumix.Output[*ImageRawDiskContainerType]{ - OutputState: in.ToImageRawDiskContainerTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of the image used to create this disk. The default and only valid value is RAW. type ImageSourceType string @@ -14640,12 +14153,6 @@ func (in *imageSourceTypePtr) ToImageSourceTypePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(ImageSourceTypePtrOutput) } -func (in *imageSourceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ImageSourceType] { - return pulumix.Output[*ImageSourceType]{ - OutputState: in.ToImageSourceTypePtrOutputWithContext(ctx).OutputState, - } -} - // The action to perform in case of zone failure. Only one value is supported, NO_FAILOVER. The default is NO_FAILOVER. type InstanceGroupManagerFailoverAction string @@ -14812,12 +14319,6 @@ func (in *instanceGroupManagerFailoverActionPtr) ToInstanceGroupManagerFailoverA return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerFailoverActionPtrOutput) } -func (in *instanceGroupManagerFailoverActionPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerFailoverAction] { - return pulumix.Output[*InstanceGroupManagerFailoverAction]{ - OutputState: in.ToInstanceGroupManagerFailoverActionPtrOutputWithContext(ctx).OutputState, - } -} - // The action that a MIG performs on a failed or an unhealthy VM. A VM is marked as unhealthy when the application running on that VM fails a health check. Valid values are - REPAIR (default): MIG automatically repairs a failed or an unhealthy VM by recreating it. For more information, see About repairing VMs in a MIG. - DO_NOTHING: MIG does not repair a failed or an unhealthy VM. type InstanceGroupManagerInstanceLifecyclePolicyDefaultActionOnFailure string @@ -14989,12 +14490,6 @@ func (in *instanceGroupManagerInstanceLifecyclePolicyDefaultActionOnFailurePtr) return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerInstanceLifecyclePolicyDefaultActionOnFailurePtrOutput) } -func (in *instanceGroupManagerInstanceLifecyclePolicyDefaultActionOnFailurePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerInstanceLifecyclePolicyDefaultActionOnFailure] { - return pulumix.Output[*InstanceGroupManagerInstanceLifecyclePolicyDefaultActionOnFailure]{ - OutputState: in.ToInstanceGroupManagerInstanceLifecyclePolicyDefaultActionOnFailurePtrOutputWithContext(ctx).OutputState, - } -} - // A bit indicating whether to forcefully apply the group's latest configuration when repairing a VM. Valid options are: - NO (default): If configuration updates are available, they are not forcefully applied during repair. Instead, configuration updates are applied according to the group's update policy. - YES: If configuration updates are available, they are applied during repair. type InstanceGroupManagerInstanceLifecyclePolicyForceUpdateOnRepair string @@ -15161,12 +14656,6 @@ func (in *instanceGroupManagerInstanceLifecyclePolicyForceUpdateOnRepairPtr) ToI return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerInstanceLifecyclePolicyForceUpdateOnRepairPtrOutput) } -func (in *instanceGroupManagerInstanceLifecyclePolicyForceUpdateOnRepairPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerInstanceLifecyclePolicyForceUpdateOnRepair] { - return pulumix.Output[*InstanceGroupManagerInstanceLifecyclePolicyForceUpdateOnRepair]{ - OutputState: in.ToInstanceGroupManagerInstanceLifecyclePolicyForceUpdateOnRepairPtrOutputWithContext(ctx).OutputState, - } -} - // Pagination behavior of the listManagedInstances API method for this managed instance group. type InstanceGroupManagerListManagedInstancesResults string @@ -15335,12 +14824,6 @@ func (in *instanceGroupManagerListManagedInstancesResultsPtr) ToInstanceGroupMan return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerListManagedInstancesResultsPtrOutput) } -func (in *instanceGroupManagerListManagedInstancesResultsPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerListManagedInstancesResults] { - return pulumix.Output[*InstanceGroupManagerListManagedInstancesResults]{ - OutputState: in.ToInstanceGroupManagerListManagedInstancesResultsPtrOutputWithContext(ctx).OutputState, - } -} - // Defines behaviour of using instances from standby pool to resize MIG. type InstanceGroupManagerStandbyPolicyMode string @@ -15509,12 +14992,6 @@ func (in *instanceGroupManagerStandbyPolicyModePtr) ToInstanceGroupManagerStandb return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerStandbyPolicyModePtrOutput) } -func (in *instanceGroupManagerStandbyPolicyModePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerStandbyPolicyMode] { - return pulumix.Output[*InstanceGroupManagerStandbyPolicyMode]{ - OutputState: in.ToInstanceGroupManagerStandbyPolicyModePtrOutputWithContext(ctx).OutputState, - } -} - // The instance redistribution policy for regional managed instance groups. Valid values are: - PROACTIVE (default): The group attempts to maintain an even distribution of VM instances across zones in the region. - NONE: For non-autoscaled groups, proactive redistribution is disabled. type InstanceGroupManagerUpdatePolicyInstanceRedistributionType string @@ -15683,12 +15160,6 @@ func (in *instanceGroupManagerUpdatePolicyInstanceRedistributionTypePtr) ToInsta return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerUpdatePolicyInstanceRedistributionTypePtrOutput) } -func (in *instanceGroupManagerUpdatePolicyInstanceRedistributionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerUpdatePolicyInstanceRedistributionType] { - return pulumix.Output[*InstanceGroupManagerUpdatePolicyInstanceRedistributionType]{ - OutputState: in.ToInstanceGroupManagerUpdatePolicyInstanceRedistributionTypePtrOutputWithContext(ctx).OutputState, - } -} - // Minimal action to be taken on an instance. Use this option to minimize disruption as much as possible or to apply a more disruptive action than is necessary. - To limit disruption as much as possible, set the minimal action to REFRESH. If your update requires a more disruptive action, Compute Engine performs the necessary action to execute the update. - To apply a more disruptive action than is strictly necessary, set the minimal action to RESTART or REPLACE. For example, Compute Engine does not need to restart a VM to change its metadata. But if your application reads instance metadata only when a VM is restarted, you can set the minimal action to RESTART in order to pick up metadata changes. type InstanceGroupManagerUpdatePolicyMinimalAction string @@ -15863,12 +15334,6 @@ func (in *instanceGroupManagerUpdatePolicyMinimalActionPtr) ToInstanceGroupManag return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerUpdatePolicyMinimalActionPtrOutput) } -func (in *instanceGroupManagerUpdatePolicyMinimalActionPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerUpdatePolicyMinimalAction] { - return pulumix.Output[*InstanceGroupManagerUpdatePolicyMinimalAction]{ - OutputState: in.ToInstanceGroupManagerUpdatePolicyMinimalActionPtrOutputWithContext(ctx).OutputState, - } -} - // Most disruptive action that is allowed to be taken on an instance. You can specify either NONE to forbid any actions, REFRESH to avoid restarting the VM and to limit disruption as much as possible. RESTART to allow actions that can be applied without instance replacing or REPLACE to allow all possible actions. If the Updater determines that the minimal update action needed is more disruptive than most disruptive allowed action you specify it will not perform the update at all. type InstanceGroupManagerUpdatePolicyMostDisruptiveAllowedAction string @@ -16043,12 +15508,6 @@ func (in *instanceGroupManagerUpdatePolicyMostDisruptiveAllowedActionPtr) ToInst return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerUpdatePolicyMostDisruptiveAllowedActionPtrOutput) } -func (in *instanceGroupManagerUpdatePolicyMostDisruptiveAllowedActionPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerUpdatePolicyMostDisruptiveAllowedAction] { - return pulumix.Output[*InstanceGroupManagerUpdatePolicyMostDisruptiveAllowedAction]{ - OutputState: in.ToInstanceGroupManagerUpdatePolicyMostDisruptiveAllowedActionPtrOutputWithContext(ctx).OutputState, - } -} - // What action should be used to replace instances. See minimal_action.REPLACE type InstanceGroupManagerUpdatePolicyReplacementMethod string @@ -16217,12 +15676,6 @@ func (in *instanceGroupManagerUpdatePolicyReplacementMethodPtr) ToInstanceGroupM return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerUpdatePolicyReplacementMethodPtrOutput) } -func (in *instanceGroupManagerUpdatePolicyReplacementMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerUpdatePolicyReplacementMethod] { - return pulumix.Output[*InstanceGroupManagerUpdatePolicyReplacementMethod]{ - OutputState: in.ToInstanceGroupManagerUpdatePolicyReplacementMethodPtrOutputWithContext(ctx).OutputState, - } -} - // The type of update process. You can specify either PROACTIVE so that the MIG automatically updates VMs to the latest configurations or OPPORTUNISTIC so that you can select the VMs that you want to update. type InstanceGroupManagerUpdatePolicyType string @@ -16391,12 +15844,6 @@ func (in *instanceGroupManagerUpdatePolicyTypePtr) ToInstanceGroupManagerUpdateP return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerUpdatePolicyTypePtrOutput) } -func (in *instanceGroupManagerUpdatePolicyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerUpdatePolicyType] { - return pulumix.Output[*InstanceGroupManagerUpdatePolicyType]{ - OutputState: in.ToInstanceGroupManagerUpdatePolicyTypePtrOutputWithContext(ctx).OutputState, - } -} - // KeyRevocationActionType of the instance. Supported options are "STOP" and "NONE". The default value is "NONE" if it is not specified. type InstanceKeyRevocationActionType string @@ -16568,12 +16015,6 @@ func (in *instanceKeyRevocationActionTypePtr) ToInstanceKeyRevocationActionTypeP return pulumi.ToOutputWithContext(ctx, in).(InstanceKeyRevocationActionTypePtrOutput) } -func (in *instanceKeyRevocationActionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceKeyRevocationActionType] { - return pulumix.Output[*InstanceKeyRevocationActionType]{ - OutputState: in.ToInstanceKeyRevocationActionTypePtrOutputWithContext(ctx).OutputState, - } -} - // PostKeyRevocationActionType of the instance. type InstancePostKeyRevocationActionType string @@ -16745,12 +16186,6 @@ func (in *instancePostKeyRevocationActionTypePtr) ToInstancePostKeyRevocationAct return pulumi.ToOutputWithContext(ctx, in).(InstancePostKeyRevocationActionTypePtrOutput) } -func (in *instancePostKeyRevocationActionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstancePostKeyRevocationActionType] { - return pulumix.Output[*InstancePostKeyRevocationActionType]{ - OutputState: in.ToInstancePostKeyRevocationActionTypePtrOutputWithContext(ctx).OutputState, - } -} - // The private IPv6 google access type for the VM. If not specified, use INHERIT_FROM_SUBNETWORK as default. type InstancePrivateIpv6GoogleAccess string @@ -16922,12 +16357,6 @@ func (in *instancePrivateIpv6GoogleAccessPtr) ToInstancePrivateIpv6GoogleAccessP return pulumi.ToOutputWithContext(ctx, in).(InstancePrivateIpv6GoogleAccessPtrOutput) } -func (in *instancePrivateIpv6GoogleAccessPtr) ToOutput(ctx context.Context) pulumix.Output[*InstancePrivateIpv6GoogleAccess] { - return pulumix.Output[*InstancePrivateIpv6GoogleAccess]{ - OutputState: in.ToInstancePrivateIpv6GoogleAccessPtrOutputWithContext(ctx).OutputState, - } -} - // KeyRevocationActionType of the instance. Supported options are "STOP" and "NONE". The default value is "NONE" if it is not specified. type InstancePropertiesKeyRevocationActionType string @@ -17099,12 +16528,6 @@ func (in *instancePropertiesKeyRevocationActionTypePtr) ToInstancePropertiesKeyR return pulumi.ToOutputWithContext(ctx, in).(InstancePropertiesKeyRevocationActionTypePtrOutput) } -func (in *instancePropertiesKeyRevocationActionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstancePropertiesKeyRevocationActionType] { - return pulumix.Output[*InstancePropertiesKeyRevocationActionType]{ - OutputState: in.ToInstancePropertiesKeyRevocationActionTypePtrOutputWithContext(ctx).OutputState, - } -} - // PostKeyRevocationActionType of the instance. type InstancePropertiesPostKeyRevocationActionType string @@ -17276,12 +16699,6 @@ func (in *instancePropertiesPostKeyRevocationActionTypePtr) ToInstanceProperties return pulumi.ToOutputWithContext(ctx, in).(InstancePropertiesPostKeyRevocationActionTypePtrOutput) } -func (in *instancePropertiesPostKeyRevocationActionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstancePropertiesPostKeyRevocationActionType] { - return pulumix.Output[*InstancePropertiesPostKeyRevocationActionType]{ - OutputState: in.ToInstancePropertiesPostKeyRevocationActionTypePtrOutputWithContext(ctx).OutputState, - } -} - // The private IPv6 google access type for VMs. If not specified, use INHERIT_FROM_SUBNETWORK as default. Note that for MachineImage, this is not supported yet. type InstancePropertiesPrivateIpv6GoogleAccess string @@ -17453,12 +16870,6 @@ func (in *instancePropertiesPrivateIpv6GoogleAccessPtr) ToInstancePropertiesPriv return pulumi.ToOutputWithContext(ctx, in).(InstancePropertiesPrivateIpv6GoogleAccessPtrOutput) } -func (in *instancePropertiesPrivateIpv6GoogleAccessPtr) ToOutput(ctx context.Context) pulumix.Output[*InstancePropertiesPrivateIpv6GoogleAccess] { - return pulumix.Output[*InstancePropertiesPrivateIpv6GoogleAccess]{ - OutputState: in.ToInstancePropertiesPrivateIpv6GoogleAccessPtrOutputWithContext(ctx).OutputState, - } -} - // Provisioned bandwidth capacity for the interconnect attachment. For attachments of type DEDICATED, the user can set the bandwidth. For attachments of type PARTNER, the Google Partner that is operating the interconnect must set the bandwidth. Output only for PARTNER type, mutable for PARTNER_PROVIDER and DEDICATED, and can take one of the following values: - BPS_50M: 50 Mbit/s - BPS_100M: 100 Mbit/s - BPS_200M: 200 Mbit/s - BPS_300M: 300 Mbit/s - BPS_400M: 400 Mbit/s - BPS_500M: 500 Mbit/s - BPS_1G: 1 Gbit/s - BPS_2G: 2 Gbit/s - BPS_5G: 5 Gbit/s - BPS_10G: 10 Gbit/s - BPS_20G: 20 Gbit/s - BPS_50G: 50 Gbit/s type InterconnectAttachmentBandwidth string @@ -17657,12 +17068,6 @@ func (in *interconnectAttachmentBandwidthPtr) ToInterconnectAttachmentBandwidthP return pulumi.ToOutputWithContext(ctx, in).(InterconnectAttachmentBandwidthPtrOutput) } -func (in *interconnectAttachmentBandwidthPtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectAttachmentBandwidth] { - return pulumix.Output[*InterconnectAttachmentBandwidth]{ - OutputState: in.ToInterconnectAttachmentBandwidthPtrOutputWithContext(ctx).OutputState, - } -} - // Desired availability domain for the attachment. Only available for type PARTNER, at creation time, and can take one of the following values: - AVAILABILITY_DOMAIN_ANY - AVAILABILITY_DOMAIN_1 - AVAILABILITY_DOMAIN_2 For improved reliability, customers should configure a pair of attachments, one per availability domain. The selected availability domain will be provided to the Partner via the pairing key, so that the provisioned circuit will lie in the specified domain. If not specified, the value will default to AVAILABILITY_DOMAIN_ANY. type InterconnectAttachmentEdgeAvailabilityDomain string @@ -17831,12 +17236,6 @@ func (in *interconnectAttachmentEdgeAvailabilityDomainPtr) ToInterconnectAttachm return pulumi.ToOutputWithContext(ctx, in).(InterconnectAttachmentEdgeAvailabilityDomainPtrOutput) } -func (in *interconnectAttachmentEdgeAvailabilityDomainPtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectAttachmentEdgeAvailabilityDomain] { - return pulumix.Output[*InterconnectAttachmentEdgeAvailabilityDomain]{ - OutputState: in.ToInterconnectAttachmentEdgeAvailabilityDomainPtrOutputWithContext(ctx).OutputState, - } -} - // Indicates the user-supplied encryption option of this VLAN attachment (interconnectAttachment). Can only be specified at attachment creation for PARTNER or DEDICATED attachments. Possible values are: - NONE - This is the default value, which means that the VLAN attachment carries unencrypted traffic. VMs are able to send traffic to, or receive traffic from, such a VLAN attachment. - IPSEC - The VLAN attachment carries only encrypted traffic that is encrypted by an IPsec device, such as an HA VPN gateway or third-party IPsec VPN. VMs cannot directly send traffic to, or receive traffic from, such a VLAN attachment. To use *HA VPN over Cloud Interconnect*, the VLAN attachment must be created with this option. type InterconnectAttachmentEncryption string @@ -18005,12 +17404,6 @@ func (in *interconnectAttachmentEncryptionPtr) ToInterconnectAttachmentEncryptio return pulumi.ToOutputWithContext(ctx, in).(InterconnectAttachmentEncryptionPtrOutput) } -func (in *interconnectAttachmentEncryptionPtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectAttachmentEncryption] { - return pulumix.Output[*InterconnectAttachmentEncryption]{ - OutputState: in.ToInterconnectAttachmentEncryptionPtrOutputWithContext(ctx).OutputState, - } -} - // The stack type for this interconnect attachment to identify whether the IPv6 feature is enabled or not. If not specified, IPV4_ONLY will be used. This field can be both set at interconnect attachments creation and update interconnect attachment operations. type InterconnectAttachmentStackType string @@ -18179,12 +17572,6 @@ func (in *interconnectAttachmentStackTypePtr) ToInterconnectAttachmentStackTypeP return pulumi.ToOutputWithContext(ctx, in).(InterconnectAttachmentStackTypePtrOutput) } -func (in *interconnectAttachmentStackTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectAttachmentStackType] { - return pulumix.Output[*InterconnectAttachmentStackType]{ - OutputState: in.ToInterconnectAttachmentStackTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of interconnect attachment this is, which can take one of the following values: - DEDICATED: an attachment to a Dedicated Interconnect. - PARTNER: an attachment to a Partner Interconnect, created by the customer. - PARTNER_PROVIDER: an attachment to a Partner Interconnect, created by the partner. type InterconnectAttachmentType string @@ -18356,12 +17743,6 @@ func (in *interconnectAttachmentTypePtr) ToInterconnectAttachmentTypePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(InterconnectAttachmentTypePtrOutput) } -func (in *interconnectAttachmentTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectAttachmentType] { - return pulumix.Output[*InterconnectAttachmentType]{ - OutputState: in.ToInterconnectAttachmentTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of interconnect, which can take one of the following values: - PARTNER: A partner-managed interconnection shared between customers though a partner. - DEDICATED: A dedicated physical interconnection with the customer. Note that a value IT_PRIVATE has been deprecated in favor of DEDICATED. type InterconnectInterconnectType string @@ -18533,12 +17914,6 @@ func (in *interconnectInterconnectTypePtr) ToInterconnectInterconnectTypePtrOutp return pulumi.ToOutputWithContext(ctx, in).(InterconnectInterconnectTypePtrOutput) } -func (in *interconnectInterconnectTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectInterconnectType] { - return pulumix.Output[*InterconnectInterconnectType]{ - OutputState: in.ToInterconnectInterconnectTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of link requested, which can take one of the following values: - LINK_TYPE_ETHERNET_10G_LR: A 10G Ethernet with LR optics - LINK_TYPE_ETHERNET_100G_LR: A 100G Ethernet with LR optics. Note that this field indicates the speed of each of the links in the bundle, not the speed of the entire bundle. type InterconnectLinkType string @@ -18707,12 +18082,6 @@ func (in *interconnectLinkTypePtr) ToInterconnectLinkTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(InterconnectLinkTypePtrOutput) } -func (in *interconnectLinkTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectLinkType] { - return pulumix.Output[*InterconnectLinkType]{ - OutputState: in.ToInterconnectLinkTypePtrOutputWithContext(ctx).OutputState, - } -} - type InterconnectRequestedFeaturesItem string const ( @@ -18877,12 +18246,6 @@ func (in *interconnectRequestedFeaturesItemPtr) ToInterconnectRequestedFeaturesI return pulumi.ToOutputWithContext(ctx, in).(InterconnectRequestedFeaturesItemPtrOutput) } -func (in *interconnectRequestedFeaturesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectRequestedFeaturesItem] { - return pulumix.Output[*InterconnectRequestedFeaturesItem]{ - OutputState: in.ToInterconnectRequestedFeaturesItemPtrOutputWithContext(ctx).OutputState, - } -} - // InterconnectRequestedFeaturesItemArrayInput is an input type that accepts InterconnectRequestedFeaturesItemArray and InterconnectRequestedFeaturesItemArrayOutput values. // You can construct a concrete instance of `InterconnectRequestedFeaturesItemArrayInput` via: // @@ -19099,12 +18462,6 @@ func (in *logConfigCloudAuditOptionsLogNamePtr) ToLogConfigCloudAuditOptionsLogN return pulumi.ToOutputWithContext(ctx, in).(LogConfigCloudAuditOptionsLogNamePtrOutput) } -func (in *logConfigCloudAuditOptionsLogNamePtr) ToOutput(ctx context.Context) pulumix.Output[*LogConfigCloudAuditOptionsLogName] { - return pulumix.Output[*LogConfigCloudAuditOptionsLogName]{ - OutputState: in.ToLogConfigCloudAuditOptionsLogNamePtrOutputWithContext(ctx).OutputState, - } -} - // This is deprecated and has no effect. Do not use. type LogConfigDataAccessOptionsLogMode string @@ -19273,12 +18630,6 @@ func (in *logConfigDataAccessOptionsLogModePtr) ToLogConfigDataAccessOptionsLogM return pulumi.ToOutputWithContext(ctx, in).(LogConfigDataAccessOptionsLogModePtrOutput) } -func (in *logConfigDataAccessOptionsLogModePtr) ToOutput(ctx context.Context) pulumix.Output[*LogConfigDataAccessOptionsLogMode] { - return pulumix.Output[*LogConfigDataAccessOptionsLogMode]{ - OutputState: in.ToLogConfigDataAccessOptionsLogModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how individual filter label matches within the list of filterLabels and contributes toward the overall metadataFilter match. Supported values are: - MATCH_ANY: at least one of the filterLabels must have a matching label in the provided metadata. - MATCH_ALL: all filterLabels must have matching labels in the provided metadata. type MetadataFilterFilterMatchCriteria string @@ -19450,12 +18801,6 @@ func (in *metadataFilterFilterMatchCriteriaPtr) ToMetadataFilterFilterMatchCrite return pulumi.ToOutputWithContext(ctx, in).(MetadataFilterFilterMatchCriteriaPtrOutput) } -func (in *metadataFilterFilterMatchCriteriaPtr) ToOutput(ctx context.Context) pulumix.Output[*MetadataFilterFilterMatchCriteria] { - return pulumix.Output[*MetadataFilterFilterMatchCriteria]{ - OutputState: in.ToMetadataFilterFilterMatchCriteriaPtrOutputWithContext(ctx).OutputState, - } -} - type NetworkAttachmentConnectionPreference string const ( @@ -19623,12 +18968,6 @@ func (in *networkAttachmentConnectionPreferencePtr) ToNetworkAttachmentConnectio return pulumi.ToOutputWithContext(ctx, in).(NetworkAttachmentConnectionPreferencePtrOutput) } -func (in *networkAttachmentConnectionPreferencePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkAttachmentConnectionPreference] { - return pulumix.Output[*NetworkAttachmentConnectionPreference]{ - OutputState: in.ToNetworkAttachmentConnectionPreferencePtrOutputWithContext(ctx).OutputState, - } -} - // Type of network endpoints in this network endpoint group. Can be one of GCE_VM_IP, GCE_VM_IP_PORT, NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT, INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT. type NetworkEndpointGroupNetworkEndpointType string @@ -19812,12 +19151,6 @@ func (in *networkEndpointGroupNetworkEndpointTypePtr) ToNetworkEndpointGroupNetw return pulumi.ToOutputWithContext(ctx, in).(NetworkEndpointGroupNetworkEndpointTypePtrOutput) } -func (in *networkEndpointGroupNetworkEndpointTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkEndpointGroupNetworkEndpointType] { - return pulumix.Output[*NetworkEndpointGroupNetworkEndpointType]{ - OutputState: in.ToNetworkEndpointGroupNetworkEndpointTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of vNIC to be used on this interface. This may be gVNIC or VirtioNet. type NetworkInterfaceNicType string @@ -19989,12 +19322,6 @@ func (in *networkInterfaceNicTypePtr) ToNetworkInterfaceNicTypePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(NetworkInterfaceNicTypePtrOutput) } -func (in *networkInterfaceNicTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkInterfaceNicType] { - return pulumix.Output[*NetworkInterfaceNicType]{ - OutputState: in.ToNetworkInterfaceNicTypePtrOutputWithContext(ctx).OutputState, - } -} - // The stack type for this network interface. To assign only IPv4 addresses, use IPV4_ONLY. To assign both IPv4 and IPv6 addresses, use IPV4_IPV6. If not specified, IPV4_ONLY is used. This field can be both set at instance creation and update network interface operations. type NetworkInterfaceStackType string @@ -20163,12 +19490,6 @@ func (in *networkInterfaceStackTypePtr) ToNetworkInterfaceStackTypePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(NetworkInterfaceStackTypePtrOutput) } -func (in *networkInterfaceStackTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkInterfaceStackType] { - return pulumix.Output[*NetworkInterfaceStackType]{ - OutputState: in.ToNetworkInterfaceStackTypePtrOutputWithContext(ctx).OutputState, - } -} - // The network firewall policy enforcement order. Can be either AFTER_CLASSIC_FIREWALL or BEFORE_CLASSIC_FIREWALL. Defaults to AFTER_CLASSIC_FIREWALL if the field is not specified. type NetworkNetworkFirewallPolicyEnforcementOrder string @@ -20335,12 +19656,6 @@ func (in *networkNetworkFirewallPolicyEnforcementOrderPtr) ToNetworkNetworkFirew return pulumi.ToOutputWithContext(ctx, in).(NetworkNetworkFirewallPolicyEnforcementOrderPtrOutput) } -func (in *networkNetworkFirewallPolicyEnforcementOrderPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkNetworkFirewallPolicyEnforcementOrder] { - return pulumix.Output[*NetworkNetworkFirewallPolicyEnforcementOrder]{ - OutputState: in.ToNetworkNetworkFirewallPolicyEnforcementOrderPtrOutputWithContext(ctx).OutputState, - } -} - type NetworkPerformanceConfigTotalEgressBandwidthTier string const ( @@ -20506,12 +19821,6 @@ func (in *networkPerformanceConfigTotalEgressBandwidthTierPtr) ToNetworkPerforma return pulumi.ToOutputWithContext(ctx, in).(NetworkPerformanceConfigTotalEgressBandwidthTierPtrOutput) } -func (in *networkPerformanceConfigTotalEgressBandwidthTierPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkPerformanceConfigTotalEgressBandwidthTier] { - return pulumix.Output[*NetworkPerformanceConfigTotalEgressBandwidthTier]{ - OutputState: in.ToNetworkPerformanceConfigTotalEgressBandwidthTierPtrOutputWithContext(ctx).OutputState, - } -} - // The network-wide routing mode to use. If set to REGIONAL, this network's Cloud Routers will only advertise routes with subnets of this network in the same region as the router. If set to GLOBAL, this network's Cloud Routers will advertise routes with all subnets of this network, across regions. type NetworkRoutingConfigRoutingMode string @@ -20678,12 +19987,6 @@ func (in *networkRoutingConfigRoutingModePtr) ToNetworkRoutingConfigRoutingModeP return pulumi.ToOutputWithContext(ctx, in).(NetworkRoutingConfigRoutingModePtrOutput) } -func (in *networkRoutingConfigRoutingModePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkRoutingConfigRoutingMode] { - return pulumix.Output[*NetworkRoutingConfigRoutingMode]{ - OutputState: in.ToNetworkRoutingConfigRoutingModePtrOutputWithContext(ctx).OutputState, - } -} - // The autoscaling mode. Set to one of: ON, OFF, or ONLY_SCALE_OUT. For more information, see Autoscaler modes. type NodeGroupAutoscalingPolicyMode string @@ -20857,12 +20160,6 @@ func (in *nodeGroupAutoscalingPolicyModePtr) ToNodeGroupAutoscalingPolicyModePtr return pulumi.ToOutputWithContext(ctx, in).(NodeGroupAutoscalingPolicyModePtrOutput) } -func (in *nodeGroupAutoscalingPolicyModePtr) ToOutput(ctx context.Context) pulumix.Output[*NodeGroupAutoscalingPolicyMode] { - return pulumix.Output[*NodeGroupAutoscalingPolicyMode]{ - OutputState: in.ToNodeGroupAutoscalingPolicyModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the frequency of planned maintenance events. The accepted values are: `AS_NEEDED` and `RECURRENT`. type NodeGroupMaintenanceInterval string @@ -21034,12 +20331,6 @@ func (in *nodeGroupMaintenanceIntervalPtr) ToNodeGroupMaintenanceIntervalPtrOutp return pulumi.ToOutputWithContext(ctx, in).(NodeGroupMaintenanceIntervalPtrOutput) } -func (in *nodeGroupMaintenanceIntervalPtr) ToOutput(ctx context.Context) pulumix.Output[*NodeGroupMaintenanceInterval] { - return pulumix.Output[*NodeGroupMaintenanceInterval]{ - OutputState: in.ToNodeGroupMaintenanceIntervalPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how to handle instances when a node in the group undergoes maintenance. Set to one of: DEFAULT, RESTART_IN_PLACE, or MIGRATE_WITHIN_NODE_GROUP. The default value is DEFAULT. For more information, see Maintenance policies. type NodeGroupMaintenancePolicy string @@ -21213,12 +20504,6 @@ func (in *nodeGroupMaintenancePolicyPtr) ToNodeGroupMaintenancePolicyPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(NodeGroupMaintenancePolicyPtrOutput) } -func (in *nodeGroupMaintenancePolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*NodeGroupMaintenancePolicy] { - return pulumix.Output[*NodeGroupMaintenancePolicy]{ - OutputState: in.ToNodeGroupMaintenancePolicyPtrOutputWithContext(ctx).OutputState, - } -} - type NodeGroupStatus string const ( @@ -21396,12 +20681,6 @@ func (in *nodeTemplateCpuOvercommitTypePtr) ToNodeTemplateCpuOvercommitTypePtrOu return pulumi.ToOutputWithContext(ctx, in).(NodeTemplateCpuOvercommitTypePtrOutput) } -func (in *nodeTemplateCpuOvercommitTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NodeTemplateCpuOvercommitType] { - return pulumix.Output[*NodeTemplateCpuOvercommitType]{ - OutputState: in.ToNodeTemplateCpuOvercommitTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type indicates the intended use of the security policy. - CLOUD_ARMOR: Cloud Armor backend security policies can be configured to filter incoming HTTP requests targeting backend services. They filter requests before they hit the origin servers. - CLOUD_ARMOR_EDGE: Cloud Armor edge security policies can be configured to filter incoming HTTP requests targeting backend services (including Cloud CDN-enabled) as well as backend buckets (Cloud Storage). They filter requests before the request is served from Google's cache. - CLOUD_ARMOR_INTERNAL_SERVICE: Cloud Armor internal service policies can be configured to filter HTTP requests targeting services managed by Traffic Director in a service mesh. They filter requests before the request is served from the application. - CLOUD_ARMOR_NETWORK: Cloud Armor network policies can be configured to filter packets targeting network load balancing resources such as backend services, target pools, target instances, and instances with external IPs. They filter requests before the request is served from the application. This field can be set only at resource creation time. type OrganizationSecurityPolicyType string @@ -21572,12 +20851,6 @@ func (in *organizationSecurityPolicyTypePtr) ToOrganizationSecurityPolicyTypePtr return pulumi.ToOutputWithContext(ctx, in).(OrganizationSecurityPolicyTypePtrOutput) } -func (in *organizationSecurityPolicyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*OrganizationSecurityPolicyType] { - return pulumix.Output[*OrganizationSecurityPolicyType]{ - OutputState: in.ToOrganizationSecurityPolicyTypePtrOutputWithContext(ctx).OutputState, - } -} - // Indicates whether or not this packet mirroring takes effect. If set to FALSE, this packet mirroring policy will not be enforced on the network. The default is TRUE. type PacketMirroringEnable string @@ -21744,12 +21017,6 @@ func (in *packetMirroringEnablePtr) ToPacketMirroringEnablePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(PacketMirroringEnablePtrOutput) } -func (in *packetMirroringEnablePtr) ToOutput(ctx context.Context) pulumix.Output[*PacketMirroringEnable] { - return pulumix.Output[*PacketMirroringEnable]{ - OutputState: in.ToPacketMirroringEnablePtrOutputWithContext(ctx).OutputState, - } -} - // Direction of traffic to mirror, either INGRESS, EGRESS, or BOTH. The default is BOTH. type PacketMirroringFilterDirection string @@ -21921,12 +21188,6 @@ func (in *packetMirroringFilterDirectionPtr) ToPacketMirroringFilterDirectionPtr return pulumi.ToOutputWithContext(ctx, in).(PacketMirroringFilterDirectionPtrOutput) } -func (in *packetMirroringFilterDirectionPtr) ToOutput(ctx context.Context) pulumix.Output[*PacketMirroringFilterDirection] { - return pulumix.Output[*PacketMirroringFilterDirection]{ - OutputState: in.ToPacketMirroringFilterDirectionPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how child public delegated prefix will be scoped. It could be one of following values: - `REGIONAL`: The public delegated prefix is regional only. The provisioning will take a few minutes. - `GLOBAL`: The public delegated prefix is global only. The provisioning will take ~4 weeks. - `GLOBAL_AND_REGIONAL` [output only]: The public delegated prefixes is BYOIP V1 legacy prefix. This is output only value and no longer supported in BYOIP V2. type PublicAdvertisedPrefixPdpScope string @@ -22098,12 +21359,6 @@ func (in *publicAdvertisedPrefixPdpScopePtr) ToPublicAdvertisedPrefixPdpScopePtr return pulumi.ToOutputWithContext(ctx, in).(PublicAdvertisedPrefixPdpScopePtrOutput) } -func (in *publicAdvertisedPrefixPdpScopePtr) ToOutput(ctx context.Context) pulumix.Output[*PublicAdvertisedPrefixPdpScope] { - return pulumix.Output[*PublicAdvertisedPrefixPdpScope]{ - OutputState: in.ToPublicAdvertisedPrefixPdpScopePtrOutputWithContext(ctx).OutputState, - } -} - // The status of the public advertised prefix. Possible values include: - `INITIAL`: RPKI validation is complete. - `PTR_CONFIGURED`: User has configured the PTR. - `VALIDATED`: Reverse DNS lookup is successful. - `REVERSE_DNS_LOOKUP_FAILED`: Reverse DNS lookup failed. - `PREFIX_CONFIGURATION_IN_PROGRESS`: The prefix is being configured. - `PREFIX_CONFIGURATION_COMPLETE`: The prefix is fully configured. - `PREFIX_REMOVAL_IN_PROGRESS`: The prefix is being removed. type PublicAdvertisedPrefixStatus string @@ -22293,12 +21548,6 @@ func (in *publicAdvertisedPrefixStatusPtr) ToPublicAdvertisedPrefixStatusPtrOutp return pulumi.ToOutputWithContext(ctx, in).(PublicAdvertisedPrefixStatusPtrOutput) } -func (in *publicAdvertisedPrefixStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*PublicAdvertisedPrefixStatus] { - return pulumix.Output[*PublicAdvertisedPrefixStatus]{ - OutputState: in.ToPublicAdvertisedPrefixStatusPtrOutputWithContext(ctx).OutputState, - } -} - // Compress text responses using Brotli or gzip compression, based on the client's Accept-Encoding header. type RegionBackendServiceCompressionMode string @@ -22467,12 +21716,6 @@ func (in *regionBackendServiceCompressionModePtr) ToRegionBackendServiceCompress return pulumi.ToOutputWithContext(ctx, in).(RegionBackendServiceCompressionModePtrOutput) } -func (in *regionBackendServiceCompressionModePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionBackendServiceCompressionMode] { - return pulumix.Output[*RegionBackendServiceCompressionMode]{ - OutputState: in.ToRegionBackendServiceCompressionModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies a preference for traffic sent from the proxy to the backend (or from the client to the backend for proxyless gRPC). The possible values are: - IPV4_ONLY: Only send IPv4 traffic to the backends of the backend service (Instance Group, Managed Instance Group, Network Endpoint Group), regardless of traffic from the client to the proxy. Only IPv4 health checks are used to check the health of the backends. This is the default setting. - PREFER_IPV6: Prioritize the connection to the endpoint's IPv6 address over its IPv4 address (provided there is a healthy IPv6 address). - IPV6_ONLY: Only send IPv6 traffic to the backends of the backend service (Instance Group, Managed Instance Group, Network Endpoint Group), regardless of traffic from the client to the proxy. Only IPv6 health checks are used to check the health of the backends. This field is applicable to either: - Advanced Global External HTTPS Load Balancing (load balancing scheme EXTERNAL_MANAGED), - Regional External HTTPS Load Balancing, - Internal TCP Proxy (load balancing scheme INTERNAL_MANAGED), - Regional Internal HTTPS Load Balancing (load balancing scheme INTERNAL_MANAGED), - Traffic Director with Envoy proxies and proxyless gRPC (load balancing scheme INTERNAL_SELF_MANAGED). type RegionBackendServiceIpAddressSelectionPolicy string @@ -22647,12 +21890,6 @@ func (in *regionBackendServiceIpAddressSelectionPolicyPtr) ToRegionBackendServic return pulumi.ToOutputWithContext(ctx, in).(RegionBackendServiceIpAddressSelectionPolicyPtrOutput) } -func (in *regionBackendServiceIpAddressSelectionPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionBackendServiceIpAddressSelectionPolicy] { - return pulumix.Output[*RegionBackendServiceIpAddressSelectionPolicy]{ - OutputState: in.ToRegionBackendServiceIpAddressSelectionPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the load balancer type. A backend service created for one type of load balancer cannot be used with another. For more information, refer to Choosing a load balancer. type RegionBackendServiceLoadBalancingScheme string @@ -22832,12 +22069,6 @@ func (in *regionBackendServiceLoadBalancingSchemePtr) ToRegionBackendServiceLoad return pulumi.ToOutputWithContext(ctx, in).(RegionBackendServiceLoadBalancingSchemePtrOutput) } -func (in *regionBackendServiceLoadBalancingSchemePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionBackendServiceLoadBalancingScheme] { - return pulumix.Output[*RegionBackendServiceLoadBalancingScheme]{ - OutputState: in.ToRegionBackendServiceLoadBalancingSchemePtrOutputWithContext(ctx).OutputState, - } -} - // The load balancing algorithm used within the scope of the locality. The possible values are: - ROUND_ROBIN: This is a simple policy in which each healthy backend is selected in round robin order. This is the default. - LEAST_REQUEST: An O(1) algorithm which selects two random healthy hosts and picks the host which has fewer active requests. - RING_HASH: The ring/modulo hash load balancer implements consistent hashing to backends. The algorithm has the property that the addition/removal of a host from a set of N hosts only affects 1/N of the requests. - RANDOM: The load balancer selects a random healthy host. - ORIGINAL_DESTINATION: Backend host is selected based on the client connection metadata, i.e., connections are opened to the same address as the destination address of the incoming connection before the connection was redirected to the load balancer. - MAGLEV: used as a drop in replacement for the ring hash load balancer. Maglev is not as stable as ring hash but has faster table lookup build times and host selection times. For more information about Maglev, see https://ai.google/research/pubs/pub44824 This field is applicable to either: - A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2, and load_balancing_scheme set to INTERNAL_MANAGED. - A global backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED, INTERNAL_MANAGED, or EXTERNAL_MANAGED. If sessionAffinity is not NONE, and this field is not set to MAGLEV or RING_HASH, session affinity settings will not take effect. Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced by a URL map that is bound to target gRPC proxy that has validateForProxyless field set to true. type RegionBackendServiceLocalityLbPolicy string @@ -23023,12 +22254,6 @@ func (in *regionBackendServiceLocalityLbPolicyPtr) ToRegionBackendServiceLocalit return pulumi.ToOutputWithContext(ctx, in).(RegionBackendServiceLocalityLbPolicyPtrOutput) } -func (in *regionBackendServiceLocalityLbPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionBackendServiceLocalityLbPolicy] { - return pulumix.Output[*RegionBackendServiceLocalityLbPolicy]{ - OutputState: in.ToRegionBackendServiceLocalityLbPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // The protocol this BackendService uses to communicate with backends. Possible values are HTTP, HTTPS, HTTP2, TCP, SSL, UDP or GRPC. depending on the chosen load balancer or Traffic Director configuration. Refer to the documentation for the load balancers or for Traffic Director for more information. Must be set to GRPC when the backend service is referenced by a URL map that is bound to target gRPC proxy. type RegionBackendServiceProtocol string @@ -23213,12 +22438,6 @@ func (in *regionBackendServiceProtocolPtr) ToRegionBackendServiceProtocolPtrOutp return pulumi.ToOutputWithContext(ctx, in).(RegionBackendServiceProtocolPtrOutput) } -func (in *regionBackendServiceProtocolPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionBackendServiceProtocol] { - return pulumix.Output[*RegionBackendServiceProtocol]{ - OutputState: in.ToRegionBackendServiceProtocolPtrOutputWithContext(ctx).OutputState, - } -} - // Type of session affinity to use. The default is NONE. Only NONE and HEADER_FIELD are supported when the backend service is referenced by a URL map that is bound to target gRPC proxy that has validateForProxyless field set to true. For more details, see: [Session Affinity](https://cloud.google.com/load-balancing/docs/backend-service#session_affinity). type RegionBackendServiceSessionAffinity string @@ -23405,12 +22624,6 @@ func (in *regionBackendServiceSessionAffinityPtr) ToRegionBackendServiceSessionA return pulumi.ToOutputWithContext(ctx, in).(RegionBackendServiceSessionAffinityPtrOutput) } -func (in *regionBackendServiceSessionAffinityPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionBackendServiceSessionAffinity] { - return pulumix.Output[*RegionBackendServiceSessionAffinity]{ - OutputState: in.ToRegionBackendServiceSessionAffinityPtrOutputWithContext(ctx).OutputState, - } -} - // The category of the commitment. Category MACHINE specifies commitments composed of machine resources such as VCPU or MEMORY, listed in resources. Category LICENSE specifies commitments composed of software licenses, listed in licenseResources. Note that only MACHINE commitments should have a Type specified. type RegionCommitmentCategory string @@ -23579,12 +22792,6 @@ func (in *regionCommitmentCategoryPtr) ToRegionCommitmentCategoryPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(RegionCommitmentCategoryPtrOutput) } -func (in *regionCommitmentCategoryPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionCommitmentCategory] { - return pulumix.Output[*RegionCommitmentCategory]{ - OutputState: in.ToRegionCommitmentCategoryPtrOutputWithContext(ctx).OutputState, - } -} - // The plan for this commitment, which determines duration and discount rate. The currently supported plans are TWELVE_MONTH (1 year), and THIRTY_SIX_MONTH (3 years). type RegionCommitmentPlan string @@ -23753,12 +22960,6 @@ func (in *regionCommitmentPlanPtr) ToRegionCommitmentPlanPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(RegionCommitmentPlanPtrOutput) } -func (in *regionCommitmentPlanPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionCommitmentPlan] { - return pulumix.Output[*RegionCommitmentPlan]{ - OutputState: in.ToRegionCommitmentPlanPtrOutputWithContext(ctx).OutputState, - } -} - // The type of commitment, which affects the discount rate and the eligible resources. Type MEMORY_OPTIMIZED specifies a commitment that will only apply to memory optimized machines. Type ACCELERATOR_OPTIMIZED specifies a commitment that will only apply to accelerator optimized machines. type RegionCommitmentType string @@ -23953,12 +23154,6 @@ func (in *regionCommitmentTypePtr) ToRegionCommitmentTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(RegionCommitmentTypePtrOutput) } -func (in *regionCommitmentTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionCommitmentType] { - return pulumix.Output[*RegionCommitmentType]{ - OutputState: in.ToRegionCommitmentTypePtrOutputWithContext(ctx).OutputState, - } -} - // The architecture of the disk. Valid values are ARM64 or X86_64. type RegionDiskArchitecture string @@ -24130,12 +23325,6 @@ func (in *regionDiskArchitecturePtr) ToRegionDiskArchitecturePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(RegionDiskArchitecturePtrOutput) } -func (in *regionDiskArchitecturePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionDiskArchitecture] { - return pulumix.Output[*RegionDiskArchitecture]{ - OutputState: in.ToRegionDiskArchitecturePtrOutputWithContext(ctx).OutputState, - } -} - // [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. type RegionDiskInterface string @@ -24304,12 +23493,6 @@ func (in *regionDiskInterfacePtr) ToRegionDiskInterfacePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(RegionDiskInterfacePtrOutput) } -func (in *regionDiskInterfacePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionDiskInterface] { - return pulumix.Output[*RegionDiskInterface]{ - OutputState: in.ToRegionDiskInterfacePtrOutputWithContext(ctx).OutputState, - } -} - // [Deprecated] Storage type of the persistent disk. type RegionDiskStorageType string @@ -24476,12 +23659,6 @@ func (in *regionDiskStorageTypePtr) ToRegionDiskStorageTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(RegionDiskStorageTypePtrOutput) } -func (in *regionDiskStorageTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionDiskStorageType] { - return pulumix.Output[*RegionDiskStorageType]{ - OutputState: in.ToRegionDiskStorageTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Policy for how the results from multiple health checks for the same endpoint are aggregated. Defaults to NO_AGGREGATION if unspecified. - NO_AGGREGATION. An EndpointHealth message is returned for each pair in the health check service. - AND. If any health check of an endpoint reports UNHEALTHY, then UNHEALTHY is the HealthState of the endpoint. If all health checks report HEALTHY, the HealthState of the endpoint is HEALTHY. . This is only allowed with regional HealthCheckService. type RegionHealthCheckServiceHealthStatusAggregationPolicy string @@ -24650,12 +23827,6 @@ func (in *regionHealthCheckServiceHealthStatusAggregationPolicyPtr) ToRegionHeal return pulumi.ToOutputWithContext(ctx, in).(RegionHealthCheckServiceHealthStatusAggregationPolicyPtrOutput) } -func (in *regionHealthCheckServiceHealthStatusAggregationPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionHealthCheckServiceHealthStatusAggregationPolicy] { - return pulumix.Output[*RegionHealthCheckServiceHealthStatusAggregationPolicy]{ - OutputState: in.ToRegionHealthCheckServiceHealthStatusAggregationPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. . type RegionHealthCheckServiceHealthStatusAggregationStrategy string @@ -24824,12 +23995,6 @@ func (in *regionHealthCheckServiceHealthStatusAggregationStrategyPtr) ToRegionHe return pulumi.ToOutputWithContext(ctx, in).(RegionHealthCheckServiceHealthStatusAggregationStrategyPtrOutput) } -func (in *regionHealthCheckServiceHealthStatusAggregationStrategyPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionHealthCheckServiceHealthStatusAggregationStrategy] { - return pulumix.Output[*RegionHealthCheckServiceHealthStatusAggregationStrategy]{ - OutputState: in.ToRegionHealthCheckServiceHealthStatusAggregationStrategyPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of the healthCheck, either TCP, SSL, HTTP, HTTPS, HTTP2 or GRPC. Exactly one of the protocol-specific health check fields must be specified, which must match type field. type RegionHealthCheckType string @@ -25006,12 +24171,6 @@ func (in *regionHealthCheckTypePtr) ToRegionHealthCheckTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(RegionHealthCheckTypePtrOutput) } -func (in *regionHealthCheckTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionHealthCheckType] { - return pulumix.Output[*RegionHealthCheckType]{ - OutputState: in.ToRegionHealthCheckTypePtrOutputWithContext(ctx).OutputState, - } -} - // The action to perform in case of zone failure. Only one value is supported, NO_FAILOVER. The default is NO_FAILOVER. type RegionInstanceGroupManagerFailoverAction string @@ -25178,12 +24337,6 @@ func (in *regionInstanceGroupManagerFailoverActionPtr) ToRegionInstanceGroupMana return pulumi.ToOutputWithContext(ctx, in).(RegionInstanceGroupManagerFailoverActionPtrOutput) } -func (in *regionInstanceGroupManagerFailoverActionPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionInstanceGroupManagerFailoverAction] { - return pulumix.Output[*RegionInstanceGroupManagerFailoverAction]{ - OutputState: in.ToRegionInstanceGroupManagerFailoverActionPtrOutputWithContext(ctx).OutputState, - } -} - // Pagination behavior of the listManagedInstances API method for this managed instance group. type RegionInstanceGroupManagerListManagedInstancesResults string @@ -25352,12 +24505,6 @@ func (in *regionInstanceGroupManagerListManagedInstancesResultsPtr) ToRegionInst return pulumi.ToOutputWithContext(ctx, in).(RegionInstanceGroupManagerListManagedInstancesResultsPtrOutput) } -func (in *regionInstanceGroupManagerListManagedInstancesResultsPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionInstanceGroupManagerListManagedInstancesResults] { - return pulumix.Output[*RegionInstanceGroupManagerListManagedInstancesResults]{ - OutputState: in.ToRegionInstanceGroupManagerListManagedInstancesResultsPtrOutputWithContext(ctx).OutputState, - } -} - // Type of network endpoints in this network endpoint group. Can be one of GCE_VM_IP, GCE_VM_IP_PORT, NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT, INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT. type RegionNetworkEndpointGroupNetworkEndpointType string @@ -25541,12 +24688,6 @@ func (in *regionNetworkEndpointGroupNetworkEndpointTypePtr) ToRegionNetworkEndpo return pulumi.ToOutputWithContext(ctx, in).(RegionNetworkEndpointGroupNetworkEndpointTypePtrOutput) } -func (in *regionNetworkEndpointGroupNetworkEndpointTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionNetworkEndpointGroupNetworkEndpointType] { - return pulumix.Output[*RegionNetworkEndpointGroupNetworkEndpointType]{ - OutputState: in.ToRegionNetworkEndpointGroupNetworkEndpointTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type indicates the intended use of the security policy. - CLOUD_ARMOR: Cloud Armor backend security policies can be configured to filter incoming HTTP requests targeting backend services. They filter requests before they hit the origin servers. - CLOUD_ARMOR_EDGE: Cloud Armor edge security policies can be configured to filter incoming HTTP requests targeting backend services (including Cloud CDN-enabled) as well as backend buckets (Cloud Storage). They filter requests before the request is served from Google's cache. - CLOUD_ARMOR_INTERNAL_SERVICE: Cloud Armor internal service policies can be configured to filter HTTP requests targeting services managed by Traffic Director in a service mesh. They filter requests before the request is served from the application. - CLOUD_ARMOR_NETWORK: Cloud Armor network policies can be configured to filter packets targeting network load balancing resources such as backend services, target pools, target instances, and instances with external IPs. They filter requests before the request is served from the application. This field can be set only at resource creation time. type RegionSecurityPolicyType string @@ -25717,12 +24858,6 @@ func (in *regionSecurityPolicyTypePtr) ToRegionSecurityPolicyTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(RegionSecurityPolicyTypePtrOutput) } -func (in *regionSecurityPolicyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionSecurityPolicyType] { - return pulumix.Output[*RegionSecurityPolicyType]{ - OutputState: in.ToRegionSecurityPolicyTypePtrOutputWithContext(ctx).OutputState, - } -} - // (Optional) Specifies the type of SSL certificate, either "SELF_MANAGED" or "MANAGED". If not specified, the certificate is self-managed and the fields certificate and private_key are used. type RegionSslCertificateType string @@ -25893,12 +25028,6 @@ func (in *regionSslCertificateTypePtr) ToRegionSslCertificateTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(RegionSslCertificateTypePtrOutput) } -func (in *regionSslCertificateTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionSslCertificateType] { - return pulumix.Output[*RegionSslCertificateType]{ - OutputState: in.ToRegionSslCertificateTypePtrOutputWithContext(ctx).OutputState, - } -} - // The minimum version of SSL protocol that can be used by the clients to establish a connection with the load balancer. This can be one of TLS_1_0, TLS_1_1, TLS_1_2. type RegionSslPolicyMinTlsVersion string @@ -26070,12 +25199,6 @@ func (in *regionSslPolicyMinTlsVersionPtr) ToRegionSslPolicyMinTlsVersionPtrOutp return pulumi.ToOutputWithContext(ctx, in).(RegionSslPolicyMinTlsVersionPtrOutput) } -func (in *regionSslPolicyMinTlsVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionSslPolicyMinTlsVersion] { - return pulumix.Output[*RegionSslPolicyMinTlsVersion]{ - OutputState: in.ToRegionSslPolicyMinTlsVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Profile specifies the set of SSL features that can be used by the load balancer when negotiating SSL with clients. This can be one of COMPATIBLE, MODERN, RESTRICTED, or CUSTOM. If using CUSTOM, the set of SSL features to enable must be specified in the customFeatures field. type RegionSslPolicyProfile string @@ -26250,12 +25373,6 @@ func (in *regionSslPolicyProfilePtr) ToRegionSslPolicyProfilePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(RegionSslPolicyProfilePtrOutput) } -func (in *regionSslPolicyProfilePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionSslPolicyProfile] { - return pulumix.Output[*RegionSslPolicyProfile]{ - OutputState: in.ToRegionSslPolicyProfilePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the QUIC override policy for this TargetHttpsProxy resource. This setting determines whether the load balancer attempts to negotiate QUIC with clients. You can specify NONE, ENABLE, or DISABLE. - When quic-override is set to NONE, Google manages whether QUIC is used. - When quic-override is set to ENABLE, the load balancer uses QUIC when possible. - When quic-override is set to DISABLE, the load balancer doesn't use QUIC. - If the quic-override flag is not specified, NONE is implied. type RegionTargetHttpsProxyQuicOverride string @@ -26427,12 +25544,6 @@ func (in *regionTargetHttpsProxyQuicOverridePtr) ToRegionTargetHttpsProxyQuicOve return pulumi.ToOutputWithContext(ctx, in).(RegionTargetHttpsProxyQuicOverridePtrOutput) } -func (in *regionTargetHttpsProxyQuicOverridePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionTargetHttpsProxyQuicOverride] { - return pulumix.Output[*RegionTargetHttpsProxyQuicOverride]{ - OutputState: in.ToRegionTargetHttpsProxyQuicOverridePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type RegionTargetTcpProxyProxyHeader string @@ -26599,12 +25710,6 @@ func (in *regionTargetTcpProxyProxyHeaderPtr) ToRegionTargetTcpProxyProxyHeaderP return pulumi.ToOutputWithContext(ctx, in).(RegionTargetTcpProxyProxyHeaderPtrOutput) } -func (in *regionTargetTcpProxyProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionTargetTcpProxyProxyHeader] { - return pulumix.Output[*RegionTargetTcpProxyProxyHeader]{ - OutputState: in.ToRegionTargetTcpProxyProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of reservation from which this instance can consume resources: ANY_RESERVATION (default), SPECIFIC_RESERVATION, or NO_RESERVATION. See Consuming reserved instances for examples. type ReservationAffinityConsumeReservationType string @@ -26784,12 +25889,6 @@ func (in *reservationAffinityConsumeReservationTypePtr) ToReservationAffinityCon return pulumi.ToOutputWithContext(ctx, in).(ReservationAffinityConsumeReservationTypePtrOutput) } -func (in *reservationAffinityConsumeReservationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ReservationAffinityConsumeReservationType] { - return pulumix.Output[*ReservationAffinityConsumeReservationType]{ - OutputState: in.ToReservationAffinityConsumeReservationTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of resource for which this commitment applies. Possible values are VCPU, MEMORY, LOCAL_SSD, and ACCELERATOR. type ResourceCommitmentType string @@ -26962,12 +26061,6 @@ func (in *resourceCommitmentTypePtr) ToResourceCommitmentTypePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(ResourceCommitmentTypePtrOutput) } -func (in *resourceCommitmentTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ResourceCommitmentType] { - return pulumix.Output[*ResourceCommitmentType]{ - OutputState: in.ToResourceCommitmentTypePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies network collocation type ResourcePolicyGroupPlacementPolicyCollocation string @@ -27134,12 +26227,6 @@ func (in *resourcePolicyGroupPlacementPolicyCollocationPtr) ToResourcePolicyGrou return pulumi.ToOutputWithContext(ctx, in).(ResourcePolicyGroupPlacementPolicyCollocationPtrOutput) } -func (in *resourcePolicyGroupPlacementPolicyCollocationPtr) ToOutput(ctx context.Context) pulumix.Output[*ResourcePolicyGroupPlacementPolicyCollocation] { - return pulumix.Output[*ResourcePolicyGroupPlacementPolicyCollocation]{ - OutputState: in.ToResourcePolicyGroupPlacementPolicyCollocationPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the behavior to apply to scheduled snapshots when the source disk is deleted. type ResourcePolicySnapshotSchedulePolicyRetentionPolicyOnSourceDiskDelete string @@ -27308,12 +26395,6 @@ func (in *resourcePolicySnapshotSchedulePolicyRetentionPolicyOnSourceDiskDeleteP return pulumi.ToOutputWithContext(ctx, in).(ResourcePolicySnapshotSchedulePolicyRetentionPolicyOnSourceDiskDeletePtrOutput) } -func (in *resourcePolicySnapshotSchedulePolicyRetentionPolicyOnSourceDiskDeletePtr) ToOutput(ctx context.Context) pulumix.Output[*ResourcePolicySnapshotSchedulePolicyRetentionPolicyOnSourceDiskDelete] { - return pulumix.Output[*ResourcePolicySnapshotSchedulePolicyRetentionPolicyOnSourceDiskDelete]{ - OutputState: in.ToResourcePolicySnapshotSchedulePolicyRetentionPolicyOnSourceDiskDeletePtrOutputWithContext(ctx).OutputState, - } -} - // Defines a schedule that runs on specific days of the week. Specify one or more days. The following options are available: MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY. type ResourcePolicyWeeklyCycleDayOfWeekDay string @@ -27492,12 +26573,6 @@ func (in *resourcePolicyWeeklyCycleDayOfWeekDayPtr) ToResourcePolicyWeeklyCycleD return pulumi.ToOutputWithContext(ctx, in).(ResourcePolicyWeeklyCycleDayOfWeekDayPtrOutput) } -func (in *resourcePolicyWeeklyCycleDayOfWeekDayPtr) ToOutput(ctx context.Context) pulumix.Output[*ResourcePolicyWeeklyCycleDayOfWeekDay] { - return pulumix.Output[*ResourcePolicyWeeklyCycleDayOfWeekDay]{ - OutputState: in.ToResourcePolicyWeeklyCycleDayOfWeekDayPtrOutputWithContext(ctx).OutputState, - } -} - // User-specified flag to indicate which mode to use for advertisement. The options are DEFAULT or CUSTOM. type RouterBgpAdvertiseMode string @@ -27664,12 +26739,6 @@ func (in *routerBgpAdvertiseModePtr) ToRouterBgpAdvertiseModePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(RouterBgpAdvertiseModePtrOutput) } -func (in *routerBgpAdvertiseModePtr) ToOutput(ctx context.Context) pulumix.Output[*RouterBgpAdvertiseMode] { - return pulumix.Output[*RouterBgpAdvertiseMode]{ - OutputState: in.ToRouterBgpAdvertiseModePtrOutputWithContext(ctx).OutputState, - } -} - type RouterBgpAdvertisedGroupsItem string const ( @@ -27834,12 +26903,6 @@ func (in *routerBgpAdvertisedGroupsItemPtr) ToRouterBgpAdvertisedGroupsItemPtrOu return pulumi.ToOutputWithContext(ctx, in).(RouterBgpAdvertisedGroupsItemPtrOutput) } -func (in *routerBgpAdvertisedGroupsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterBgpAdvertisedGroupsItem] { - return pulumix.Output[*RouterBgpAdvertisedGroupsItem]{ - OutputState: in.ToRouterBgpAdvertisedGroupsItemPtrOutputWithContext(ctx).OutputState, - } -} - // RouterBgpAdvertisedGroupsItemArrayInput is an input type that accepts RouterBgpAdvertisedGroupsItemArray and RouterBgpAdvertisedGroupsItemArrayOutput values. // You can construct a concrete instance of `RouterBgpAdvertisedGroupsItemArrayInput` via: // @@ -28051,12 +27114,6 @@ func (in *routerBgpPeerAdvertiseModePtr) ToRouterBgpPeerAdvertiseModePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(RouterBgpPeerAdvertiseModePtrOutput) } -func (in *routerBgpPeerAdvertiseModePtr) ToOutput(ctx context.Context) pulumix.Output[*RouterBgpPeerAdvertiseMode] { - return pulumix.Output[*RouterBgpPeerAdvertiseMode]{ - OutputState: in.ToRouterBgpPeerAdvertiseModePtrOutputWithContext(ctx).OutputState, - } -} - type RouterBgpPeerAdvertisedGroupsItem string const ( @@ -28221,12 +27278,6 @@ func (in *routerBgpPeerAdvertisedGroupsItemPtr) ToRouterBgpPeerAdvertisedGroupsI return pulumi.ToOutputWithContext(ctx, in).(RouterBgpPeerAdvertisedGroupsItemPtrOutput) } -func (in *routerBgpPeerAdvertisedGroupsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterBgpPeerAdvertisedGroupsItem] { - return pulumix.Output[*RouterBgpPeerAdvertisedGroupsItem]{ - OutputState: in.ToRouterBgpPeerAdvertisedGroupsItemPtrOutputWithContext(ctx).OutputState, - } -} - // RouterBgpPeerAdvertisedGroupsItemArrayInput is an input type that accepts RouterBgpPeerAdvertisedGroupsItemArray and RouterBgpPeerAdvertisedGroupsItemArrayOutput values. // You can construct a concrete instance of `RouterBgpPeerAdvertisedGroupsItemArrayInput` via: // @@ -28440,12 +27491,6 @@ func (in *routerBgpPeerBfdSessionInitializationModePtr) ToRouterBgpPeerBfdSessio return pulumi.ToOutputWithContext(ctx, in).(RouterBgpPeerBfdSessionInitializationModePtrOutput) } -func (in *routerBgpPeerBfdSessionInitializationModePtr) ToOutput(ctx context.Context) pulumix.Output[*RouterBgpPeerBfdSessionInitializationMode] { - return pulumix.Output[*RouterBgpPeerBfdSessionInitializationMode]{ - OutputState: in.ToRouterBgpPeerBfdSessionInitializationModePtrOutputWithContext(ctx).OutputState, - } -} - // The status of the BGP peer connection. If set to FALSE, any active session with the peer is terminated and all associated routing information is removed. If set to TRUE, the peer connection can be established with routing information. The default is TRUE. type RouterBgpPeerEnable string @@ -28612,12 +27657,6 @@ func (in *routerBgpPeerEnablePtr) ToRouterBgpPeerEnablePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(RouterBgpPeerEnablePtrOutput) } -func (in *routerBgpPeerEnablePtr) ToOutput(ctx context.Context) pulumix.Output[*RouterBgpPeerEnable] { - return pulumix.Output[*RouterBgpPeerEnable]{ - OutputState: in.ToRouterBgpPeerEnablePtrOutputWithContext(ctx).OutputState, - } -} - // IP version of this interface. type RouterInterfaceIpVersion string @@ -28784,12 +27823,6 @@ func (in *routerInterfaceIpVersionPtr) ToRouterInterfaceIpVersionPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(RouterInterfaceIpVersionPtrOutput) } -func (in *routerInterfaceIpVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterInterfaceIpVersion] { - return pulumix.Output[*RouterInterfaceIpVersion]{ - OutputState: in.ToRouterInterfaceIpVersionPtrOutputWithContext(ctx).OutputState, - } -} - // The network tier to use when automatically reserving NAT IP addresses. Must be one of: PREMIUM, STANDARD. If not specified, then the current project-level default tier is used. type RouterNatAutoNetworkTier string @@ -28964,12 +27997,6 @@ func (in *routerNatAutoNetworkTierPtr) ToRouterNatAutoNetworkTierPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(RouterNatAutoNetworkTierPtrOutput) } -func (in *routerNatAutoNetworkTierPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterNatAutoNetworkTier] { - return pulumix.Output[*RouterNatAutoNetworkTier]{ - OutputState: in.ToRouterNatAutoNetworkTierPtrOutputWithContext(ctx).OutputState, - } -} - type RouterNatEndpointTypesItem string const ( @@ -29140,12 +28167,6 @@ func (in *routerNatEndpointTypesItemPtr) ToRouterNatEndpointTypesItemPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(RouterNatEndpointTypesItemPtrOutput) } -func (in *routerNatEndpointTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterNatEndpointTypesItem] { - return pulumix.Output[*RouterNatEndpointTypesItem]{ - OutputState: in.ToRouterNatEndpointTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // RouterNatEndpointTypesItemArrayInput is an input type that accepts RouterNatEndpointTypesItemArray and RouterNatEndpointTypesItemArrayOutput values. // You can construct a concrete instance of `RouterNatEndpointTypesItemArrayInput` via: // @@ -29362,12 +28383,6 @@ func (in *routerNatLogConfigFilterPtr) ToRouterNatLogConfigFilterPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(RouterNatLogConfigFilterPtrOutput) } -func (in *routerNatLogConfigFilterPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterNatLogConfigFilter] { - return pulumix.Output[*RouterNatLogConfigFilter]{ - OutputState: in.ToRouterNatLogConfigFilterPtrOutputWithContext(ctx).OutputState, - } -} - // Specify the NatIpAllocateOption, which can take one of the following values: - MANUAL_ONLY: Uses only Nat IP addresses provided by customers. When there are not enough specified Nat IPs, the Nat service fails for new VMs. - AUTO_ONLY: Nat IPs are allocated by Google Cloud Platform; customers can't specify any Nat IPs. When choosing AUTO_ONLY, then nat_ip should be empty. type RouterNatNatIpAllocateOption string @@ -29536,12 +28551,6 @@ func (in *routerNatNatIpAllocateOptionPtr) ToRouterNatNatIpAllocateOptionPtrOutp return pulumi.ToOutputWithContext(ctx, in).(RouterNatNatIpAllocateOptionPtrOutput) } -func (in *routerNatNatIpAllocateOptionPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterNatNatIpAllocateOption] { - return pulumix.Output[*RouterNatNatIpAllocateOption]{ - OutputState: in.ToRouterNatNatIpAllocateOptionPtrOutputWithContext(ctx).OutputState, - } -} - // Specify the Nat option, which can take one of the following values: - ALL_SUBNETWORKS_ALL_IP_RANGES: All of the IP ranges in every Subnetwork are allowed to Nat. - ALL_SUBNETWORKS_ALL_PRIMARY_IP_RANGES: All of the primary IP ranges in every Subnetwork are allowed to Nat. - LIST_OF_SUBNETWORKS: A list of Subnetworks are allowed to Nat (specified in the field subnetwork below) The default is SUBNETWORK_IP_RANGE_TO_NAT_OPTION_UNSPECIFIED. Note that if this field contains ALL_SUBNETWORKS_ALL_IP_RANGES then there should not be any other Router.Nat section in any Router for this network in this region. type RouterNatSourceSubnetworkIpRangesToNat string @@ -29713,12 +28722,6 @@ func (in *routerNatSourceSubnetworkIpRangesToNatPtr) ToRouterNatSourceSubnetwork return pulumi.ToOutputWithContext(ctx, in).(RouterNatSourceSubnetworkIpRangesToNatPtrOutput) } -func (in *routerNatSourceSubnetworkIpRangesToNatPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterNatSourceSubnetworkIpRangesToNat] { - return pulumix.Output[*RouterNatSourceSubnetworkIpRangesToNat]{ - OutputState: in.ToRouterNatSourceSubnetworkIpRangesToNatPtrOutputWithContext(ctx).OutputState, - } -} - type RouterNatSubnetworkToNatSourceIpRangesToNatItem string const ( @@ -29889,12 +28892,6 @@ func (in *routerNatSubnetworkToNatSourceIpRangesToNatItemPtr) ToRouterNatSubnetw return pulumi.ToOutputWithContext(ctx, in).(RouterNatSubnetworkToNatSourceIpRangesToNatItemPtrOutput) } -func (in *routerNatSubnetworkToNatSourceIpRangesToNatItemPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterNatSubnetworkToNatSourceIpRangesToNatItem] { - return pulumix.Output[*RouterNatSubnetworkToNatSourceIpRangesToNatItem]{ - OutputState: in.ToRouterNatSubnetworkToNatSourceIpRangesToNatItemPtrOutputWithContext(ctx).OutputState, - } -} - // RouterNatSubnetworkToNatSourceIpRangesToNatItemArrayInput is an input type that accepts RouterNatSubnetworkToNatSourceIpRangesToNatItemArray and RouterNatSubnetworkToNatSourceIpRangesToNatItemArrayOutput values. // You can construct a concrete instance of `RouterNatSubnetworkToNatSourceIpRangesToNatItemArrayInput` via: // @@ -30108,12 +29105,6 @@ func (in *routerNatTypePtr) ToRouterNatTypePtrOutputWithContext(ctx context.Cont return pulumi.ToOutputWithContext(ctx, in).(RouterNatTypePtrOutput) } -func (in *routerNatTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RouterNatType] { - return pulumix.Output[*RouterNatType]{ - OutputState: in.ToRouterNatTypePtrOutputWithContext(ctx).OutputState, - } -} - // This is deprecated and has no effect. Do not use. type RuleAction string @@ -30294,12 +29285,6 @@ func (in *ruleActionPtr) ToRuleActionPtrOutputWithContext(ctx context.Context) R return pulumi.ToOutputWithContext(ctx, in).(RuleActionPtrOutput) } -func (in *ruleActionPtr) ToOutput(ctx context.Context) pulumix.Output[*RuleAction] { - return pulumix.Output[*RuleAction]{ - OutputState: in.ToRuleActionPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how a port is selected for health checking. Can be one of the following values: USE_FIXED_PORT: Specifies a port number explicitly using the port field in the health check. Supported by backend services for pass-through load balancers and backend services for proxy load balancers. Not supported by target pools. The health check supports all backends supported by the backend service provided the backend can be health checked. For example, GCE_VM_IP network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an indirect method of specifying the health check port by referring to the backend service. Only supported by backend services for proxy load balancers. Not supported by target pools. Not supported by backend services for pass-through load balancers. Supports all backends that can be health checked; for example, GCE_VM_IP_PORT network endpoint groups and instance group backends. For GCE_VM_IP_PORT network endpoint group backends, the health check uses the port number specified for each endpoint in the network endpoint group. For instance group backends, the health check uses the port number determined by looking up the backend service's named port in the instance group's list of named ports. type SSLHealthCheckPortSpecification string @@ -30471,12 +29456,6 @@ func (in *sslhealthCheckPortSpecificationPtr) ToSSLHealthCheckPortSpecificationP return pulumi.ToOutputWithContext(ctx, in).(SSLHealthCheckPortSpecificationPtrOutput) } -func (in *sslhealthCheckPortSpecificationPtr) ToOutput(ctx context.Context) pulumix.Output[*SSLHealthCheckPortSpecification] { - return pulumix.Output[*SSLHealthCheckPortSpecification]{ - OutputState: in.ToSSLHealthCheckPortSpecificationPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type SSLHealthCheckProxyHeader string @@ -30643,12 +29622,6 @@ func (in *sslhealthCheckProxyHeaderPtr) ToSSLHealthCheckProxyHeaderPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(SSLHealthCheckProxyHeaderPtrOutput) } -func (in *sslhealthCheckProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*SSLHealthCheckProxyHeader] { - return pulumix.Output[*SSLHealthCheckProxyHeader]{ - OutputState: in.ToSSLHealthCheckProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the termination action for the instance. type SchedulingInstanceTerminationAction string @@ -30820,12 +29793,6 @@ func (in *schedulingInstanceTerminationActionPtr) ToSchedulingInstanceTerminatio return pulumi.ToOutputWithContext(ctx, in).(SchedulingInstanceTerminationActionPtrOutput) } -func (in *schedulingInstanceTerminationActionPtr) ToOutput(ctx context.Context) pulumix.Output[*SchedulingInstanceTerminationAction] { - return pulumix.Output[*SchedulingInstanceTerminationAction]{ - OutputState: in.ToSchedulingInstanceTerminationActionPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the frequency of planned maintenance events. The accepted values are: `PERIODIC`. type SchedulingMaintenanceInterval string @@ -30997,12 +29964,6 @@ func (in *schedulingMaintenanceIntervalPtr) ToSchedulingMaintenanceIntervalPtrOu return pulumi.ToOutputWithContext(ctx, in).(SchedulingMaintenanceIntervalPtrOutput) } -func (in *schedulingMaintenanceIntervalPtr) ToOutput(ctx context.Context) pulumix.Output[*SchedulingMaintenanceInterval] { - return pulumix.Output[*SchedulingMaintenanceInterval]{ - OutputState: in.ToSchedulingMaintenanceIntervalPtrOutputWithContext(ctx).OutputState, - } -} - // Defines the operation of node selection. Valid operators are IN for affinity and NOT_IN for anti-affinity. type SchedulingNodeAffinityOperator string @@ -31173,12 +30134,6 @@ func (in *schedulingNodeAffinityOperatorPtr) ToSchedulingNodeAffinityOperatorPtr return pulumi.ToOutputWithContext(ctx, in).(SchedulingNodeAffinityOperatorPtrOutput) } -func (in *schedulingNodeAffinityOperatorPtr) ToOutput(ctx context.Context) pulumix.Output[*SchedulingNodeAffinityOperator] { - return pulumix.Output[*SchedulingNodeAffinityOperator]{ - OutputState: in.ToSchedulingNodeAffinityOperatorPtrOutputWithContext(ctx).OutputState, - } -} - // Defines the maintenance behavior for this instance. For standard instances, the default behavior is MIGRATE. For preemptible instances, the default and only possible behavior is TERMINATE. For more information, see Set VM host maintenance policy. type SchedulingOnHostMaintenance string @@ -31347,12 +30302,6 @@ func (in *schedulingOnHostMaintenancePtr) ToSchedulingOnHostMaintenancePtrOutput return pulumi.ToOutputWithContext(ctx, in).(SchedulingOnHostMaintenancePtrOutput) } -func (in *schedulingOnHostMaintenancePtr) ToOutput(ctx context.Context) pulumix.Output[*SchedulingOnHostMaintenance] { - return pulumix.Output[*SchedulingOnHostMaintenance]{ - OutputState: in.ToSchedulingOnHostMaintenancePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the provisioning model of the instance. type SchedulingProvisioningModel string @@ -31521,12 +30470,6 @@ func (in *schedulingProvisioningModelPtr) ToSchedulingProvisioningModelPtrOutput return pulumi.ToOutputWithContext(ctx, in).(SchedulingProvisioningModelPtrOutput) } -func (in *schedulingProvisioningModelPtr) ToOutput(ctx context.Context) pulumix.Output[*SchedulingProvisioningModel] { - return pulumix.Output[*SchedulingProvisioningModel]{ - OutputState: in.ToSchedulingProvisioningModelPtrOutputWithContext(ctx).OutputState, - } -} - // Rule visibility can be one of the following: STANDARD - opaque rules. (default) PREMIUM - transparent rules. This field is only supported in Global Security Policies of type CLOUD_ARMOR. type SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigRuleVisibility string @@ -31693,12 +30636,6 @@ func (in *securityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigRuleVisib return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigRuleVisibilityPtrOutput) } -func (in *securityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigRuleVisibilityPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigRuleVisibility] { - return pulumix.Output[*SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigRuleVisibility]{ - OutputState: in.ToSecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigRuleVisibilityPtrOutputWithContext(ctx).OutputState, - } -} - type SecurityPolicyAdvancedOptionsConfigJsonParsing string const ( @@ -31866,12 +30803,6 @@ func (in *securityPolicyAdvancedOptionsConfigJsonParsingPtr) ToSecurityPolicyAdv return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyAdvancedOptionsConfigJsonParsingPtrOutput) } -func (in *securityPolicyAdvancedOptionsConfigJsonParsingPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyAdvancedOptionsConfigJsonParsing] { - return pulumix.Output[*SecurityPolicyAdvancedOptionsConfigJsonParsing]{ - OutputState: in.ToSecurityPolicyAdvancedOptionsConfigJsonParsingPtrOutputWithContext(ctx).OutputState, - } -} - type SecurityPolicyAdvancedOptionsConfigLogLevel string const ( @@ -32037,12 +30968,6 @@ func (in *securityPolicyAdvancedOptionsConfigLogLevelPtr) ToSecurityPolicyAdvanc return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyAdvancedOptionsConfigLogLevelPtrOutput) } -func (in *securityPolicyAdvancedOptionsConfigLogLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyAdvancedOptionsConfigLogLevel] { - return pulumix.Output[*SecurityPolicyAdvancedOptionsConfigLogLevel]{ - OutputState: in.ToSecurityPolicyAdvancedOptionsConfigLogLevelPtrOutputWithContext(ctx).OutputState, - } -} - type SecurityPolicyDdosProtectionConfigDdosProtection string const ( @@ -32210,12 +31135,6 @@ func (in *securityPolicyDdosProtectionConfigDdosProtectionPtr) ToSecurityPolicyD return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyDdosProtectionConfigDdosProtectionPtrOutput) } -func (in *securityPolicyDdosProtectionConfigDdosProtectionPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyDdosProtectionConfigDdosProtection] { - return pulumix.Output[*SecurityPolicyDdosProtectionConfigDdosProtection]{ - OutputState: in.ToSecurityPolicyDdosProtectionConfigDdosProtectionPtrOutputWithContext(ctx).OutputState, - } -} - // The direction in which this rule applies. This field may only be specified when versioned_expr is set to FIREWALL. type SecurityPolicyRuleDirection string @@ -32382,12 +31301,6 @@ func (in *securityPolicyRuleDirectionPtr) ToSecurityPolicyRuleDirectionPtrOutput return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyRuleDirectionPtrOutput) } -func (in *securityPolicyRuleDirectionPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyRuleDirection] { - return pulumix.Output[*SecurityPolicyRuleDirection]{ - OutputState: in.ToSecurityPolicyRuleDirectionPtrOutputWithContext(ctx).OutputState, - } -} - // Preconfigured versioned expression. If this field is specified, config must also be specified. Available preconfigured expressions along with their requirements are: SRC_IPS_V1 - must specify the corresponding src_ip_range field in config. type SecurityPolicyRuleMatcherVersionedExpr string @@ -32555,12 +31468,6 @@ func (in *securityPolicyRuleMatcherVersionedExprPtr) ToSecurityPolicyRuleMatcher return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyRuleMatcherVersionedExprPtrOutput) } -func (in *securityPolicyRuleMatcherVersionedExprPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyRuleMatcherVersionedExpr] { - return pulumix.Output[*SecurityPolicyRuleMatcherVersionedExpr]{ - OutputState: in.ToSecurityPolicyRuleMatcherVersionedExprPtrOutputWithContext(ctx).OutputState, - } -} - // The match operator for the field. type SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParamsOp string @@ -32738,12 +31645,6 @@ func (in *securityPolicyRulePreconfiguredWafConfigExclusionFieldParamsOpPtr) ToS return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParamsOpPtrOutput) } -func (in *securityPolicyRulePreconfiguredWafConfigExclusionFieldParamsOpPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParamsOp] { - return pulumix.Output[*SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParamsOp]{ - OutputState: in.ToSecurityPolicyRulePreconfiguredWafConfigExclusionFieldParamsOpPtrOutputWithContext(ctx).OutputState, - } -} - // Determines the key to enforce the rate_limit_threshold on. Possible values are: - ALL: A single rate limit threshold is applied to all the requests matching this rule. This is the default value if "enforceOnKey" is not configured. - IP: The source IP address of the request is the key. Each IP has this limit enforced separately. - HTTP_HEADER: The value of the HTTP header whose name is configured under "enforceOnKeyName". The key value is truncated to the first 128 bytes of the header value. If no such header is present in the request, the key type defaults to ALL. - XFF_IP: The first IP address (i.e. the originating client IP address) specified in the list of IPs under X-Forwarded-For HTTP header. If no such header is present or the value is not a valid IP, the key defaults to the source IP address of the request i.e. key type IP. - HTTP_COOKIE: The value of the HTTP cookie whose name is configured under "enforceOnKeyName". The key value is truncated to the first 128 bytes of the cookie value. If no such cookie is present in the request, the key type defaults to ALL. - HTTP_PATH: The URL path of the HTTP request. The key value is truncated to the first 128 bytes. - SNI: Server name indication in the TLS session of the HTTPS request. The key value is truncated to the first 128 bytes. The key type defaults to ALL on a HTTP session. - REGION_CODE: The country/region from which the request originates. type SecurityPolicyRuleRateLimitOptionsEnforceOnKey string @@ -32924,12 +31825,6 @@ func (in *securityPolicyRuleRateLimitOptionsEnforceOnKeyPtr) ToSecurityPolicyRul return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyRuleRateLimitOptionsEnforceOnKeyPtrOutput) } -func (in *securityPolicyRuleRateLimitOptionsEnforceOnKeyPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyRuleRateLimitOptionsEnforceOnKey] { - return pulumix.Output[*SecurityPolicyRuleRateLimitOptionsEnforceOnKey]{ - OutputState: in.ToSecurityPolicyRuleRateLimitOptionsEnforceOnKeyPtrOutputWithContext(ctx).OutputState, - } -} - // Determines the key to enforce the rate_limit_threshold on. Possible values are: - ALL: A single rate limit threshold is applied to all the requests matching this rule. This is the default value if "enforceOnKeyConfigs" is not configured. - IP: The source IP address of the request is the key. Each IP has this limit enforced separately. - HTTP_HEADER: The value of the HTTP header whose name is configured under "enforceOnKeyName". The key value is truncated to the first 128 bytes of the header value. If no such header is present in the request, the key type defaults to ALL. - XFF_IP: The first IP address (i.e. the originating client IP address) specified in the list of IPs under X-Forwarded-For HTTP header. If no such header is present or the value is not a valid IP, the key defaults to the source IP address of the request i.e. key type IP. - HTTP_COOKIE: The value of the HTTP cookie whose name is configured under "enforceOnKeyName". The key value is truncated to the first 128 bytes of the cookie value. If no such cookie is present in the request, the key type defaults to ALL. - HTTP_PATH: The URL path of the HTTP request. The key value is truncated to the first 128 bytes. - SNI: Server name indication in the TLS session of the HTTPS request. The key value is truncated to the first 128 bytes. The key type defaults to ALL on a HTTP session. - REGION_CODE: The country/region from which the request originates. type SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfigEnforceOnKeyType string @@ -33110,12 +32005,6 @@ func (in *securityPolicyRuleRateLimitOptionsEnforceOnKeyConfigEnforceOnKeyTypePt return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfigEnforceOnKeyTypePtrOutput) } -func (in *securityPolicyRuleRateLimitOptionsEnforceOnKeyConfigEnforceOnKeyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfigEnforceOnKeyType] { - return pulumix.Output[*SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfigEnforceOnKeyType]{ - OutputState: in.ToSecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfigEnforceOnKeyTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of the redirect action. type SecurityPolicyRuleRedirectOptionsType string @@ -33282,12 +32171,6 @@ func (in *securityPolicyRuleRedirectOptionsTypePtr) ToSecurityPolicyRuleRedirect return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyRuleRedirectOptionsTypePtrOutput) } -func (in *securityPolicyRuleRedirectOptionsTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyRuleRedirectOptionsType] { - return pulumix.Output[*SecurityPolicyRuleRedirectOptionsType]{ - OutputState: in.ToSecurityPolicyRuleRedirectOptionsTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type indicates the intended use of the security policy. - CLOUD_ARMOR: Cloud Armor backend security policies can be configured to filter incoming HTTP requests targeting backend services. They filter requests before they hit the origin servers. - CLOUD_ARMOR_EDGE: Cloud Armor edge security policies can be configured to filter incoming HTTP requests targeting backend services (including Cloud CDN-enabled) as well as backend buckets (Cloud Storage). They filter requests before the request is served from Google's cache. - CLOUD_ARMOR_INTERNAL_SERVICE: Cloud Armor internal service policies can be configured to filter HTTP requests targeting services managed by Traffic Director in a service mesh. They filter requests before the request is served from the application. - CLOUD_ARMOR_NETWORK: Cloud Armor network policies can be configured to filter packets targeting network load balancing resources such as backend services, target pools, target instances, and instances with external IPs. They filter requests before the request is served from the application. This field can be set only at resource creation time. type SecurityPolicyType string @@ -33458,12 +32341,6 @@ func (in *securityPolicyTypePtr) ToSecurityPolicyTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyTypePtrOutput) } -func (in *securityPolicyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyType] { - return pulumix.Output[*SecurityPolicyType]{ - OutputState: in.ToSecurityPolicyTypePtrOutputWithContext(ctx).OutputState, - } -} - // The base relative to which 'offset' is measured. Possible values are: - IPV4: Points to the beginning of the IPv4 header. - IPV6: Points to the beginning of the IPv6 header. - TCP: Points to the beginning of the TCP header, skipping over any IPv4 options or IPv6 extension headers. Not present for non-first fragments. - UDP: Points to the beginning of the UDP header, skipping over any IPv4 options or IPv6 extension headers. Not present for non-first fragments. required type SecurityPolicyUserDefinedFieldBase string @@ -33634,12 +32511,6 @@ func (in *securityPolicyUserDefinedFieldBasePtr) ToSecurityPolicyUserDefinedFiel return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyUserDefinedFieldBasePtrOutput) } -func (in *securityPolicyUserDefinedFieldBasePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyUserDefinedFieldBase] { - return pulumix.Output[*SecurityPolicyUserDefinedFieldBase]{ - OutputState: in.ToSecurityPolicyUserDefinedFieldBasePtrOutputWithContext(ctx).OutputState, - } -} - type ServerBindingType string const ( @@ -33809,12 +32680,6 @@ func (in *serverBindingTypePtr) ToServerBindingTypePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(ServerBindingTypePtrOutput) } -func (in *serverBindingTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ServerBindingType] { - return pulumix.Output[*ServerBindingType]{ - OutputState: in.ToServerBindingTypePtrOutputWithContext(ctx).OutputState, - } -} - // The connection preference of service attachment. The value can be set to ACCEPT_AUTOMATIC. An ACCEPT_AUTOMATIC service attachment is one that always accepts the connection from consumer forwarding rules. type ServiceAttachmentConnectionPreference string @@ -33983,12 +32848,6 @@ func (in *serviceAttachmentConnectionPreferencePtr) ToServiceAttachmentConnectio return pulumi.ToOutputWithContext(ctx, in).(ServiceAttachmentConnectionPreferencePtrOutput) } -func (in *serviceAttachmentConnectionPreferencePtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceAttachmentConnectionPreference] { - return pulumix.Output[*ServiceAttachmentConnectionPreference]{ - OutputState: in.ToServiceAttachmentConnectionPreferencePtrOutputWithContext(ctx).OutputState, - } -} - // Specify the encapsulation protocol and what metadata to include in incoming encapsulated packet headers. type ServiceAttachmentTunnelingConfigEncapsulationProfile string @@ -34156,12 +33015,6 @@ func (in *serviceAttachmentTunnelingConfigEncapsulationProfilePtr) ToServiceAtta return pulumi.ToOutputWithContext(ctx, in).(ServiceAttachmentTunnelingConfigEncapsulationProfilePtrOutput) } -func (in *serviceAttachmentTunnelingConfigEncapsulationProfilePtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceAttachmentTunnelingConfigEncapsulationProfile] { - return pulumix.Output[*ServiceAttachmentTunnelingConfigEncapsulationProfile]{ - OutputState: in.ToServiceAttachmentTunnelingConfigEncapsulationProfilePtrOutputWithContext(ctx).OutputState, - } -} - // How this Service Attachment will treat traffic sent to the tunnel_ip, destined for the consumer network. type ServiceAttachmentTunnelingConfigRoutingMode string @@ -34332,12 +33185,6 @@ func (in *serviceAttachmentTunnelingConfigRoutingModePtr) ToServiceAttachmentTun return pulumi.ToOutputWithContext(ctx, in).(ServiceAttachmentTunnelingConfigRoutingModePtrOutput) } -func (in *serviceAttachmentTunnelingConfigRoutingModePtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceAttachmentTunnelingConfigRoutingMode] { - return pulumix.Output[*ServiceAttachmentTunnelingConfigRoutingMode]{ - OutputState: in.ToServiceAttachmentTunnelingConfigRoutingModePtrOutputWithContext(ctx).OutputState, - } -} - // Type of sharing for this shared-reservation type ShareSettingsShareType string @@ -34512,12 +33359,6 @@ func (in *shareSettingsShareTypePtr) ToShareSettingsShareTypePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(ShareSettingsShareTypePtrOutput) } -func (in *shareSettingsShareTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ShareSettingsShareType] { - return pulumix.Output[*ShareSettingsShareType]{ - OutputState: in.ToShareSettingsShareTypePtrOutputWithContext(ctx).OutputState, - } -} - // Indicates the type of the snapshot. type SnapshotSnapshotType string @@ -34684,12 +33525,6 @@ func (in *snapshotSnapshotTypePtr) ToSnapshotSnapshotTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(SnapshotSnapshotTypePtrOutput) } -func (in *snapshotSnapshotTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SnapshotSnapshotType] { - return pulumix.Output[*SnapshotSnapshotType]{ - OutputState: in.ToSnapshotSnapshotTypePtrOutputWithContext(ctx).OutputState, - } -} - // (Optional) Specifies the type of SSL certificate, either "SELF_MANAGED" or "MANAGED". If not specified, the certificate is self-managed and the fields certificate and private_key are used. type SslCertificateType string @@ -34860,12 +33695,6 @@ func (in *sslCertificateTypePtr) ToSslCertificateTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(SslCertificateTypePtrOutput) } -func (in *sslCertificateTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SslCertificateType] { - return pulumix.Output[*SslCertificateType]{ - OutputState: in.ToSslCertificateTypePtrOutputWithContext(ctx).OutputState, - } -} - // The minimum version of SSL protocol that can be used by the clients to establish a connection with the load balancer. This can be one of TLS_1_0, TLS_1_1, TLS_1_2. type SslPolicyMinTlsVersion string @@ -35037,12 +33866,6 @@ func (in *sslPolicyMinTlsVersionPtr) ToSslPolicyMinTlsVersionPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(SslPolicyMinTlsVersionPtrOutput) } -func (in *sslPolicyMinTlsVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*SslPolicyMinTlsVersion] { - return pulumix.Output[*SslPolicyMinTlsVersion]{ - OutputState: in.ToSslPolicyMinTlsVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Profile specifies the set of SSL features that can be used by the load balancer when negotiating SSL with clients. This can be one of COMPATIBLE, MODERN, RESTRICTED, or CUSTOM. If using CUSTOM, the set of SSL features to enable must be specified in the customFeatures field. type SslPolicyProfile string @@ -35217,12 +34040,6 @@ func (in *sslPolicyProfilePtr) ToSslPolicyProfilePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(SslPolicyProfilePtrOutput) } -func (in *sslPolicyProfilePtr) ToOutput(ctx context.Context) pulumix.Output[*SslPolicyProfile] { - return pulumix.Output[*SslPolicyProfile]{ - OutputState: in.ToSslPolicyProfilePtrOutputWithContext(ctx).OutputState, - } -} - // The access type of IPv6 address this subnet holds. It's immutable and can only be specified during creation or the first time the subnet is updated into IPV4_IPV6 dual stack. type SubnetworkIpv6AccessType string @@ -35391,12 +34208,6 @@ func (in *subnetworkIpv6AccessTypePtr) ToSubnetworkIpv6AccessTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(SubnetworkIpv6AccessTypePtrOutput) } -func (in *subnetworkIpv6AccessTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkIpv6AccessType] { - return pulumix.Output[*SubnetworkIpv6AccessType]{ - OutputState: in.ToSubnetworkIpv6AccessTypePtrOutputWithContext(ctx).OutputState, - } -} - // Can only be specified if VPC flow logging for this subnetwork is enabled. Toggles the aggregation interval for collecting flow logs. Increasing the interval time will reduce the amount of generated flow logs for long lasting connections. Default is an interval of 5 seconds per connection. type SubnetworkLogConfigAggregationInterval string @@ -35571,12 +34382,6 @@ func (in *subnetworkLogConfigAggregationIntervalPtr) ToSubnetworkLogConfigAggreg return pulumi.ToOutputWithContext(ctx, in).(SubnetworkLogConfigAggregationIntervalPtrOutput) } -func (in *subnetworkLogConfigAggregationIntervalPtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkLogConfigAggregationInterval] { - return pulumix.Output[*SubnetworkLogConfigAggregationInterval]{ - OutputState: in.ToSubnetworkLogConfigAggregationIntervalPtrOutputWithContext(ctx).OutputState, - } -} - // Can only be specified if VPC flow logs for this subnetwork is enabled. Configures whether all, none or a subset of metadata fields should be added to the reported VPC flow logs. Default is EXCLUDE_ALL_METADATA. type SubnetworkLogConfigMetadata string @@ -35745,12 +34550,6 @@ func (in *subnetworkLogConfigMetadataPtr) ToSubnetworkLogConfigMetadataPtrOutput return pulumi.ToOutputWithContext(ctx, in).(SubnetworkLogConfigMetadataPtrOutput) } -func (in *subnetworkLogConfigMetadataPtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkLogConfigMetadata] { - return pulumix.Output[*SubnetworkLogConfigMetadata]{ - OutputState: in.ToSubnetworkLogConfigMetadataPtrOutputWithContext(ctx).OutputState, - } -} - // This field is for internal use. This field can be both set at resource creation time and updated using patch. type SubnetworkPrivateIpv6GoogleAccess string @@ -35922,12 +34721,6 @@ func (in *subnetworkPrivateIpv6GoogleAccessPtr) ToSubnetworkPrivateIpv6GoogleAcc return pulumi.ToOutputWithContext(ctx, in).(SubnetworkPrivateIpv6GoogleAccessPtrOutput) } -func (in *subnetworkPrivateIpv6GoogleAccessPtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkPrivateIpv6GoogleAccess] { - return pulumix.Output[*SubnetworkPrivateIpv6GoogleAccess]{ - OutputState: in.ToSubnetworkPrivateIpv6GoogleAccessPtrOutputWithContext(ctx).OutputState, - } -} - // The purpose of the resource. This field can be either PRIVATE, REGIONAL_MANAGED_PROXY, PRIVATE_SERVICE_CONNECT, or INTERNAL_HTTPS_LOAD_BALANCER. PRIVATE is the default purpose for user-created subnets or subnets that are automatically created in auto mode networks. A subnet with purpose set to REGIONAL_MANAGED_PROXY is a user-created subnetwork that is reserved for regional Envoy-based load balancers. A subnet with purpose set to PRIVATE_SERVICE_CONNECT is used to publish services using Private Service Connect. A subnet with purpose set to INTERNAL_HTTPS_LOAD_BALANCER is a proxy-only subnet that can be used only by regional internal HTTP(S) load balancers. Note that REGIONAL_MANAGED_PROXY is the preferred setting for all regional Envoy load balancers. If unspecified, the subnet purpose defaults to PRIVATE. The enableFlowLogs field isn't supported if the subnet purpose field is set to REGIONAL_MANAGED_PROXY. type SubnetworkPurpose string @@ -36111,12 +34904,6 @@ func (in *subnetworkPurposePtr) ToSubnetworkPurposePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(SubnetworkPurposePtrOutput) } -func (in *subnetworkPurposePtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkPurpose] { - return pulumix.Output[*SubnetworkPurpose]{ - OutputState: in.ToSubnetworkPurposePtrOutputWithContext(ctx).OutputState, - } -} - // The role of subnetwork. Currently, this field is only used when purpose = REGIONAL_MANAGED_PROXY. The value can be set to ACTIVE or BACKUP. An ACTIVE subnetwork is one that is currently being used for Envoy-based load balancers in a region. A BACKUP subnetwork is one that is ready to be promoted to ACTIVE or is currently draining. This field can be updated with a patch request. type SubnetworkRole string @@ -36285,12 +35072,6 @@ func (in *subnetworkRolePtr) ToSubnetworkRolePtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(SubnetworkRolePtrOutput) } -func (in *subnetworkRolePtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkRole] { - return pulumix.Output[*SubnetworkRole]{ - OutputState: in.ToSubnetworkRolePtrOutputWithContext(ctx).OutputState, - } -} - // The stack type for the subnet. If set to IPV4_ONLY, new VMs in the subnet are assigned IPv4 addresses only. If set to IPV4_IPV6, new VMs in the subnet can be assigned both IPv4 and IPv6 addresses. If not specified, IPV4_ONLY is used. This field can be both set at resource creation time and updated using patch. type SubnetworkStackType string @@ -36459,12 +35240,6 @@ func (in *subnetworkStackTypePtr) ToSubnetworkStackTypePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(SubnetworkStackTypePtrOutput) } -func (in *subnetworkStackTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkStackType] { - return pulumix.Output[*SubnetworkStackType]{ - OutputState: in.ToSubnetworkStackTypePtrOutputWithContext(ctx).OutputState, - } -} - type SubsettingPolicy string const ( @@ -36632,12 +35407,6 @@ func (in *subsettingPolicyPtr) ToSubsettingPolicyPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(SubsettingPolicyPtrOutput) } -func (in *subsettingPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*SubsettingPolicy] { - return pulumix.Output[*SubsettingPolicy]{ - OutputState: in.ToSubsettingPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how a port is selected for health checking. Can be one of the following values: USE_FIXED_PORT: Specifies a port number explicitly using the port field in the health check. Supported by backend services for pass-through load balancers and backend services for proxy load balancers. Not supported by target pools. The health check supports all backends supported by the backend service provided the backend can be health checked. For example, GCE_VM_IP network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an indirect method of specifying the health check port by referring to the backend service. Only supported by backend services for proxy load balancers. Not supported by target pools. Not supported by backend services for pass-through load balancers. Supports all backends that can be health checked; for example, GCE_VM_IP_PORT network endpoint groups and instance group backends. For GCE_VM_IP_PORT network endpoint group backends, the health check uses the port number specified for each endpoint in the network endpoint group. For instance group backends, the health check uses the port number determined by looking up the backend service's named port in the instance group's list of named ports. type TCPHealthCheckPortSpecification string @@ -36809,12 +35578,6 @@ func (in *tcphealthCheckPortSpecificationPtr) ToTCPHealthCheckPortSpecificationP return pulumi.ToOutputWithContext(ctx, in).(TCPHealthCheckPortSpecificationPtrOutput) } -func (in *tcphealthCheckPortSpecificationPtr) ToOutput(ctx context.Context) pulumix.Output[*TCPHealthCheckPortSpecification] { - return pulumix.Output[*TCPHealthCheckPortSpecification]{ - OutputState: in.ToTCPHealthCheckPortSpecificationPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type TCPHealthCheckProxyHeader string @@ -36981,12 +35744,6 @@ func (in *tcphealthCheckProxyHeaderPtr) ToTCPHealthCheckProxyHeaderPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(TCPHealthCheckProxyHeaderPtrOutput) } -func (in *tcphealthCheckProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*TCPHealthCheckProxyHeader] { - return pulumix.Output[*TCPHealthCheckProxyHeader]{ - OutputState: in.ToTCPHealthCheckProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the QUIC override policy for this TargetHttpsProxy resource. This setting determines whether the load balancer attempts to negotiate QUIC with clients. You can specify NONE, ENABLE, or DISABLE. - When quic-override is set to NONE, Google manages whether QUIC is used. - When quic-override is set to ENABLE, the load balancer uses QUIC when possible. - When quic-override is set to DISABLE, the load balancer doesn't use QUIC. - If the quic-override flag is not specified, NONE is implied. type TargetHttpsProxyQuicOverride string @@ -37158,12 +35915,6 @@ func (in *targetHttpsProxyQuicOverridePtr) ToTargetHttpsProxyQuicOverridePtrOutp return pulumi.ToOutputWithContext(ctx, in).(TargetHttpsProxyQuicOverridePtrOutput) } -func (in *targetHttpsProxyQuicOverridePtr) ToOutput(ctx context.Context) pulumix.Output[*TargetHttpsProxyQuicOverride] { - return pulumix.Output[*TargetHttpsProxyQuicOverride]{ - OutputState: in.ToTargetHttpsProxyQuicOverridePtrOutputWithContext(ctx).OutputState, - } -} - // Must have a value of NO_NAT. Protocol forwarding delivers packets while preserving the destination IP address of the forwarding rule referencing the target instance. type TargetInstanceNatPolicy string @@ -37329,12 +36080,6 @@ func (in *targetInstanceNatPolicyPtr) ToTargetInstanceNatPolicyPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(TargetInstanceNatPolicyPtrOutput) } -func (in *targetInstanceNatPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*TargetInstanceNatPolicy] { - return pulumix.Output[*TargetInstanceNatPolicy]{ - OutputState: in.ToTargetInstanceNatPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Session affinity option, must be one of the following values: NONE: Connections from the same client IP may go to any instance in the pool. CLIENT_IP: Connections from the same client IP will go to the same instance in the pool while that instance remains healthy. CLIENT_IP_PROTO: Connections from the same client IP with the same IP protocol will go to the same instance in the pool while that instance remains healthy. type TargetPoolSessionAffinity string @@ -37521,12 +36266,6 @@ func (in *targetPoolSessionAffinityPtr) ToTargetPoolSessionAffinityPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(TargetPoolSessionAffinityPtrOutput) } -func (in *targetPoolSessionAffinityPtr) ToOutput(ctx context.Context) pulumix.Output[*TargetPoolSessionAffinity] { - return pulumix.Output[*TargetPoolSessionAffinity]{ - OutputState: in.ToTargetPoolSessionAffinityPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type TargetSslProxyProxyHeader string @@ -37693,12 +36432,6 @@ func (in *targetSslProxyProxyHeaderPtr) ToTargetSslProxyProxyHeaderPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(TargetSslProxyProxyHeaderPtrOutput) } -func (in *targetSslProxyProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*TargetSslProxyProxyHeader] { - return pulumix.Output[*TargetSslProxyProxyHeader]{ - OutputState: in.ToTargetSslProxyProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type TargetTcpProxyProxyHeader string @@ -37865,12 +36598,6 @@ func (in *targetTcpProxyProxyHeaderPtr) ToTargetTcpProxyProxyHeaderPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(TargetTcpProxyProxyHeaderPtrOutput) } -func (in *targetTcpProxyProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*TargetTcpProxyProxyHeader] { - return pulumix.Output[*TargetTcpProxyProxyHeader]{ - OutputState: in.ToTargetTcpProxyProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // The IP family of the gateway IPs for the HA-VPN gateway interfaces. If not specified, IPV4 will be used. type VpnGatewayGatewayIpVersion string @@ -38039,12 +36766,6 @@ func (in *vpnGatewayGatewayIpVersionPtr) ToVpnGatewayGatewayIpVersionPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(VpnGatewayGatewayIpVersionPtrOutput) } -func (in *vpnGatewayGatewayIpVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*VpnGatewayGatewayIpVersion] { - return pulumix.Output[*VpnGatewayGatewayIpVersion]{ - OutputState: in.ToVpnGatewayGatewayIpVersionPtrOutputWithContext(ctx).OutputState, - } -} - // The stack type for this VPN gateway to identify the IP protocols that are enabled. Possible values are: IPV4_ONLY, IPV4_IPV6. If not specified, IPV4_ONLY will be used. type VpnGatewayStackType string @@ -38213,12 +36934,6 @@ func (in *vpnGatewayStackTypePtr) ToVpnGatewayStackTypePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(VpnGatewayStackTypePtrOutput) } -func (in *vpnGatewayStackTypePtr) ToOutput(ctx context.Context) pulumix.Output[*VpnGatewayStackType] { - return pulumix.Output[*VpnGatewayStackType]{ - OutputState: in.ToVpnGatewayStackTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AccessConfigNetworkTierInput)(nil)).Elem(), AccessConfigNetworkTier("FIXED_STANDARD")) pulumi.RegisterInputType(reflect.TypeOf((*AccessConfigNetworkTierPtrInput)(nil)).Elem(), AccessConfigNetworkTier("FIXED_STANDARD")) diff --git a/sdk/go/google/compute/v1/pulumiEnums.go b/sdk/go/google/compute/v1/pulumiEnums.go index ff0c912719..3890423b25 100644 --- a/sdk/go/google/compute/v1/pulumiEnums.go +++ b/sdk/go/google/compute/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // This signifies the networking tier used for configuring this access configuration and can only take the following values: PREMIUM, STANDARD. If an AccessConfig is specified without a valid external IP address, an ephemeral IP will be created with this networkTier. If an AccessConfig with a valid external IP address is specified, it must match that of the networkTier associated with the Address resource owning that IP. @@ -185,12 +184,6 @@ func (in *accessConfigNetworkTierPtr) ToAccessConfigNetworkTierPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(AccessConfigNetworkTierPtrOutput) } -func (in *accessConfigNetworkTierPtr) ToOutput(ctx context.Context) pulumix.Output[*AccessConfigNetworkTier] { - return pulumix.Output[*AccessConfigNetworkTier]{ - OutputState: in.ToAccessConfigNetworkTierPtrOutputWithContext(ctx).OutputState, - } -} - // The type of configuration. In accessConfigs (IPv4), the default and only option is ONE_TO_ONE_NAT. In ipv6AccessConfigs, the default and only option is DIRECT_IPV6. type AccessConfigType string @@ -357,12 +350,6 @@ func (in *accessConfigTypePtr) ToAccessConfigTypePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(AccessConfigTypePtrOutput) } -func (in *accessConfigTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AccessConfigType] { - return pulumix.Output[*AccessConfigType]{ - OutputState: in.ToAccessConfigTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of address to reserve, either INTERNAL or EXTERNAL. If unspecified, defaults to EXTERNAL. type AddressAddressType string @@ -533,12 +520,6 @@ func (in *addressAddressTypePtr) ToAddressAddressTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(AddressAddressTypePtrOutput) } -func (in *addressAddressTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AddressAddressType] { - return pulumix.Output[*AddressAddressType]{ - OutputState: in.ToAddressAddressTypePtrOutputWithContext(ctx).OutputState, - } -} - // The IP version that will be used by this address. Valid options are IPV4 or IPV6. type AddressIpVersion string @@ -707,12 +688,6 @@ func (in *addressIpVersionPtr) ToAddressIpVersionPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(AddressIpVersionPtrOutput) } -func (in *addressIpVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*AddressIpVersion] { - return pulumix.Output[*AddressIpVersion]{ - OutputState: in.ToAddressIpVersionPtrOutputWithContext(ctx).OutputState, - } -} - // The endpoint type of this address, which should be VM or NETLB. This is used for deciding which type of endpoint this address can be used after the external IPv6 address reservation. type AddressIpv6EndpointType string @@ -881,12 +856,6 @@ func (in *addressIpv6EndpointTypePtr) ToAddressIpv6EndpointTypePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(AddressIpv6EndpointTypePtrOutput) } -func (in *addressIpv6EndpointTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AddressIpv6EndpointType] { - return pulumix.Output[*AddressIpv6EndpointType]{ - OutputState: in.ToAddressIpv6EndpointTypePtrOutputWithContext(ctx).OutputState, - } -} - // This signifies the networking tier used for configuring this address and can only take the following values: PREMIUM or STANDARD. Internal IP addresses are always Premium Tier; global external IP addresses are always Premium Tier; regional external IP addresses can be either Standard or Premium Tier. If this field is not specified, it is assumed to be PREMIUM. type AddressNetworkTier string @@ -1061,12 +1030,6 @@ func (in *addressNetworkTierPtr) ToAddressNetworkTierPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(AddressNetworkTierPtrOutput) } -func (in *addressNetworkTierPtr) ToOutput(ctx context.Context) pulumix.Output[*AddressNetworkTier] { - return pulumix.Output[*AddressNetworkTier]{ - OutputState: in.ToAddressNetworkTierPtrOutputWithContext(ctx).OutputState, - } -} - // The purpose of this resource, which can be one of the following values: - GCE_ENDPOINT for addresses that are used by VM instances, alias IP ranges, load balancers, and similar resources. - DNS_RESOLVER for a DNS resolver address in a subnetwork for a Cloud DNS inbound forwarder IP addresses (regional internal IP address in a subnet of a VPC network) - VPC_PEERING for global internal IP addresses used for private services access allocated ranges. - NAT_AUTO for the regional external IP addresses used by Cloud NAT when allocating addresses using automatic NAT IP address allocation. - IPSEC_INTERCONNECT for addresses created from a private IP range that are reserved for a VLAN attachment in an *HA VPN over Cloud Interconnect* configuration. These addresses are regional resources. - `SHARED_LOADBALANCER_VIP` for an internal IP address that is assigned to multiple internal forwarding rules. - `PRIVATE_SERVICE_CONNECT` for a private network address that is used to configure Private Service Connect. Only global internal addresses can use this purpose. type AddressPurpose string @@ -1253,12 +1216,6 @@ func (in *addressPurposePtr) ToAddressPurposePtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(AddressPurposePtrOutput) } -func (in *addressPurposePtr) ToOutput(ctx context.Context) pulumix.Output[*AddressPurpose] { - return pulumix.Output[*AddressPurpose]{ - OutputState: in.ToAddressPurposePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. For performance characteristics of SCSI over NVMe, see Local SSD performance. type AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterface string @@ -1425,12 +1382,6 @@ func (in *allocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDisk return pulumi.ToOutputWithContext(ctx, in).(AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterfacePtrOutput) } -func (in *allocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterfacePtr) ToOutput(ctx context.Context) pulumix.Output[*AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterface] { - return pulumix.Output[*AllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterface]{ - OutputState: in.ToAllocationSpecificSKUAllocationAllocatedInstancePropertiesReservedDiskInterfacePtrOutputWithContext(ctx).OutputState, - } -} - // The architecture of the attached disk. Valid values are arm64 or x86_64. type AttachedDiskInitializeParamsArchitecture string @@ -1602,12 +1553,6 @@ func (in *attachedDiskInitializeParamsArchitecturePtr) ToAttachedDiskInitializeP return pulumi.ToOutputWithContext(ctx, in).(AttachedDiskInitializeParamsArchitecturePtrOutput) } -func (in *attachedDiskInitializeParamsArchitecturePtr) ToOutput(ctx context.Context) pulumix.Output[*AttachedDiskInitializeParamsArchitecture] { - return pulumix.Output[*AttachedDiskInitializeParamsArchitecture]{ - OutputState: in.ToAttachedDiskInitializeParamsArchitecturePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies which action to take on instance update with this disk. Default is to use the existing disk. type AttachedDiskInitializeParamsOnUpdateAction string @@ -1779,12 +1724,6 @@ func (in *attachedDiskInitializeParamsOnUpdateActionPtr) ToAttachedDiskInitializ return pulumi.ToOutputWithContext(ctx, in).(AttachedDiskInitializeParamsOnUpdateActionPtrOutput) } -func (in *attachedDiskInitializeParamsOnUpdateActionPtr) ToOutput(ctx context.Context) pulumix.Output[*AttachedDiskInitializeParamsOnUpdateAction] { - return pulumix.Output[*AttachedDiskInitializeParamsOnUpdateAction]{ - OutputState: in.ToAttachedDiskInitializeParamsOnUpdateActionPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. For most machine types, the default is SCSI. Local SSDs can use either NVME or SCSI. In certain configurations, persistent disks can use NVMe. For more information, see About persistent disks. type AttachedDiskInterface string @@ -1951,12 +1890,6 @@ func (in *attachedDiskInterfacePtr) ToAttachedDiskInterfacePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AttachedDiskInterfacePtrOutput) } -func (in *attachedDiskInterfacePtr) ToOutput(ctx context.Context) pulumix.Output[*AttachedDiskInterface] { - return pulumix.Output[*AttachedDiskInterface]{ - OutputState: in.ToAttachedDiskInterfacePtrOutputWithContext(ctx).OutputState, - } -} - // The mode in which to attach this disk, either READ_WRITE or READ_ONLY. If not specified, the default is to attach the disk in READ_WRITE mode. type AttachedDiskMode string @@ -2125,12 +2058,6 @@ func (in *attachedDiskModePtr) ToAttachedDiskModePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(AttachedDiskModePtrOutput) } -func (in *attachedDiskModePtr) ToOutput(ctx context.Context) pulumix.Output[*AttachedDiskMode] { - return pulumix.Output[*AttachedDiskMode]{ - OutputState: in.ToAttachedDiskModePtrOutputWithContext(ctx).OutputState, - } -} - // For LocalSSD disks on VM Instances in STOPPED or SUSPENDED state, this field is set to PRESERVED if the LocalSSD data has been saved to a persistent location by customer request. (see the discard_local_ssd option on Stop/Suspend). Read-only in the api. type AttachedDiskSavedState string @@ -2299,12 +2226,6 @@ func (in *attachedDiskSavedStatePtr) ToAttachedDiskSavedStatePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(AttachedDiskSavedStatePtrOutput) } -func (in *attachedDiskSavedStatePtr) ToOutput(ctx context.Context) pulumix.Output[*AttachedDiskSavedState] { - return pulumix.Output[*AttachedDiskSavedState]{ - OutputState: in.ToAttachedDiskSavedStatePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of the disk, either SCRATCH or PERSISTENT. If not specified, the default is PERSISTENT. type AttachedDiskType string @@ -2471,12 +2392,6 @@ func (in *attachedDiskTypePtr) ToAttachedDiskTypePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(AttachedDiskTypePtrOutput) } -func (in *attachedDiskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AttachedDiskType] { - return pulumix.Output[*AttachedDiskType]{ - OutputState: in.ToAttachedDiskTypePtrOutputWithContext(ctx).OutputState, - } -} - // The log type that this config enables. type AuditLogConfigLogType string @@ -2651,12 +2566,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // This is deprecated and has no effect. Do not use. type AuthorizationLoggingOptionsPermissionType string @@ -2834,12 +2743,6 @@ func (in *authorizationLoggingOptionsPermissionTypePtr) ToAuthorizationLoggingOp return pulumi.ToOutputWithContext(ctx, in).(AuthorizationLoggingOptionsPermissionTypePtrOutput) } -func (in *authorizationLoggingOptionsPermissionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuthorizationLoggingOptionsPermissionType] { - return pulumix.Output[*AuthorizationLoggingOptionsPermissionType]{ - OutputState: in.ToAuthorizationLoggingOptionsPermissionTypePtrOutputWithContext(ctx).OutputState, - } -} - // Indicates whether predictive autoscaling based on CPU metric is enabled. Valid values are: * NONE (default). No predictive method is used. The autoscaler scales the group to meet current demand based on real-time metrics. * OPTIMIZE_AVAILABILITY. Predictive autoscaling improves availability by monitoring daily and weekly load patterns and scaling out ahead of anticipated demand. type AutoscalingPolicyCpuUtilizationPredictiveMethod string @@ -3008,12 +2911,6 @@ func (in *autoscalingPolicyCpuUtilizationPredictiveMethodPtr) ToAutoscalingPolic return pulumi.ToOutputWithContext(ctx, in).(AutoscalingPolicyCpuUtilizationPredictiveMethodPtrOutput) } -func (in *autoscalingPolicyCpuUtilizationPredictiveMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*AutoscalingPolicyCpuUtilizationPredictiveMethod] { - return pulumix.Output[*AutoscalingPolicyCpuUtilizationPredictiveMethod]{ - OutputState: in.ToAutoscalingPolicyCpuUtilizationPredictiveMethodPtrOutputWithContext(ctx).OutputState, - } -} - // Defines how target utilization value is expressed for a Stackdriver Monitoring metric. Either GAUGE, DELTA_PER_SECOND, or DELTA_PER_MINUTE. type AutoscalingPolicyCustomMetricUtilizationUtilizationTargetType string @@ -3185,12 +3082,6 @@ func (in *autoscalingPolicyCustomMetricUtilizationUtilizationTargetTypePtr) ToAu return pulumi.ToOutputWithContext(ctx, in).(AutoscalingPolicyCustomMetricUtilizationUtilizationTargetTypePtrOutput) } -func (in *autoscalingPolicyCustomMetricUtilizationUtilizationTargetTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AutoscalingPolicyCustomMetricUtilizationUtilizationTargetType] { - return pulumix.Output[*AutoscalingPolicyCustomMetricUtilizationUtilizationTargetType]{ - OutputState: in.ToAutoscalingPolicyCustomMetricUtilizationUtilizationTargetTypePtrOutputWithContext(ctx).OutputState, - } -} - // Defines the operating mode for this policy. The following modes are available: - OFF: Disables the autoscaler but maintains its configuration. - ONLY_SCALE_OUT: Restricts the autoscaler to add VM instances only. - ON: Enables all autoscaler activities according to its policy. For more information, see "Turning off or restricting an autoscaler" type AutoscalingPolicyMode string @@ -3365,12 +3256,6 @@ func (in *autoscalingPolicyModePtr) ToAutoscalingPolicyModePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AutoscalingPolicyModePtrOutput) } -func (in *autoscalingPolicyModePtr) ToOutput(ctx context.Context) pulumix.Output[*AutoscalingPolicyMode] { - return pulumix.Output[*AutoscalingPolicyMode]{ - OutputState: in.ToAutoscalingPolicyModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how to determine whether the backend of a load balancer can handle additional traffic or is fully loaded. For usage guidelines, see Connection balancing mode. Backends must use compatible balancing modes. For more information, see Supported balancing modes and target capacity settings and Restrictions and guidance for instance groups. Note: Currently, if you use the API to configure incompatible balancing modes, the configuration might be accepted even though it has no impact and is ignored. Specifically, Backend.maxUtilization is ignored when Backend.balancingMode is RATE. In the future, this incompatible combination will be rejected. type BackendBalancingMode string @@ -3542,12 +3427,6 @@ func (in *backendBalancingModePtr) ToBackendBalancingModePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(BackendBalancingModePtrOutput) } -func (in *backendBalancingModePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendBalancingMode] { - return pulumix.Output[*BackendBalancingMode]{ - OutputState: in.ToBackendBalancingModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the cache setting for all responses from this backend. The possible values are: USE_ORIGIN_HEADERS Requires the origin to set valid caching headers to cache content. Responses without these headers will not be cached at Google's edge, and will require a full trip to the origin on every request, potentially impacting performance and increasing load on the origin server. FORCE_CACHE_ALL Cache all content, ignoring any "private", "no-store" or "no-cache" directives in Cache-Control response headers. Warning: this may result in Cloud CDN caching private, per-user (user identifiable) content. CACHE_ALL_STATIC Automatically cache static content, including common image formats, media (video and audio), and web assets (JavaScript and CSS). Requests and responses that are marked as uncacheable, as well as dynamic content (including HTML), will not be cached. type BackendBucketCdnPolicyCacheMode string @@ -3721,12 +3600,6 @@ func (in *backendBucketCdnPolicyCacheModePtr) ToBackendBucketCdnPolicyCacheModeP return pulumi.ToOutputWithContext(ctx, in).(BackendBucketCdnPolicyCacheModePtrOutput) } -func (in *backendBucketCdnPolicyCacheModePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendBucketCdnPolicyCacheMode] { - return pulumix.Output[*BackendBucketCdnPolicyCacheMode]{ - OutputState: in.ToBackendBucketCdnPolicyCacheModePtrOutputWithContext(ctx).OutputState, - } -} - // Compress text responses using Brotli or gzip compression, based on the client's Accept-Encoding header. type BackendBucketCompressionMode string @@ -3895,12 +3768,6 @@ func (in *backendBucketCompressionModePtr) ToBackendBucketCompressionModePtrOutp return pulumi.ToOutputWithContext(ctx, in).(BackendBucketCompressionModePtrOutput) } -func (in *backendBucketCompressionModePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendBucketCompressionMode] { - return pulumix.Output[*BackendBucketCompressionMode]{ - OutputState: in.ToBackendBucketCompressionModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the cache setting for all responses from this backend. The possible values are: USE_ORIGIN_HEADERS Requires the origin to set valid caching headers to cache content. Responses without these headers will not be cached at Google's edge, and will require a full trip to the origin on every request, potentially impacting performance and increasing load on the origin server. FORCE_CACHE_ALL Cache all content, ignoring any "private", "no-store" or "no-cache" directives in Cache-Control response headers. Warning: this may result in Cloud CDN caching private, per-user (user identifiable) content. CACHE_ALL_STATIC Automatically cache static content, including common image formats, media (video and audio), and web assets (JavaScript and CSS). Requests and responses that are marked as uncacheable, as well as dynamic content (including HTML), will not be cached. type BackendServiceCdnPolicyCacheMode string @@ -4074,12 +3941,6 @@ func (in *backendServiceCdnPolicyCacheModePtr) ToBackendServiceCdnPolicyCacheMod return pulumi.ToOutputWithContext(ctx, in).(BackendServiceCdnPolicyCacheModePtrOutput) } -func (in *backendServiceCdnPolicyCacheModePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceCdnPolicyCacheMode] { - return pulumix.Output[*BackendServiceCdnPolicyCacheMode]{ - OutputState: in.ToBackendServiceCdnPolicyCacheModePtrOutputWithContext(ctx).OutputState, - } -} - // Compress text responses using Brotli or gzip compression, based on the client's Accept-Encoding header. type BackendServiceCompressionMode string @@ -4248,12 +4109,6 @@ func (in *backendServiceCompressionModePtr) ToBackendServiceCompressionModePtrOu return pulumi.ToOutputWithContext(ctx, in).(BackendServiceCompressionModePtrOutput) } -func (in *backendServiceCompressionModePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceCompressionMode] { - return pulumix.Output[*BackendServiceCompressionMode]{ - OutputState: in.ToBackendServiceCompressionModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies connection persistence when backends are unhealthy. The default value is DEFAULT_FOR_PROTOCOL. If set to DEFAULT_FOR_PROTOCOL, the existing connections persist on unhealthy backends only for connection-oriented protocols (TCP and SCTP) and only if the Tracking Mode is PER_CONNECTION (default tracking mode) or the Session Affinity is configured for 5-tuple. They do not persist for UDP. If set to NEVER_PERSIST, after a backend becomes unhealthy, the existing connections on the unhealthy backend are never persisted on the unhealthy backend. They are always diverted to newly selected healthy backends (unless all backends are unhealthy). If set to ALWAYS_PERSIST, existing connections always persist on unhealthy backends regardless of protocol and session affinity. It is generally not recommended to use this mode overriding the default. For more details, see [Connection Persistence for Network Load Balancing](https://cloud.google.com/load-balancing/docs/network/networklb-backend-service#connection-persistence) and [Connection Persistence for Internal TCP/UDP Load Balancing](https://cloud.google.com/load-balancing/docs/internal#connection-persistence). type BackendServiceConnectionTrackingPolicyConnectionPersistenceOnUnhealthyBackends string @@ -4422,12 +4277,6 @@ func (in *backendServiceConnectionTrackingPolicyConnectionPersistenceOnUnhealthy return pulumi.ToOutputWithContext(ctx, in).(BackendServiceConnectionTrackingPolicyConnectionPersistenceOnUnhealthyBackendsPtrOutput) } -func (in *backendServiceConnectionTrackingPolicyConnectionPersistenceOnUnhealthyBackendsPtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceConnectionTrackingPolicyConnectionPersistenceOnUnhealthyBackends] { - return pulumix.Output[*BackendServiceConnectionTrackingPolicyConnectionPersistenceOnUnhealthyBackends]{ - OutputState: in.ToBackendServiceConnectionTrackingPolicyConnectionPersistenceOnUnhealthyBackendsPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the key used for connection tracking. There are two options: - PER_CONNECTION: This is the default mode. The Connection Tracking is performed as per the Connection Key (default Hash Method) for the specific protocol. - PER_SESSION: The Connection Tracking is performed as per the configured Session Affinity. It matches the configured Session Affinity. For more details, see [Tracking Mode for Network Load Balancing](https://cloud.google.com/load-balancing/docs/network/networklb-backend-service#tracking-mode) and [Tracking Mode for Internal TCP/UDP Load Balancing](https://cloud.google.com/load-balancing/docs/internal#tracking-mode). type BackendServiceConnectionTrackingPolicyTrackingMode string @@ -4596,12 +4445,6 @@ func (in *backendServiceConnectionTrackingPolicyTrackingModePtr) ToBackendServic return pulumi.ToOutputWithContext(ctx, in).(BackendServiceConnectionTrackingPolicyTrackingModePtrOutput) } -func (in *backendServiceConnectionTrackingPolicyTrackingModePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceConnectionTrackingPolicyTrackingMode] { - return pulumix.Output[*BackendServiceConnectionTrackingPolicyTrackingMode]{ - OutputState: in.ToBackendServiceConnectionTrackingPolicyTrackingModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the load balancer type. A backend service created for one type of load balancer cannot be used with another. For more information, refer to Choosing a load balancer. type BackendServiceLoadBalancingScheme string @@ -4781,12 +4624,6 @@ func (in *backendServiceLoadBalancingSchemePtr) ToBackendServiceLoadBalancingSch return pulumi.ToOutputWithContext(ctx, in).(BackendServiceLoadBalancingSchemePtrOutput) } -func (in *backendServiceLoadBalancingSchemePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceLoadBalancingScheme] { - return pulumix.Output[*BackendServiceLoadBalancingScheme]{ - OutputState: in.ToBackendServiceLoadBalancingSchemePtrOutputWithContext(ctx).OutputState, - } -} - // The load balancing algorithm used within the scope of the locality. The possible values are: - ROUND_ROBIN: This is a simple policy in which each healthy backend is selected in round robin order. This is the default. - LEAST_REQUEST: An O(1) algorithm which selects two random healthy hosts and picks the host which has fewer active requests. - RING_HASH: The ring/modulo hash load balancer implements consistent hashing to backends. The algorithm has the property that the addition/removal of a host from a set of N hosts only affects 1/N of the requests. - RANDOM: The load balancer selects a random healthy host. - ORIGINAL_DESTINATION: Backend host is selected based on the client connection metadata, i.e., connections are opened to the same address as the destination address of the incoming connection before the connection was redirected to the load balancer. - MAGLEV: used as a drop in replacement for the ring hash load balancer. Maglev is not as stable as ring hash but has faster table lookup build times and host selection times. For more information about Maglev, see https://ai.google/research/pubs/pub44824 This field is applicable to either: - A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2, and load_balancing_scheme set to INTERNAL_MANAGED. - A global backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED, INTERNAL_MANAGED, or EXTERNAL_MANAGED. If sessionAffinity is not NONE, and this field is not set to MAGLEV or RING_HASH, session affinity settings will not take effect. Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced by a URL map that is bound to target gRPC proxy that has validateForProxyless field set to true. type BackendServiceLocalityLbPolicy string @@ -4972,12 +4809,6 @@ func (in *backendServiceLocalityLbPolicyPtr) ToBackendServiceLocalityLbPolicyPtr return pulumi.ToOutputWithContext(ctx, in).(BackendServiceLocalityLbPolicyPtrOutput) } -func (in *backendServiceLocalityLbPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceLocalityLbPolicy] { - return pulumix.Output[*BackendServiceLocalityLbPolicy]{ - OutputState: in.ToBackendServiceLocalityLbPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // The name of a locality load-balancing policy. Valid values include ROUND_ROBIN and, for Java clients, LEAST_REQUEST. For information about these values, see the description of localityLbPolicy. Do not specify the same policy more than once for a backend. If you do, the configuration is rejected. type BackendServiceLocalityLoadBalancingPolicyConfigPolicyName string @@ -5163,12 +4994,6 @@ func (in *backendServiceLocalityLoadBalancingPolicyConfigPolicyNamePtr) ToBacken return pulumi.ToOutputWithContext(ctx, in).(BackendServiceLocalityLoadBalancingPolicyConfigPolicyNamePtrOutput) } -func (in *backendServiceLocalityLoadBalancingPolicyConfigPolicyNamePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceLocalityLoadBalancingPolicyConfigPolicyName] { - return pulumix.Output[*BackendServiceLocalityLoadBalancingPolicyConfigPolicyName]{ - OutputState: in.ToBackendServiceLocalityLoadBalancingPolicyConfigPolicyNamePtrOutputWithContext(ctx).OutputState, - } -} - // This field can only be specified if logging is enabled for this backend service. Configures whether all, none or a subset of optional fields should be added to the reported logs. One of [INCLUDE_ALL_OPTIONAL, EXCLUDE_ALL_OPTIONAL, CUSTOM]. Default is EXCLUDE_ALL_OPTIONAL. type BackendServiceLogConfigOptionalMode string @@ -5340,12 +5165,6 @@ func (in *backendServiceLogConfigOptionalModePtr) ToBackendServiceLogConfigOptio return pulumi.ToOutputWithContext(ctx, in).(BackendServiceLogConfigOptionalModePtrOutput) } -func (in *backendServiceLogConfigOptionalModePtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceLogConfigOptionalMode] { - return pulumix.Output[*BackendServiceLogConfigOptionalMode]{ - OutputState: in.ToBackendServiceLogConfigOptionalModePtrOutputWithContext(ctx).OutputState, - } -} - // The protocol this BackendService uses to communicate with backends. Possible values are HTTP, HTTPS, HTTP2, TCP, SSL, UDP or GRPC. depending on the chosen load balancer or Traffic Director configuration. Refer to the documentation for the load balancers or for Traffic Director for more information. Must be set to GRPC when the backend service is referenced by a URL map that is bound to target gRPC proxy. type BackendServiceProtocol string @@ -5530,12 +5349,6 @@ func (in *backendServiceProtocolPtr) ToBackendServiceProtocolPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(BackendServiceProtocolPtrOutput) } -func (in *backendServiceProtocolPtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceProtocol] { - return pulumix.Output[*BackendServiceProtocol]{ - OutputState: in.ToBackendServiceProtocolPtrOutputWithContext(ctx).OutputState, - } -} - // Type of session affinity to use. The default is NONE. Only NONE and HEADER_FIELD are supported when the backend service is referenced by a URL map that is bound to target gRPC proxy that has validateForProxyless field set to true. For more details, see: [Session Affinity](https://cloud.google.com/load-balancing/docs/backend-service#session_affinity). type BackendServiceSessionAffinity string @@ -5722,12 +5535,6 @@ func (in *backendServiceSessionAffinityPtr) ToBackendServiceSessionAffinityPtrOu return pulumi.ToOutputWithContext(ctx, in).(BackendServiceSessionAffinityPtrOutput) } -func (in *backendServiceSessionAffinityPtr) ToOutput(ctx context.Context) pulumix.Output[*BackendServiceSessionAffinity] { - return pulumix.Output[*BackendServiceSessionAffinity]{ - OutputState: in.ToBackendServiceSessionAffinityPtrOutputWithContext(ctx).OutputState, - } -} - // This is deprecated and has no effect. Do not use. type ConditionIam string @@ -5914,12 +5721,6 @@ func (in *conditionIamPtr) ToConditionIamPtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(ConditionIamPtrOutput) } -func (in *conditionIamPtr) ToOutput(ctx context.Context) pulumix.Output[*ConditionIam] { - return pulumix.Output[*ConditionIam]{ - OutputState: in.ToConditionIamPtrOutputWithContext(ctx).OutputState, - } -} - // This is deprecated and has no effect. Do not use. type ConditionOp string @@ -6100,12 +5901,6 @@ func (in *conditionOpPtr) ToConditionOpPtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(ConditionOpPtrOutput) } -func (in *conditionOpPtr) ToOutput(ctx context.Context) pulumix.Output[*ConditionOp] { - return pulumix.Output[*ConditionOp]{ - OutputState: in.ToConditionOpPtrOutputWithContext(ctx).OutputState, - } -} - // This is deprecated and has no effect. Do not use. type ConditionSys string @@ -6283,12 +6078,6 @@ func (in *conditionSysPtr) ToConditionSysPtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(ConditionSysPtrOutput) } -func (in *conditionSysPtr) ToOutput(ctx context.Context) pulumix.Output[*ConditionSys] { - return pulumix.Output[*ConditionSys]{ - OutputState: in.ToConditionSysPtrOutputWithContext(ctx).OutputState, - } -} - // The deprecation state of this resource. This can be ACTIVE, DEPRECATED, OBSOLETE, or DELETED. Operations which communicate the end of life date for an image, can use ACTIVE. Operations which create a new resource using a DEPRECATED resource will return successfully, but with a warning indicating the deprecated resource and recommending its replacement. Operations which use OBSOLETE or DELETED resources will be rejected and result in an error. type DeprecationStatusState string @@ -6459,12 +6248,6 @@ func (in *deprecationStatusStatePtr) ToDeprecationStatusStatePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(DeprecationStatusStatePtrOutput) } -func (in *deprecationStatusStatePtr) ToOutput(ctx context.Context) pulumix.Output[*DeprecationStatusState] { - return pulumix.Output[*DeprecationStatusState]{ - OutputState: in.ToDeprecationStatusStatePtrOutputWithContext(ctx).OutputState, - } -} - // The architecture of the disk. Valid values are ARM64 or X86_64. type DiskArchitecture string @@ -6636,12 +6419,6 @@ func (in *diskArchitecturePtr) ToDiskArchitecturePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(DiskArchitecturePtrOutput) } -func (in *diskArchitecturePtr) ToOutput(ctx context.Context) pulumix.Output[*DiskArchitecture] { - return pulumix.Output[*DiskArchitecture]{ - OutputState: in.ToDiskArchitecturePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies whether to include the disk and what image to use. Possible values are: - source-image: to use the same image that was used to create the source instance's corresponding disk. Applicable to the boot disk and additional read-write disks. - source-image-family: to use the same image family that was used to create the source instance's corresponding disk. Applicable to the boot disk and additional read-write disks. - custom-image: to use a user-provided image url for disk creation. Applicable to the boot disk and additional read-write disks. - attach-read-only: to attach a read-only disk. Applicable to read-only disks. - do-not-include: to exclude a disk from the template. Applicable to additional read-write disks, local SSDs, and read-only disks. type DiskInstantiationConfigInstantiateFrom string @@ -6825,12 +6602,6 @@ func (in *diskInstantiationConfigInstantiateFromPtr) ToDiskInstantiationConfigIn return pulumi.ToOutputWithContext(ctx, in).(DiskInstantiationConfigInstantiateFromPtrOutput) } -func (in *diskInstantiationConfigInstantiateFromPtr) ToOutput(ctx context.Context) pulumix.Output[*DiskInstantiationConfigInstantiateFrom] { - return pulumix.Output[*DiskInstantiationConfigInstantiateFrom]{ - OutputState: in.ToDiskInstantiationConfigInstantiateFromPtrOutputWithContext(ctx).OutputState, - } -} - // The distribution shape to which the group converges either proactively or on resize events (depending on the value set in updatePolicy.instanceRedistributionType). type DistributionPolicyTargetShape string @@ -7005,12 +6776,6 @@ func (in *distributionPolicyTargetShapePtr) ToDistributionPolicyTargetShapePtrOu return pulumi.ToOutputWithContext(ctx, in).(DistributionPolicyTargetShapePtrOutput) } -func (in *distributionPolicyTargetShapePtr) ToOutput(ctx context.Context) pulumix.Output[*DistributionPolicyTargetShape] { - return pulumix.Output[*DistributionPolicyTargetShape]{ - OutputState: in.ToDistributionPolicyTargetShapePtrOutputWithContext(ctx).OutputState, - } -} - // Indicates the user-supplied redundancy type of this external VPN gateway. type ExternalVpnGatewayRedundancyType string @@ -7182,12 +6947,6 @@ func (in *externalVpnGatewayRedundancyTypePtr) ToExternalVpnGatewayRedundancyTyp return pulumi.ToOutputWithContext(ctx, in).(ExternalVpnGatewayRedundancyTypePtrOutput) } -func (in *externalVpnGatewayRedundancyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ExternalVpnGatewayRedundancyType] { - return pulumix.Output[*ExternalVpnGatewayRedundancyType]{ - OutputState: in.ToExternalVpnGatewayRedundancyTypePtrOutputWithContext(ctx).OutputState, - } -} - // The file type of source file. type FileContentBufferFileType string @@ -7356,12 +7115,6 @@ func (in *fileContentBufferFileTypePtr) ToFileContentBufferFileTypePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(FileContentBufferFileTypePtrOutput) } -func (in *fileContentBufferFileTypePtr) ToOutput(ctx context.Context) pulumix.Output[*FileContentBufferFileType] { - return pulumix.Output[*FileContentBufferFileType]{ - OutputState: in.ToFileContentBufferFileTypePtrOutputWithContext(ctx).OutputState, - } -} - // Direction of traffic to which this firewall applies, either `INGRESS` or `EGRESS`. The default is `INGRESS`. For `EGRESS` traffic, you cannot specify the sourceTags fields. type FirewallDirection string @@ -7530,12 +7283,6 @@ func (in *firewallDirectionPtr) ToFirewallDirectionPtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(FirewallDirectionPtrOutput) } -func (in *firewallDirectionPtr) ToOutput(ctx context.Context) pulumix.Output[*FirewallDirection] { - return pulumix.Output[*FirewallDirection]{ - OutputState: in.ToFirewallDirectionPtrOutputWithContext(ctx).OutputState, - } -} - // This field can only be specified for a particular firewall rule if logging is enabled for that rule. This field denotes whether to include or exclude metadata for firewall logs. type FirewallLogConfigMetadata string @@ -7702,12 +7449,6 @@ func (in *firewallLogConfigMetadataPtr) ToFirewallLogConfigMetadataPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(FirewallLogConfigMetadataPtrOutput) } -func (in *firewallLogConfigMetadataPtr) ToOutput(ctx context.Context) pulumix.Output[*FirewallLogConfigMetadata] { - return pulumix.Output[*FirewallLogConfigMetadata]{ - OutputState: in.ToFirewallLogConfigMetadataPtrOutputWithContext(ctx).OutputState, - } -} - // The direction in which this rule applies. type FirewallPolicyRuleDirection string @@ -7874,12 +7615,6 @@ func (in *firewallPolicyRuleDirectionPtr) ToFirewallPolicyRuleDirectionPtrOutput return pulumi.ToOutputWithContext(ctx, in).(FirewallPolicyRuleDirectionPtrOutput) } -func (in *firewallPolicyRuleDirectionPtr) ToOutput(ctx context.Context) pulumix.Output[*FirewallPolicyRuleDirection] { - return pulumix.Output[*FirewallPolicyRuleDirection]{ - OutputState: in.ToFirewallPolicyRuleDirectionPtrOutputWithContext(ctx).OutputState, - } -} - // The IP protocol to which this rule applies. For protocol forwarding, valid options are TCP, UDP, ESP, AH, SCTP, ICMP and L3_DEFAULT. The valid IP protocols are different for different load balancing products as described in [Load balancing features](https://cloud.google.com/load-balancing/docs/features#protocols_from_the_load_balancer_to_the_backends). type ForwardingRuleIpProtocol string @@ -8056,12 +7791,6 @@ func (in *forwardingRuleIpProtocolPtr) ToForwardingRuleIpProtocolPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(ForwardingRuleIpProtocolPtrOutput) } -func (in *forwardingRuleIpProtocolPtr) ToOutput(ctx context.Context) pulumix.Output[*ForwardingRuleIpProtocol] { - return pulumix.Output[*ForwardingRuleIpProtocol]{ - OutputState: in.ToForwardingRuleIpProtocolPtrOutputWithContext(ctx).OutputState, - } -} - // The IP Version that will be used by this forwarding rule. Valid options are IPV4 or IPV6. type ForwardingRuleIpVersion string @@ -8230,12 +7959,6 @@ func (in *forwardingRuleIpVersionPtr) ToForwardingRuleIpVersionPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(ForwardingRuleIpVersionPtrOutput) } -func (in *forwardingRuleIpVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*ForwardingRuleIpVersion] { - return pulumix.Output[*ForwardingRuleIpVersion]{ - OutputState: in.ToForwardingRuleIpVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the forwarding rule type. For more information about forwarding rules, refer to Forwarding rule concepts. type ForwardingRuleLoadBalancingScheme string @@ -8410,12 +8133,6 @@ func (in *forwardingRuleLoadBalancingSchemePtr) ToForwardingRuleLoadBalancingSch return pulumi.ToOutputWithContext(ctx, in).(ForwardingRuleLoadBalancingSchemePtrOutput) } -func (in *forwardingRuleLoadBalancingSchemePtr) ToOutput(ctx context.Context) pulumix.Output[*ForwardingRuleLoadBalancingScheme] { - return pulumix.Output[*ForwardingRuleLoadBalancingScheme]{ - OutputState: in.ToForwardingRuleLoadBalancingSchemePtrOutputWithContext(ctx).OutputState, - } -} - // This signifies the networking tier used for configuring this load balancer and can only take the following values: PREMIUM, STANDARD. For regional ForwardingRule, the valid values are PREMIUM and STANDARD. For GlobalForwardingRule, the valid value is PREMIUM. If this field is not specified, it is assumed to be PREMIUM. If IPAddress is specified, this value must be equal to the networkTier of the Address. type ForwardingRuleNetworkTier string @@ -8590,12 +8307,6 @@ func (in *forwardingRuleNetworkTierPtr) ToForwardingRuleNetworkTierPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(ForwardingRuleNetworkTierPtrOutput) } -func (in *forwardingRuleNetworkTierPtr) ToOutput(ctx context.Context) pulumix.Output[*ForwardingRuleNetworkTier] { - return pulumix.Output[*ForwardingRuleNetworkTier]{ - OutputState: in.ToForwardingRuleNetworkTierPtrOutputWithContext(ctx).OutputState, - } -} - type ForwardingRulePscConnectionStatus string const ( @@ -8774,12 +8485,6 @@ func (in *forwardingRulePscConnectionStatusPtr) ToForwardingRulePscConnectionSta return pulumi.ToOutputWithContext(ctx, in).(ForwardingRulePscConnectionStatusPtrOutput) } -func (in *forwardingRulePscConnectionStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*ForwardingRulePscConnectionStatus] { - return pulumix.Output[*ForwardingRulePscConnectionStatus]{ - OutputState: in.ToForwardingRulePscConnectionStatusPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how a port is selected for health checking. Can be one of the following values: USE_FIXED_PORT: Specifies a port number explicitly using the port field in the health check. Supported by backend services for pass-through load balancers and backend services for proxy load balancers. Not supported by target pools. The health check supports all backends supported by the backend service provided the backend can be health checked. For example, GCE_VM_IP network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an indirect method of specifying the health check port by referring to the backend service. Only supported by backend services for proxy load balancers. Not supported by target pools. Not supported by backend services for pass-through load balancers. Supports all backends that can be health checked; for example, GCE_VM_IP_PORT network endpoint groups and instance group backends. For GCE_VM_IP_PORT network endpoint group backends, the health check uses the port number specified for each endpoint in the network endpoint group. For instance group backends, the health check uses the port number determined by looking up the backend service's named port in the instance group's list of named ports. type GRPCHealthCheckPortSpecification string @@ -8951,12 +8656,6 @@ func (in *grpchealthCheckPortSpecificationPtr) ToGRPCHealthCheckPortSpecificatio return pulumi.ToOutputWithContext(ctx, in).(GRPCHealthCheckPortSpecificationPtrOutput) } -func (in *grpchealthCheckPortSpecificationPtr) ToOutput(ctx context.Context) pulumix.Output[*GRPCHealthCheckPortSpecification] { - return pulumix.Output[*GRPCHealthCheckPortSpecification]{ - OutputState: in.ToGRPCHealthCheckPortSpecificationPtrOutputWithContext(ctx).OutputState, - } -} - // The type of address to reserve, either INTERNAL or EXTERNAL. If unspecified, defaults to EXTERNAL. type GlobalAddressAddressType string @@ -9127,12 +8826,6 @@ func (in *globalAddressAddressTypePtr) ToGlobalAddressAddressTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(GlobalAddressAddressTypePtrOutput) } -func (in *globalAddressAddressTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalAddressAddressType] { - return pulumix.Output[*GlobalAddressAddressType]{ - OutputState: in.ToGlobalAddressAddressTypePtrOutputWithContext(ctx).OutputState, - } -} - // The IP version that will be used by this address. Valid options are IPV4 or IPV6. type GlobalAddressIpVersion string @@ -9301,12 +8994,6 @@ func (in *globalAddressIpVersionPtr) ToGlobalAddressIpVersionPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(GlobalAddressIpVersionPtrOutput) } -func (in *globalAddressIpVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalAddressIpVersion] { - return pulumix.Output[*GlobalAddressIpVersion]{ - OutputState: in.ToGlobalAddressIpVersionPtrOutputWithContext(ctx).OutputState, - } -} - // The endpoint type of this address, which should be VM or NETLB. This is used for deciding which type of endpoint this address can be used after the external IPv6 address reservation. type GlobalAddressIpv6EndpointType string @@ -9475,12 +9162,6 @@ func (in *globalAddressIpv6EndpointTypePtr) ToGlobalAddressIpv6EndpointTypePtrOu return pulumi.ToOutputWithContext(ctx, in).(GlobalAddressIpv6EndpointTypePtrOutput) } -func (in *globalAddressIpv6EndpointTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalAddressIpv6EndpointType] { - return pulumix.Output[*GlobalAddressIpv6EndpointType]{ - OutputState: in.ToGlobalAddressIpv6EndpointTypePtrOutputWithContext(ctx).OutputState, - } -} - // This signifies the networking tier used for configuring this address and can only take the following values: PREMIUM or STANDARD. Internal IP addresses are always Premium Tier; global external IP addresses are always Premium Tier; regional external IP addresses can be either Standard or Premium Tier. If this field is not specified, it is assumed to be PREMIUM. type GlobalAddressNetworkTier string @@ -9655,12 +9336,6 @@ func (in *globalAddressNetworkTierPtr) ToGlobalAddressNetworkTierPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(GlobalAddressNetworkTierPtrOutput) } -func (in *globalAddressNetworkTierPtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalAddressNetworkTier] { - return pulumix.Output[*GlobalAddressNetworkTier]{ - OutputState: in.ToGlobalAddressNetworkTierPtrOutputWithContext(ctx).OutputState, - } -} - // The purpose of this resource, which can be one of the following values: - GCE_ENDPOINT for addresses that are used by VM instances, alias IP ranges, load balancers, and similar resources. - DNS_RESOLVER for a DNS resolver address in a subnetwork for a Cloud DNS inbound forwarder IP addresses (regional internal IP address in a subnet of a VPC network) - VPC_PEERING for global internal IP addresses used for private services access allocated ranges. - NAT_AUTO for the regional external IP addresses used by Cloud NAT when allocating addresses using automatic NAT IP address allocation. - IPSEC_INTERCONNECT for addresses created from a private IP range that are reserved for a VLAN attachment in an *HA VPN over Cloud Interconnect* configuration. These addresses are regional resources. - `SHARED_LOADBALANCER_VIP` for an internal IP address that is assigned to multiple internal forwarding rules. - `PRIVATE_SERVICE_CONNECT` for a private network address that is used to configure Private Service Connect. Only global internal addresses can use this purpose. type GlobalAddressPurpose string @@ -9847,12 +9522,6 @@ func (in *globalAddressPurposePtr) ToGlobalAddressPurposePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(GlobalAddressPurposePtrOutput) } -func (in *globalAddressPurposePtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalAddressPurpose] { - return pulumix.Output[*GlobalAddressPurpose]{ - OutputState: in.ToGlobalAddressPurposePtrOutputWithContext(ctx).OutputState, - } -} - // The IP protocol to which this rule applies. For protocol forwarding, valid options are TCP, UDP, ESP, AH, SCTP, ICMP and L3_DEFAULT. The valid IP protocols are different for different load balancing products as described in [Load balancing features](https://cloud.google.com/load-balancing/docs/features#protocols_from_the_load_balancer_to_the_backends). type GlobalForwardingRuleIpProtocol string @@ -10029,12 +9698,6 @@ func (in *globalForwardingRuleIpProtocolPtr) ToGlobalForwardingRuleIpProtocolPtr return pulumi.ToOutputWithContext(ctx, in).(GlobalForwardingRuleIpProtocolPtrOutput) } -func (in *globalForwardingRuleIpProtocolPtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalForwardingRuleIpProtocol] { - return pulumix.Output[*GlobalForwardingRuleIpProtocol]{ - OutputState: in.ToGlobalForwardingRuleIpProtocolPtrOutputWithContext(ctx).OutputState, - } -} - // The IP Version that will be used by this forwarding rule. Valid options are IPV4 or IPV6. type GlobalForwardingRuleIpVersion string @@ -10203,12 +9866,6 @@ func (in *globalForwardingRuleIpVersionPtr) ToGlobalForwardingRuleIpVersionPtrOu return pulumi.ToOutputWithContext(ctx, in).(GlobalForwardingRuleIpVersionPtrOutput) } -func (in *globalForwardingRuleIpVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalForwardingRuleIpVersion] { - return pulumix.Output[*GlobalForwardingRuleIpVersion]{ - OutputState: in.ToGlobalForwardingRuleIpVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the forwarding rule type. For more information about forwarding rules, refer to Forwarding rule concepts. type GlobalForwardingRuleLoadBalancingScheme string @@ -10383,12 +10040,6 @@ func (in *globalForwardingRuleLoadBalancingSchemePtr) ToGlobalForwardingRuleLoad return pulumi.ToOutputWithContext(ctx, in).(GlobalForwardingRuleLoadBalancingSchemePtrOutput) } -func (in *globalForwardingRuleLoadBalancingSchemePtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalForwardingRuleLoadBalancingScheme] { - return pulumix.Output[*GlobalForwardingRuleLoadBalancingScheme]{ - OutputState: in.ToGlobalForwardingRuleLoadBalancingSchemePtrOutputWithContext(ctx).OutputState, - } -} - // This signifies the networking tier used for configuring this load balancer and can only take the following values: PREMIUM, STANDARD. For regional ForwardingRule, the valid values are PREMIUM and STANDARD. For GlobalForwardingRule, the valid value is PREMIUM. If this field is not specified, it is assumed to be PREMIUM. If IPAddress is specified, this value must be equal to the networkTier of the Address. type GlobalForwardingRuleNetworkTier string @@ -10563,12 +10214,6 @@ func (in *globalForwardingRuleNetworkTierPtr) ToGlobalForwardingRuleNetworkTierP return pulumi.ToOutputWithContext(ctx, in).(GlobalForwardingRuleNetworkTierPtrOutput) } -func (in *globalForwardingRuleNetworkTierPtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalForwardingRuleNetworkTier] { - return pulumix.Output[*GlobalForwardingRuleNetworkTier]{ - OutputState: in.ToGlobalForwardingRuleNetworkTierPtrOutputWithContext(ctx).OutputState, - } -} - type GlobalForwardingRulePscConnectionStatus string const ( @@ -10747,12 +10392,6 @@ func (in *globalForwardingRulePscConnectionStatusPtr) ToGlobalForwardingRulePscC return pulumi.ToOutputWithContext(ctx, in).(GlobalForwardingRulePscConnectionStatusPtrOutput) } -func (in *globalForwardingRulePscConnectionStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalForwardingRulePscConnectionStatus] { - return pulumix.Output[*GlobalForwardingRulePscConnectionStatus]{ - OutputState: in.ToGlobalForwardingRulePscConnectionStatusPtrOutputWithContext(ctx).OutputState, - } -} - // Type of network endpoints in this network endpoint group. Can be one of GCE_VM_IP, GCE_VM_IP_PORT, NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT, INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT. type GlobalNetworkEndpointGroupNetworkEndpointType string @@ -10936,12 +10575,6 @@ func (in *globalNetworkEndpointGroupNetworkEndpointTypePtr) ToGlobalNetworkEndpo return pulumi.ToOutputWithContext(ctx, in).(GlobalNetworkEndpointGroupNetworkEndpointTypePtrOutput) } -func (in *globalNetworkEndpointGroupNetworkEndpointTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GlobalNetworkEndpointGroupNetworkEndpointType] { - return pulumix.Output[*GlobalNetworkEndpointGroupNetworkEndpointType]{ - OutputState: in.ToGlobalNetworkEndpointGroupNetworkEndpointTypePtrOutputWithContext(ctx).OutputState, - } -} - // The ID of a supported feature. To add multiple values, use commas to separate values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE - WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE - SEV_SNP_CAPABLE For more information, see Enabling guest operating system features. type GuestOsFeatureType string @@ -11126,12 +10759,6 @@ func (in *guestOsFeatureTypePtr) ToGuestOsFeatureTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(GuestOsFeatureTypePtrOutput) } -func (in *guestOsFeatureTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GuestOsFeatureType] { - return pulumix.Output[*GuestOsFeatureType]{ - OutputState: in.ToGuestOsFeatureTypePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how a port is selected for health checking. Can be one of the following values: USE_FIXED_PORT: Specifies a port number explicitly using the port field in the health check. Supported by backend services for pass-through load balancers and backend services for proxy load balancers. Not supported by target pools. The health check supports all backends supported by the backend service provided the backend can be health checked. For example, GCE_VM_IP network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an indirect method of specifying the health check port by referring to the backend service. Only supported by backend services for proxy load balancers. Not supported by target pools. Not supported by backend services for pass-through load balancers. Supports all backends that can be health checked; for example, GCE_VM_IP_PORT network endpoint groups and instance group backends. For GCE_VM_IP_PORT network endpoint group backends, the health check uses the port number specified for each endpoint in the network endpoint group. For instance group backends, the health check uses the port number determined by looking up the backend service's named port in the instance group's list of named ports. type HTTP2HealthCheckPortSpecification string @@ -11303,12 +10930,6 @@ func (in *http2healthCheckPortSpecificationPtr) ToHTTP2HealthCheckPortSpecificat return pulumi.ToOutputWithContext(ctx, in).(HTTP2HealthCheckPortSpecificationPtrOutput) } -func (in *http2healthCheckPortSpecificationPtr) ToOutput(ctx context.Context) pulumix.Output[*HTTP2HealthCheckPortSpecification] { - return pulumix.Output[*HTTP2HealthCheckPortSpecification]{ - OutputState: in.ToHTTP2HealthCheckPortSpecificationPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type HTTP2HealthCheckProxyHeader string @@ -11475,12 +11096,6 @@ func (in *http2healthCheckProxyHeaderPtr) ToHTTP2HealthCheckProxyHeaderPtrOutput return pulumi.ToOutputWithContext(ctx, in).(HTTP2HealthCheckProxyHeaderPtrOutput) } -func (in *http2healthCheckProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*HTTP2HealthCheckProxyHeader] { - return pulumix.Output[*HTTP2HealthCheckProxyHeader]{ - OutputState: in.ToHTTP2HealthCheckProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how a port is selected for health checking. Can be one of the following values: USE_FIXED_PORT: Specifies a port number explicitly using the port field in the health check. Supported by backend services for pass-through load balancers and backend services for proxy load balancers. Also supported in legacy HTTP health checks for target pools. The health check supports all backends supported by the backend service provided the backend can be health checked. For example, GCE_VM_IP network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an indirect method of specifying the health check port by referring to the backend service. Only supported by backend services for proxy load balancers. Not supported by target pools. Not supported by backend services for pass-through load balancers. Supports all backends that can be health checked; for example, GCE_VM_IP_PORT network endpoint groups and instance group backends. For GCE_VM_IP_PORT network endpoint group backends, the health check uses the port number specified for each endpoint in the network endpoint group. For instance group backends, the health check uses the port number determined by looking up the backend service's named port in the instance group's list of named ports. type HTTPHealthCheckPortSpecification string @@ -11652,12 +11267,6 @@ func (in *httphealthCheckPortSpecificationPtr) ToHTTPHealthCheckPortSpecificatio return pulumi.ToOutputWithContext(ctx, in).(HTTPHealthCheckPortSpecificationPtrOutput) } -func (in *httphealthCheckPortSpecificationPtr) ToOutput(ctx context.Context) pulumix.Output[*HTTPHealthCheckPortSpecification] { - return pulumix.Output[*HTTPHealthCheckPortSpecification]{ - OutputState: in.ToHTTPHealthCheckPortSpecificationPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type HTTPHealthCheckProxyHeader string @@ -11824,12 +11433,6 @@ func (in *httphealthCheckProxyHeaderPtr) ToHTTPHealthCheckProxyHeaderPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(HTTPHealthCheckProxyHeaderPtrOutput) } -func (in *httphealthCheckProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*HTTPHealthCheckProxyHeader] { - return pulumix.Output[*HTTPHealthCheckProxyHeader]{ - OutputState: in.ToHTTPHealthCheckProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how a port is selected for health checking. Can be one of the following values: USE_FIXED_PORT: Specifies a port number explicitly using the port field in the health check. Supported by backend services for pass-through load balancers and backend services for proxy load balancers. Not supported by target pools. The health check supports all backends supported by the backend service provided the backend can be health checked. For example, GCE_VM_IP network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an indirect method of specifying the health check port by referring to the backend service. Only supported by backend services for proxy load balancers. Not supported by target pools. Not supported by backend services for pass-through load balancers. Supports all backends that can be health checked; for example, GCE_VM_IP_PORT network endpoint groups and instance group backends. For GCE_VM_IP_PORT network endpoint group backends, the health check uses the port number specified for each endpoint in the network endpoint group. For instance group backends, the health check uses the port number determined by looking up the backend service's named port in the instance group's list of named ports. type HTTPSHealthCheckPortSpecification string @@ -12001,12 +11604,6 @@ func (in *httpshealthCheckPortSpecificationPtr) ToHTTPSHealthCheckPortSpecificat return pulumi.ToOutputWithContext(ctx, in).(HTTPSHealthCheckPortSpecificationPtrOutput) } -func (in *httpshealthCheckPortSpecificationPtr) ToOutput(ctx context.Context) pulumix.Output[*HTTPSHealthCheckPortSpecification] { - return pulumix.Output[*HTTPSHealthCheckPortSpecification]{ - OutputState: in.ToHTTPSHealthCheckPortSpecificationPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type HTTPSHealthCheckProxyHeader string @@ -12173,12 +11770,6 @@ func (in *httpshealthCheckProxyHeaderPtr) ToHTTPSHealthCheckProxyHeaderPtrOutput return pulumi.ToOutputWithContext(ctx, in).(HTTPSHealthCheckProxyHeaderPtrOutput) } -func (in *httpshealthCheckProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*HTTPSHealthCheckProxyHeader] { - return pulumix.Output[*HTTPSHealthCheckProxyHeader]{ - OutputState: in.ToHTTPSHealthCheckProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of the healthCheck, either TCP, SSL, HTTP, HTTPS, HTTP2 or GRPC. Exactly one of the protocol-specific health check fields must be specified, which must match type field. type HealthCheckType string @@ -12355,12 +11946,6 @@ func (in *healthCheckTypePtr) ToHealthCheckTypePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(HealthCheckTypePtrOutput) } -func (in *healthCheckTypePtr) ToOutput(ctx context.Context) pulumix.Output[*HealthCheckType] { - return pulumix.Output[*HealthCheckType]{ - OutputState: in.ToHealthCheckTypePtrOutputWithContext(ctx).OutputState, - } -} - // The HTTP Status code to use for this RedirectAction. Supported values are: - MOVED_PERMANENTLY_DEFAULT, which is the default value and corresponds to 301. - FOUND, which corresponds to 302. - SEE_OTHER which corresponds to 303. - TEMPORARY_REDIRECT, which corresponds to 307. In this case, the request method is retained. - PERMANENT_REDIRECT, which corresponds to 308. In this case, the request method is retained. type HttpRedirectActionRedirectResponseCode string @@ -12538,12 +12123,6 @@ func (in *httpRedirectActionRedirectResponseCodePtr) ToHttpRedirectActionRedirec return pulumi.ToOutputWithContext(ctx, in).(HttpRedirectActionRedirectResponseCodePtrOutput) } -func (in *httpRedirectActionRedirectResponseCodePtr) ToOutput(ctx context.Context) pulumix.Output[*HttpRedirectActionRedirectResponseCode] { - return pulumix.Output[*HttpRedirectActionRedirectResponseCode]{ - OutputState: in.ToHttpRedirectActionRedirectResponseCodePtrOutputWithContext(ctx).OutputState, - } -} - // The architecture of the image. Valid values are ARM64 or X86_64. type ImageArchitecture string @@ -12715,12 +12294,6 @@ func (in *imageArchitecturePtr) ToImageArchitecturePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(ImageArchitecturePtrOutput) } -func (in *imageArchitecturePtr) ToOutput(ctx context.Context) pulumix.Output[*ImageArchitecture] { - return pulumix.Output[*ImageArchitecture]{ - OutputState: in.ToImageArchitecturePtrOutputWithContext(ctx).OutputState, - } -} - // The format used to encode and transmit the block device, which should be TAR. This is just a container and transmission format and not a runtime format. Provided by the client when the disk image is created. type ImageRawDiskContainerType string @@ -12885,12 +12458,6 @@ func (in *imageRawDiskContainerTypePtr) ToImageRawDiskContainerTypePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(ImageRawDiskContainerTypePtrOutput) } -func (in *imageRawDiskContainerTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ImageRawDiskContainerType] { - return pulumix.Output[*ImageRawDiskContainerType]{ - OutputState: in.ToImageRawDiskContainerTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of the image used to create this disk. The default and only valid value is RAW. type ImageSourceType string @@ -13055,12 +12622,6 @@ func (in *imageSourceTypePtr) ToImageSourceTypePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(ImageSourceTypePtrOutput) } -func (in *imageSourceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ImageSourceType] { - return pulumix.Output[*ImageSourceType]{ - OutputState: in.ToImageSourceTypePtrOutputWithContext(ctx).OutputState, - } -} - // A bit indicating whether to forcefully apply the group's latest configuration when repairing a VM. Valid options are: - NO (default): If configuration updates are available, they are not forcefully applied during repair. Instead, configuration updates are applied according to the group's update policy. - YES: If configuration updates are available, they are applied during repair. type InstanceGroupManagerInstanceLifecyclePolicyForceUpdateOnRepair string @@ -13227,12 +12788,6 @@ func (in *instanceGroupManagerInstanceLifecyclePolicyForceUpdateOnRepairPtr) ToI return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerInstanceLifecyclePolicyForceUpdateOnRepairPtrOutput) } -func (in *instanceGroupManagerInstanceLifecyclePolicyForceUpdateOnRepairPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerInstanceLifecyclePolicyForceUpdateOnRepair] { - return pulumix.Output[*InstanceGroupManagerInstanceLifecyclePolicyForceUpdateOnRepair]{ - OutputState: in.ToInstanceGroupManagerInstanceLifecyclePolicyForceUpdateOnRepairPtrOutputWithContext(ctx).OutputState, - } -} - // Pagination behavior of the listManagedInstances API method for this managed instance group. type InstanceGroupManagerListManagedInstancesResults string @@ -13401,12 +12956,6 @@ func (in *instanceGroupManagerListManagedInstancesResultsPtr) ToInstanceGroupMan return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerListManagedInstancesResultsPtrOutput) } -func (in *instanceGroupManagerListManagedInstancesResultsPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerListManagedInstancesResults] { - return pulumix.Output[*InstanceGroupManagerListManagedInstancesResults]{ - OutputState: in.ToInstanceGroupManagerListManagedInstancesResultsPtrOutputWithContext(ctx).OutputState, - } -} - // The instance redistribution policy for regional managed instance groups. Valid values are: - PROACTIVE (default): The group attempts to maintain an even distribution of VM instances across zones in the region. - NONE: For non-autoscaled groups, proactive redistribution is disabled. type InstanceGroupManagerUpdatePolicyInstanceRedistributionType string @@ -13575,12 +13124,6 @@ func (in *instanceGroupManagerUpdatePolicyInstanceRedistributionTypePtr) ToInsta return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerUpdatePolicyInstanceRedistributionTypePtrOutput) } -func (in *instanceGroupManagerUpdatePolicyInstanceRedistributionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerUpdatePolicyInstanceRedistributionType] { - return pulumix.Output[*InstanceGroupManagerUpdatePolicyInstanceRedistributionType]{ - OutputState: in.ToInstanceGroupManagerUpdatePolicyInstanceRedistributionTypePtrOutputWithContext(ctx).OutputState, - } -} - // Minimal action to be taken on an instance. Use this option to minimize disruption as much as possible or to apply a more disruptive action than is necessary. - To limit disruption as much as possible, set the minimal action to REFRESH. If your update requires a more disruptive action, Compute Engine performs the necessary action to execute the update. - To apply a more disruptive action than is strictly necessary, set the minimal action to RESTART or REPLACE. For example, Compute Engine does not need to restart a VM to change its metadata. But if your application reads instance metadata only when a VM is restarted, you can set the minimal action to RESTART in order to pick up metadata changes. type InstanceGroupManagerUpdatePolicyMinimalAction string @@ -13755,12 +13298,6 @@ func (in *instanceGroupManagerUpdatePolicyMinimalActionPtr) ToInstanceGroupManag return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerUpdatePolicyMinimalActionPtrOutput) } -func (in *instanceGroupManagerUpdatePolicyMinimalActionPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerUpdatePolicyMinimalAction] { - return pulumix.Output[*InstanceGroupManagerUpdatePolicyMinimalAction]{ - OutputState: in.ToInstanceGroupManagerUpdatePolicyMinimalActionPtrOutputWithContext(ctx).OutputState, - } -} - // Most disruptive action that is allowed to be taken on an instance. You can specify either NONE to forbid any actions, REFRESH to avoid restarting the VM and to limit disruption as much as possible. RESTART to allow actions that can be applied without instance replacing or REPLACE to allow all possible actions. If the Updater determines that the minimal update action needed is more disruptive than most disruptive allowed action you specify it will not perform the update at all. type InstanceGroupManagerUpdatePolicyMostDisruptiveAllowedAction string @@ -13935,12 +13472,6 @@ func (in *instanceGroupManagerUpdatePolicyMostDisruptiveAllowedActionPtr) ToInst return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerUpdatePolicyMostDisruptiveAllowedActionPtrOutput) } -func (in *instanceGroupManagerUpdatePolicyMostDisruptiveAllowedActionPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerUpdatePolicyMostDisruptiveAllowedAction] { - return pulumix.Output[*InstanceGroupManagerUpdatePolicyMostDisruptiveAllowedAction]{ - OutputState: in.ToInstanceGroupManagerUpdatePolicyMostDisruptiveAllowedActionPtrOutputWithContext(ctx).OutputState, - } -} - // What action should be used to replace instances. See minimal_action.REPLACE type InstanceGroupManagerUpdatePolicyReplacementMethod string @@ -14109,12 +13640,6 @@ func (in *instanceGroupManagerUpdatePolicyReplacementMethodPtr) ToInstanceGroupM return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerUpdatePolicyReplacementMethodPtrOutput) } -func (in *instanceGroupManagerUpdatePolicyReplacementMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerUpdatePolicyReplacementMethod] { - return pulumix.Output[*InstanceGroupManagerUpdatePolicyReplacementMethod]{ - OutputState: in.ToInstanceGroupManagerUpdatePolicyReplacementMethodPtrOutputWithContext(ctx).OutputState, - } -} - // The type of update process. You can specify either PROACTIVE so that the MIG automatically updates VMs to the latest configurations or OPPORTUNISTIC so that you can select the VMs that you want to update. type InstanceGroupManagerUpdatePolicyType string @@ -14283,12 +13808,6 @@ func (in *instanceGroupManagerUpdatePolicyTypePtr) ToInstanceGroupManagerUpdateP return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupManagerUpdatePolicyTypePtrOutput) } -func (in *instanceGroupManagerUpdatePolicyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupManagerUpdatePolicyType] { - return pulumix.Output[*InstanceGroupManagerUpdatePolicyType]{ - OutputState: in.ToInstanceGroupManagerUpdatePolicyTypePtrOutputWithContext(ctx).OutputState, - } -} - // KeyRevocationActionType of the instance. Supported options are "STOP" and "NONE". The default value is "NONE" if it is not specified. type InstanceKeyRevocationActionType string @@ -14460,12 +13979,6 @@ func (in *instanceKeyRevocationActionTypePtr) ToInstanceKeyRevocationActionTypeP return pulumi.ToOutputWithContext(ctx, in).(InstanceKeyRevocationActionTypePtrOutput) } -func (in *instanceKeyRevocationActionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceKeyRevocationActionType] { - return pulumix.Output[*InstanceKeyRevocationActionType]{ - OutputState: in.ToInstanceKeyRevocationActionTypePtrOutputWithContext(ctx).OutputState, - } -} - // The private IPv6 google access type for the VM. If not specified, use INHERIT_FROM_SUBNETWORK as default. type InstancePrivateIpv6GoogleAccess string @@ -14637,12 +14150,6 @@ func (in *instancePrivateIpv6GoogleAccessPtr) ToInstancePrivateIpv6GoogleAccessP return pulumi.ToOutputWithContext(ctx, in).(InstancePrivateIpv6GoogleAccessPtrOutput) } -func (in *instancePrivateIpv6GoogleAccessPtr) ToOutput(ctx context.Context) pulumix.Output[*InstancePrivateIpv6GoogleAccess] { - return pulumix.Output[*InstancePrivateIpv6GoogleAccess]{ - OutputState: in.ToInstancePrivateIpv6GoogleAccessPtrOutputWithContext(ctx).OutputState, - } -} - // KeyRevocationActionType of the instance. Supported options are "STOP" and "NONE". The default value is "NONE" if it is not specified. type InstancePropertiesKeyRevocationActionType string @@ -14814,12 +14321,6 @@ func (in *instancePropertiesKeyRevocationActionTypePtr) ToInstancePropertiesKeyR return pulumi.ToOutputWithContext(ctx, in).(InstancePropertiesKeyRevocationActionTypePtrOutput) } -func (in *instancePropertiesKeyRevocationActionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstancePropertiesKeyRevocationActionType] { - return pulumix.Output[*InstancePropertiesKeyRevocationActionType]{ - OutputState: in.ToInstancePropertiesKeyRevocationActionTypePtrOutputWithContext(ctx).OutputState, - } -} - // The private IPv6 google access type for VMs. If not specified, use INHERIT_FROM_SUBNETWORK as default. Note that for MachineImage, this is not supported yet. type InstancePropertiesPrivateIpv6GoogleAccess string @@ -14991,12 +14492,6 @@ func (in *instancePropertiesPrivateIpv6GoogleAccessPtr) ToInstancePropertiesPriv return pulumi.ToOutputWithContext(ctx, in).(InstancePropertiesPrivateIpv6GoogleAccessPtrOutput) } -func (in *instancePropertiesPrivateIpv6GoogleAccessPtr) ToOutput(ctx context.Context) pulumix.Output[*InstancePropertiesPrivateIpv6GoogleAccess] { - return pulumix.Output[*InstancePropertiesPrivateIpv6GoogleAccess]{ - OutputState: in.ToInstancePropertiesPrivateIpv6GoogleAccessPtrOutputWithContext(ctx).OutputState, - } -} - // Provisioned bandwidth capacity for the interconnect attachment. For attachments of type DEDICATED, the user can set the bandwidth. For attachments of type PARTNER, the Google Partner that is operating the interconnect must set the bandwidth. Output only for PARTNER type, mutable for PARTNER_PROVIDER and DEDICATED, and can take one of the following values: - BPS_50M: 50 Mbit/s - BPS_100M: 100 Mbit/s - BPS_200M: 200 Mbit/s - BPS_300M: 300 Mbit/s - BPS_400M: 400 Mbit/s - BPS_500M: 500 Mbit/s - BPS_1G: 1 Gbit/s - BPS_2G: 2 Gbit/s - BPS_5G: 5 Gbit/s - BPS_10G: 10 Gbit/s - BPS_20G: 20 Gbit/s - BPS_50G: 50 Gbit/s type InterconnectAttachmentBandwidth string @@ -15195,12 +14690,6 @@ func (in *interconnectAttachmentBandwidthPtr) ToInterconnectAttachmentBandwidthP return pulumi.ToOutputWithContext(ctx, in).(InterconnectAttachmentBandwidthPtrOutput) } -func (in *interconnectAttachmentBandwidthPtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectAttachmentBandwidth] { - return pulumix.Output[*InterconnectAttachmentBandwidth]{ - OutputState: in.ToInterconnectAttachmentBandwidthPtrOutputWithContext(ctx).OutputState, - } -} - // Desired availability domain for the attachment. Only available for type PARTNER, at creation time, and can take one of the following values: - AVAILABILITY_DOMAIN_ANY - AVAILABILITY_DOMAIN_1 - AVAILABILITY_DOMAIN_2 For improved reliability, customers should configure a pair of attachments, one per availability domain. The selected availability domain will be provided to the Partner via the pairing key, so that the provisioned circuit will lie in the specified domain. If not specified, the value will default to AVAILABILITY_DOMAIN_ANY. type InterconnectAttachmentEdgeAvailabilityDomain string @@ -15369,12 +14858,6 @@ func (in *interconnectAttachmentEdgeAvailabilityDomainPtr) ToInterconnectAttachm return pulumi.ToOutputWithContext(ctx, in).(InterconnectAttachmentEdgeAvailabilityDomainPtrOutput) } -func (in *interconnectAttachmentEdgeAvailabilityDomainPtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectAttachmentEdgeAvailabilityDomain] { - return pulumix.Output[*InterconnectAttachmentEdgeAvailabilityDomain]{ - OutputState: in.ToInterconnectAttachmentEdgeAvailabilityDomainPtrOutputWithContext(ctx).OutputState, - } -} - // Indicates the user-supplied encryption option of this VLAN attachment (interconnectAttachment). Can only be specified at attachment creation for PARTNER or DEDICATED attachments. Possible values are: - NONE - This is the default value, which means that the VLAN attachment carries unencrypted traffic. VMs are able to send traffic to, or receive traffic from, such a VLAN attachment. - IPSEC - The VLAN attachment carries only encrypted traffic that is encrypted by an IPsec device, such as an HA VPN gateway or third-party IPsec VPN. VMs cannot directly send traffic to, or receive traffic from, such a VLAN attachment. To use *HA VPN over Cloud Interconnect*, the VLAN attachment must be created with this option. type InterconnectAttachmentEncryption string @@ -15543,12 +15026,6 @@ func (in *interconnectAttachmentEncryptionPtr) ToInterconnectAttachmentEncryptio return pulumi.ToOutputWithContext(ctx, in).(InterconnectAttachmentEncryptionPtrOutput) } -func (in *interconnectAttachmentEncryptionPtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectAttachmentEncryption] { - return pulumix.Output[*InterconnectAttachmentEncryption]{ - OutputState: in.ToInterconnectAttachmentEncryptionPtrOutputWithContext(ctx).OutputState, - } -} - // The stack type for this interconnect attachment to identify whether the IPv6 feature is enabled or not. If not specified, IPV4_ONLY will be used. This field can be both set at interconnect attachments creation and update interconnect attachment operations. type InterconnectAttachmentStackType string @@ -15717,12 +15194,6 @@ func (in *interconnectAttachmentStackTypePtr) ToInterconnectAttachmentStackTypeP return pulumi.ToOutputWithContext(ctx, in).(InterconnectAttachmentStackTypePtrOutput) } -func (in *interconnectAttachmentStackTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectAttachmentStackType] { - return pulumix.Output[*InterconnectAttachmentStackType]{ - OutputState: in.ToInterconnectAttachmentStackTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of interconnect attachment this is, which can take one of the following values: - DEDICATED: an attachment to a Dedicated Interconnect. - PARTNER: an attachment to a Partner Interconnect, created by the customer. - PARTNER_PROVIDER: an attachment to a Partner Interconnect, created by the partner. type InterconnectAttachmentType string @@ -15894,12 +15365,6 @@ func (in *interconnectAttachmentTypePtr) ToInterconnectAttachmentTypePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(InterconnectAttachmentTypePtrOutput) } -func (in *interconnectAttachmentTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectAttachmentType] { - return pulumix.Output[*InterconnectAttachmentType]{ - OutputState: in.ToInterconnectAttachmentTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of interconnect, which can take one of the following values: - PARTNER: A partner-managed interconnection shared between customers though a partner. - DEDICATED: A dedicated physical interconnection with the customer. Note that a value IT_PRIVATE has been deprecated in favor of DEDICATED. type InterconnectInterconnectType string @@ -16071,12 +15536,6 @@ func (in *interconnectInterconnectTypePtr) ToInterconnectInterconnectTypePtrOutp return pulumi.ToOutputWithContext(ctx, in).(InterconnectInterconnectTypePtrOutput) } -func (in *interconnectInterconnectTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectInterconnectType] { - return pulumix.Output[*InterconnectInterconnectType]{ - OutputState: in.ToInterconnectInterconnectTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of link requested, which can take one of the following values: - LINK_TYPE_ETHERNET_10G_LR: A 10G Ethernet with LR optics - LINK_TYPE_ETHERNET_100G_LR: A 100G Ethernet with LR optics. Note that this field indicates the speed of each of the links in the bundle, not the speed of the entire bundle. type InterconnectLinkType string @@ -16245,12 +15704,6 @@ func (in *interconnectLinkTypePtr) ToInterconnectLinkTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(InterconnectLinkTypePtrOutput) } -func (in *interconnectLinkTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectLinkType] { - return pulumix.Output[*InterconnectLinkType]{ - OutputState: in.ToInterconnectLinkTypePtrOutputWithContext(ctx).OutputState, - } -} - type InterconnectRequestedFeaturesItem string const ( @@ -16415,12 +15868,6 @@ func (in *interconnectRequestedFeaturesItemPtr) ToInterconnectRequestedFeaturesI return pulumi.ToOutputWithContext(ctx, in).(InterconnectRequestedFeaturesItemPtrOutput) } -func (in *interconnectRequestedFeaturesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*InterconnectRequestedFeaturesItem] { - return pulumix.Output[*InterconnectRequestedFeaturesItem]{ - OutputState: in.ToInterconnectRequestedFeaturesItemPtrOutputWithContext(ctx).OutputState, - } -} - // InterconnectRequestedFeaturesItemArrayInput is an input type that accepts InterconnectRequestedFeaturesItemArray and InterconnectRequestedFeaturesItemArrayOutput values. // You can construct a concrete instance of `InterconnectRequestedFeaturesItemArrayInput` via: // @@ -16637,12 +16084,6 @@ func (in *logConfigCloudAuditOptionsLogNamePtr) ToLogConfigCloudAuditOptionsLogN return pulumi.ToOutputWithContext(ctx, in).(LogConfigCloudAuditOptionsLogNamePtrOutput) } -func (in *logConfigCloudAuditOptionsLogNamePtr) ToOutput(ctx context.Context) pulumix.Output[*LogConfigCloudAuditOptionsLogName] { - return pulumix.Output[*LogConfigCloudAuditOptionsLogName]{ - OutputState: in.ToLogConfigCloudAuditOptionsLogNamePtrOutputWithContext(ctx).OutputState, - } -} - // This is deprecated and has no effect. Do not use. type LogConfigDataAccessOptionsLogMode string @@ -16811,12 +16252,6 @@ func (in *logConfigDataAccessOptionsLogModePtr) ToLogConfigDataAccessOptionsLogM return pulumi.ToOutputWithContext(ctx, in).(LogConfigDataAccessOptionsLogModePtrOutput) } -func (in *logConfigDataAccessOptionsLogModePtr) ToOutput(ctx context.Context) pulumix.Output[*LogConfigDataAccessOptionsLogMode] { - return pulumix.Output[*LogConfigDataAccessOptionsLogMode]{ - OutputState: in.ToLogConfigDataAccessOptionsLogModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how individual filter label matches within the list of filterLabels and contributes toward the overall metadataFilter match. Supported values are: - MATCH_ANY: at least one of the filterLabels must have a matching label in the provided metadata. - MATCH_ALL: all filterLabels must have matching labels in the provided metadata. type MetadataFilterFilterMatchCriteria string @@ -16988,12 +16423,6 @@ func (in *metadataFilterFilterMatchCriteriaPtr) ToMetadataFilterFilterMatchCrite return pulumi.ToOutputWithContext(ctx, in).(MetadataFilterFilterMatchCriteriaPtrOutput) } -func (in *metadataFilterFilterMatchCriteriaPtr) ToOutput(ctx context.Context) pulumix.Output[*MetadataFilterFilterMatchCriteria] { - return pulumix.Output[*MetadataFilterFilterMatchCriteria]{ - OutputState: in.ToMetadataFilterFilterMatchCriteriaPtrOutputWithContext(ctx).OutputState, - } -} - type NetworkAttachmentConnectionPreference string const ( @@ -17161,12 +16590,6 @@ func (in *networkAttachmentConnectionPreferencePtr) ToNetworkAttachmentConnectio return pulumi.ToOutputWithContext(ctx, in).(NetworkAttachmentConnectionPreferencePtrOutput) } -func (in *networkAttachmentConnectionPreferencePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkAttachmentConnectionPreference] { - return pulumix.Output[*NetworkAttachmentConnectionPreference]{ - OutputState: in.ToNetworkAttachmentConnectionPreferencePtrOutputWithContext(ctx).OutputState, - } -} - // Type of network endpoints in this network endpoint group. Can be one of GCE_VM_IP, GCE_VM_IP_PORT, NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT, INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT. type NetworkEndpointGroupNetworkEndpointType string @@ -17350,12 +16773,6 @@ func (in *networkEndpointGroupNetworkEndpointTypePtr) ToNetworkEndpointGroupNetw return pulumi.ToOutputWithContext(ctx, in).(NetworkEndpointGroupNetworkEndpointTypePtrOutput) } -func (in *networkEndpointGroupNetworkEndpointTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkEndpointGroupNetworkEndpointType] { - return pulumix.Output[*NetworkEndpointGroupNetworkEndpointType]{ - OutputState: in.ToNetworkEndpointGroupNetworkEndpointTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of vNIC to be used on this interface. This may be gVNIC or VirtioNet. type NetworkInterfaceNicType string @@ -17527,12 +16944,6 @@ func (in *networkInterfaceNicTypePtr) ToNetworkInterfaceNicTypePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(NetworkInterfaceNicTypePtrOutput) } -func (in *networkInterfaceNicTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkInterfaceNicType] { - return pulumix.Output[*NetworkInterfaceNicType]{ - OutputState: in.ToNetworkInterfaceNicTypePtrOutputWithContext(ctx).OutputState, - } -} - // The stack type for this network interface. To assign only IPv4 addresses, use IPV4_ONLY. To assign both IPv4 and IPv6 addresses, use IPV4_IPV6. If not specified, IPV4_ONLY is used. This field can be both set at instance creation and update network interface operations. type NetworkInterfaceStackType string @@ -17701,12 +17112,6 @@ func (in *networkInterfaceStackTypePtr) ToNetworkInterfaceStackTypePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(NetworkInterfaceStackTypePtrOutput) } -func (in *networkInterfaceStackTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkInterfaceStackType] { - return pulumix.Output[*NetworkInterfaceStackType]{ - OutputState: in.ToNetworkInterfaceStackTypePtrOutputWithContext(ctx).OutputState, - } -} - // The network firewall policy enforcement order. Can be either AFTER_CLASSIC_FIREWALL or BEFORE_CLASSIC_FIREWALL. Defaults to AFTER_CLASSIC_FIREWALL if the field is not specified. type NetworkNetworkFirewallPolicyEnforcementOrder string @@ -17873,12 +17278,6 @@ func (in *networkNetworkFirewallPolicyEnforcementOrderPtr) ToNetworkNetworkFirew return pulumi.ToOutputWithContext(ctx, in).(NetworkNetworkFirewallPolicyEnforcementOrderPtrOutput) } -func (in *networkNetworkFirewallPolicyEnforcementOrderPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkNetworkFirewallPolicyEnforcementOrder] { - return pulumix.Output[*NetworkNetworkFirewallPolicyEnforcementOrder]{ - OutputState: in.ToNetworkNetworkFirewallPolicyEnforcementOrderPtrOutputWithContext(ctx).OutputState, - } -} - type NetworkPerformanceConfigTotalEgressBandwidthTier string const ( @@ -18044,12 +17443,6 @@ func (in *networkPerformanceConfigTotalEgressBandwidthTierPtr) ToNetworkPerforma return pulumi.ToOutputWithContext(ctx, in).(NetworkPerformanceConfigTotalEgressBandwidthTierPtrOutput) } -func (in *networkPerformanceConfigTotalEgressBandwidthTierPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkPerformanceConfigTotalEgressBandwidthTier] { - return pulumix.Output[*NetworkPerformanceConfigTotalEgressBandwidthTier]{ - OutputState: in.ToNetworkPerformanceConfigTotalEgressBandwidthTierPtrOutputWithContext(ctx).OutputState, - } -} - // The network-wide routing mode to use. If set to REGIONAL, this network's Cloud Routers will only advertise routes with subnets of this network in the same region as the router. If set to GLOBAL, this network's Cloud Routers will advertise routes with all subnets of this network, across regions. type NetworkRoutingConfigRoutingMode string @@ -18216,12 +17609,6 @@ func (in *networkRoutingConfigRoutingModePtr) ToNetworkRoutingConfigRoutingModeP return pulumi.ToOutputWithContext(ctx, in).(NetworkRoutingConfigRoutingModePtrOutput) } -func (in *networkRoutingConfigRoutingModePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkRoutingConfigRoutingMode] { - return pulumix.Output[*NetworkRoutingConfigRoutingMode]{ - OutputState: in.ToNetworkRoutingConfigRoutingModePtrOutputWithContext(ctx).OutputState, - } -} - // The autoscaling mode. Set to one of: ON, OFF, or ONLY_SCALE_OUT. For more information, see Autoscaler modes. type NodeGroupAutoscalingPolicyMode string @@ -18395,12 +17782,6 @@ func (in *nodeGroupAutoscalingPolicyModePtr) ToNodeGroupAutoscalingPolicyModePtr return pulumi.ToOutputWithContext(ctx, in).(NodeGroupAutoscalingPolicyModePtrOutput) } -func (in *nodeGroupAutoscalingPolicyModePtr) ToOutput(ctx context.Context) pulumix.Output[*NodeGroupAutoscalingPolicyMode] { - return pulumix.Output[*NodeGroupAutoscalingPolicyMode]{ - OutputState: in.ToNodeGroupAutoscalingPolicyModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how to handle instances when a node in the group undergoes maintenance. Set to one of: DEFAULT, RESTART_IN_PLACE, or MIGRATE_WITHIN_NODE_GROUP. The default value is DEFAULT. For more information, see Maintenance policies. type NodeGroupMaintenancePolicy string @@ -18574,12 +17955,6 @@ func (in *nodeGroupMaintenancePolicyPtr) ToNodeGroupMaintenancePolicyPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(NodeGroupMaintenancePolicyPtrOutput) } -func (in *nodeGroupMaintenancePolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*NodeGroupMaintenancePolicy] { - return pulumix.Output[*NodeGroupMaintenancePolicy]{ - OutputState: in.ToNodeGroupMaintenancePolicyPtrOutputWithContext(ctx).OutputState, - } -} - type NodeGroupStatus string const ( @@ -18757,12 +18132,6 @@ func (in *nodeTemplateCpuOvercommitTypePtr) ToNodeTemplateCpuOvercommitTypePtrOu return pulumi.ToOutputWithContext(ctx, in).(NodeTemplateCpuOvercommitTypePtrOutput) } -func (in *nodeTemplateCpuOvercommitTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NodeTemplateCpuOvercommitType] { - return pulumix.Output[*NodeTemplateCpuOvercommitType]{ - OutputState: in.ToNodeTemplateCpuOvercommitTypePtrOutputWithContext(ctx).OutputState, - } -} - // Indicates whether or not this packet mirroring takes effect. If set to FALSE, this packet mirroring policy will not be enforced on the network. The default is TRUE. type PacketMirroringEnable string @@ -18929,12 +18298,6 @@ func (in *packetMirroringEnablePtr) ToPacketMirroringEnablePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(PacketMirroringEnablePtrOutput) } -func (in *packetMirroringEnablePtr) ToOutput(ctx context.Context) pulumix.Output[*PacketMirroringEnable] { - return pulumix.Output[*PacketMirroringEnable]{ - OutputState: in.ToPacketMirroringEnablePtrOutputWithContext(ctx).OutputState, - } -} - // Direction of traffic to mirror, either INGRESS, EGRESS, or BOTH. The default is BOTH. type PacketMirroringFilterDirection string @@ -19106,12 +18469,6 @@ func (in *packetMirroringFilterDirectionPtr) ToPacketMirroringFilterDirectionPtr return pulumi.ToOutputWithContext(ctx, in).(PacketMirroringFilterDirectionPtrOutput) } -func (in *packetMirroringFilterDirectionPtr) ToOutput(ctx context.Context) pulumix.Output[*PacketMirroringFilterDirection] { - return pulumix.Output[*PacketMirroringFilterDirection]{ - OutputState: in.ToPacketMirroringFilterDirectionPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how child public delegated prefix will be scoped. It could be one of following values: - `REGIONAL`: The public delegated prefix is regional only. The provisioning will take a few minutes. - `GLOBAL`: The public delegated prefix is global only. The provisioning will take ~4 weeks. - `GLOBAL_AND_REGIONAL` [output only]: The public delegated prefixes is BYOIP V1 legacy prefix. This is output only value and no longer supported in BYOIP V2. type PublicAdvertisedPrefixPdpScope string @@ -19283,12 +18640,6 @@ func (in *publicAdvertisedPrefixPdpScopePtr) ToPublicAdvertisedPrefixPdpScopePtr return pulumi.ToOutputWithContext(ctx, in).(PublicAdvertisedPrefixPdpScopePtrOutput) } -func (in *publicAdvertisedPrefixPdpScopePtr) ToOutput(ctx context.Context) pulumix.Output[*PublicAdvertisedPrefixPdpScope] { - return pulumix.Output[*PublicAdvertisedPrefixPdpScope]{ - OutputState: in.ToPublicAdvertisedPrefixPdpScopePtrOutputWithContext(ctx).OutputState, - } -} - // The status of the public advertised prefix. Possible values include: - `INITIAL`: RPKI validation is complete. - `PTR_CONFIGURED`: User has configured the PTR. - `VALIDATED`: Reverse DNS lookup is successful. - `REVERSE_DNS_LOOKUP_FAILED`: Reverse DNS lookup failed. - `PREFIX_CONFIGURATION_IN_PROGRESS`: The prefix is being configured. - `PREFIX_CONFIGURATION_COMPLETE`: The prefix is fully configured. - `PREFIX_REMOVAL_IN_PROGRESS`: The prefix is being removed. type PublicAdvertisedPrefixStatus string @@ -19478,12 +18829,6 @@ func (in *publicAdvertisedPrefixStatusPtr) ToPublicAdvertisedPrefixStatusPtrOutp return pulumi.ToOutputWithContext(ctx, in).(PublicAdvertisedPrefixStatusPtrOutput) } -func (in *publicAdvertisedPrefixStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*PublicAdvertisedPrefixStatus] { - return pulumix.Output[*PublicAdvertisedPrefixStatus]{ - OutputState: in.ToPublicAdvertisedPrefixStatusPtrOutputWithContext(ctx).OutputState, - } -} - // Compress text responses using Brotli or gzip compression, based on the client's Accept-Encoding header. type RegionBackendServiceCompressionMode string @@ -19652,12 +18997,6 @@ func (in *regionBackendServiceCompressionModePtr) ToRegionBackendServiceCompress return pulumi.ToOutputWithContext(ctx, in).(RegionBackendServiceCompressionModePtrOutput) } -func (in *regionBackendServiceCompressionModePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionBackendServiceCompressionMode] { - return pulumix.Output[*RegionBackendServiceCompressionMode]{ - OutputState: in.ToRegionBackendServiceCompressionModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the load balancer type. A backend service created for one type of load balancer cannot be used with another. For more information, refer to Choosing a load balancer. type RegionBackendServiceLoadBalancingScheme string @@ -19837,12 +19176,6 @@ func (in *regionBackendServiceLoadBalancingSchemePtr) ToRegionBackendServiceLoad return pulumi.ToOutputWithContext(ctx, in).(RegionBackendServiceLoadBalancingSchemePtrOutput) } -func (in *regionBackendServiceLoadBalancingSchemePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionBackendServiceLoadBalancingScheme] { - return pulumix.Output[*RegionBackendServiceLoadBalancingScheme]{ - OutputState: in.ToRegionBackendServiceLoadBalancingSchemePtrOutputWithContext(ctx).OutputState, - } -} - // The load balancing algorithm used within the scope of the locality. The possible values are: - ROUND_ROBIN: This is a simple policy in which each healthy backend is selected in round robin order. This is the default. - LEAST_REQUEST: An O(1) algorithm which selects two random healthy hosts and picks the host which has fewer active requests. - RING_HASH: The ring/modulo hash load balancer implements consistent hashing to backends. The algorithm has the property that the addition/removal of a host from a set of N hosts only affects 1/N of the requests. - RANDOM: The load balancer selects a random healthy host. - ORIGINAL_DESTINATION: Backend host is selected based on the client connection metadata, i.e., connections are opened to the same address as the destination address of the incoming connection before the connection was redirected to the load balancer. - MAGLEV: used as a drop in replacement for the ring hash load balancer. Maglev is not as stable as ring hash but has faster table lookup build times and host selection times. For more information about Maglev, see https://ai.google/research/pubs/pub44824 This field is applicable to either: - A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2, and load_balancing_scheme set to INTERNAL_MANAGED. - A global backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED, INTERNAL_MANAGED, or EXTERNAL_MANAGED. If sessionAffinity is not NONE, and this field is not set to MAGLEV or RING_HASH, session affinity settings will not take effect. Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced by a URL map that is bound to target gRPC proxy that has validateForProxyless field set to true. type RegionBackendServiceLocalityLbPolicy string @@ -20028,12 +19361,6 @@ func (in *regionBackendServiceLocalityLbPolicyPtr) ToRegionBackendServiceLocalit return pulumi.ToOutputWithContext(ctx, in).(RegionBackendServiceLocalityLbPolicyPtrOutput) } -func (in *regionBackendServiceLocalityLbPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionBackendServiceLocalityLbPolicy] { - return pulumix.Output[*RegionBackendServiceLocalityLbPolicy]{ - OutputState: in.ToRegionBackendServiceLocalityLbPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // The protocol this BackendService uses to communicate with backends. Possible values are HTTP, HTTPS, HTTP2, TCP, SSL, UDP or GRPC. depending on the chosen load balancer or Traffic Director configuration. Refer to the documentation for the load balancers or for Traffic Director for more information. Must be set to GRPC when the backend service is referenced by a URL map that is bound to target gRPC proxy. type RegionBackendServiceProtocol string @@ -20218,12 +19545,6 @@ func (in *regionBackendServiceProtocolPtr) ToRegionBackendServiceProtocolPtrOutp return pulumi.ToOutputWithContext(ctx, in).(RegionBackendServiceProtocolPtrOutput) } -func (in *regionBackendServiceProtocolPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionBackendServiceProtocol] { - return pulumix.Output[*RegionBackendServiceProtocol]{ - OutputState: in.ToRegionBackendServiceProtocolPtrOutputWithContext(ctx).OutputState, - } -} - // Type of session affinity to use. The default is NONE. Only NONE and HEADER_FIELD are supported when the backend service is referenced by a URL map that is bound to target gRPC proxy that has validateForProxyless field set to true. For more details, see: [Session Affinity](https://cloud.google.com/load-balancing/docs/backend-service#session_affinity). type RegionBackendServiceSessionAffinity string @@ -20410,12 +19731,6 @@ func (in *regionBackendServiceSessionAffinityPtr) ToRegionBackendServiceSessionA return pulumi.ToOutputWithContext(ctx, in).(RegionBackendServiceSessionAffinityPtrOutput) } -func (in *regionBackendServiceSessionAffinityPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionBackendServiceSessionAffinity] { - return pulumix.Output[*RegionBackendServiceSessionAffinity]{ - OutputState: in.ToRegionBackendServiceSessionAffinityPtrOutputWithContext(ctx).OutputState, - } -} - // The category of the commitment. Category MACHINE specifies commitments composed of machine resources such as VCPU or MEMORY, listed in resources. Category LICENSE specifies commitments composed of software licenses, listed in licenseResources. Note that only MACHINE commitments should have a Type specified. type RegionCommitmentCategory string @@ -20584,12 +19899,6 @@ func (in *regionCommitmentCategoryPtr) ToRegionCommitmentCategoryPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(RegionCommitmentCategoryPtrOutput) } -func (in *regionCommitmentCategoryPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionCommitmentCategory] { - return pulumix.Output[*RegionCommitmentCategory]{ - OutputState: in.ToRegionCommitmentCategoryPtrOutputWithContext(ctx).OutputState, - } -} - // The plan for this commitment, which determines duration and discount rate. The currently supported plans are TWELVE_MONTH (1 year), and THIRTY_SIX_MONTH (3 years). type RegionCommitmentPlan string @@ -20758,12 +20067,6 @@ func (in *regionCommitmentPlanPtr) ToRegionCommitmentPlanPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(RegionCommitmentPlanPtrOutput) } -func (in *regionCommitmentPlanPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionCommitmentPlan] { - return pulumix.Output[*RegionCommitmentPlan]{ - OutputState: in.ToRegionCommitmentPlanPtrOutputWithContext(ctx).OutputState, - } -} - // The type of commitment, which affects the discount rate and the eligible resources. Type MEMORY_OPTIMIZED specifies a commitment that will only apply to memory optimized machines. Type ACCELERATOR_OPTIMIZED specifies a commitment that will only apply to accelerator optimized machines. type RegionCommitmentType string @@ -20958,12 +20261,6 @@ func (in *regionCommitmentTypePtr) ToRegionCommitmentTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(RegionCommitmentTypePtrOutput) } -func (in *regionCommitmentTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionCommitmentType] { - return pulumix.Output[*RegionCommitmentType]{ - OutputState: in.ToRegionCommitmentTypePtrOutputWithContext(ctx).OutputState, - } -} - // The architecture of the disk. Valid values are ARM64 or X86_64. type RegionDiskArchitecture string @@ -21135,12 +20432,6 @@ func (in *regionDiskArchitecturePtr) ToRegionDiskArchitecturePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(RegionDiskArchitecturePtrOutput) } -func (in *regionDiskArchitecturePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionDiskArchitecture] { - return pulumix.Output[*RegionDiskArchitecture]{ - OutputState: in.ToRegionDiskArchitecturePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Policy for how the results from multiple health checks for the same endpoint are aggregated. Defaults to NO_AGGREGATION if unspecified. - NO_AGGREGATION. An EndpointHealth message is returned for each pair in the health check service. - AND. If any health check of an endpoint reports UNHEALTHY, then UNHEALTHY is the HealthState of the endpoint. If all health checks report HEALTHY, the HealthState of the endpoint is HEALTHY. . This is only allowed with regional HealthCheckService. type RegionHealthCheckServiceHealthStatusAggregationPolicy string @@ -21309,12 +20600,6 @@ func (in *regionHealthCheckServiceHealthStatusAggregationPolicyPtr) ToRegionHeal return pulumi.ToOutputWithContext(ctx, in).(RegionHealthCheckServiceHealthStatusAggregationPolicyPtrOutput) } -func (in *regionHealthCheckServiceHealthStatusAggregationPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionHealthCheckServiceHealthStatusAggregationPolicy] { - return pulumix.Output[*RegionHealthCheckServiceHealthStatusAggregationPolicy]{ - OutputState: in.ToRegionHealthCheckServiceHealthStatusAggregationPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of the healthCheck, either TCP, SSL, HTTP, HTTPS, HTTP2 or GRPC. Exactly one of the protocol-specific health check fields must be specified, which must match type field. type RegionHealthCheckType string @@ -21491,12 +20776,6 @@ func (in *regionHealthCheckTypePtr) ToRegionHealthCheckTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(RegionHealthCheckTypePtrOutput) } -func (in *regionHealthCheckTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionHealthCheckType] { - return pulumix.Output[*RegionHealthCheckType]{ - OutputState: in.ToRegionHealthCheckTypePtrOutputWithContext(ctx).OutputState, - } -} - // Pagination behavior of the listManagedInstances API method for this managed instance group. type RegionInstanceGroupManagerListManagedInstancesResults string @@ -21665,12 +20944,6 @@ func (in *regionInstanceGroupManagerListManagedInstancesResultsPtr) ToRegionInst return pulumi.ToOutputWithContext(ctx, in).(RegionInstanceGroupManagerListManagedInstancesResultsPtrOutput) } -func (in *regionInstanceGroupManagerListManagedInstancesResultsPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionInstanceGroupManagerListManagedInstancesResults] { - return pulumix.Output[*RegionInstanceGroupManagerListManagedInstancesResults]{ - OutputState: in.ToRegionInstanceGroupManagerListManagedInstancesResultsPtrOutputWithContext(ctx).OutputState, - } -} - // Type of network endpoints in this network endpoint group. Can be one of GCE_VM_IP, GCE_VM_IP_PORT, NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT, INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT. type RegionNetworkEndpointGroupNetworkEndpointType string @@ -21854,12 +21127,6 @@ func (in *regionNetworkEndpointGroupNetworkEndpointTypePtr) ToRegionNetworkEndpo return pulumi.ToOutputWithContext(ctx, in).(RegionNetworkEndpointGroupNetworkEndpointTypePtrOutput) } -func (in *regionNetworkEndpointGroupNetworkEndpointTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionNetworkEndpointGroupNetworkEndpointType] { - return pulumix.Output[*RegionNetworkEndpointGroupNetworkEndpointType]{ - OutputState: in.ToRegionNetworkEndpointGroupNetworkEndpointTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type indicates the intended use of the security policy. - CLOUD_ARMOR: Cloud Armor backend security policies can be configured to filter incoming HTTP requests targeting backend services. They filter requests before they hit the origin servers. - CLOUD_ARMOR_EDGE: Cloud Armor edge security policies can be configured to filter incoming HTTP requests targeting backend services (including Cloud CDN-enabled) as well as backend buckets (Cloud Storage). They filter requests before the request is served from Google's cache. - CLOUD_ARMOR_INTERNAL_SERVICE: Cloud Armor internal service policies can be configured to filter HTTP requests targeting services managed by Traffic Director in a service mesh. They filter requests before the request is served from the application. - CLOUD_ARMOR_NETWORK: Cloud Armor network policies can be configured to filter packets targeting network load balancing resources such as backend services, target pools, target instances, and instances with external IPs. They filter requests before the request is served from the application. This field can be set only at resource creation time. type RegionSecurityPolicyType string @@ -22028,12 +21295,6 @@ func (in *regionSecurityPolicyTypePtr) ToRegionSecurityPolicyTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(RegionSecurityPolicyTypePtrOutput) } -func (in *regionSecurityPolicyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionSecurityPolicyType] { - return pulumix.Output[*RegionSecurityPolicyType]{ - OutputState: in.ToRegionSecurityPolicyTypePtrOutputWithContext(ctx).OutputState, - } -} - // (Optional) Specifies the type of SSL certificate, either "SELF_MANAGED" or "MANAGED". If not specified, the certificate is self-managed and the fields certificate and private_key are used. type RegionSslCertificateType string @@ -22204,12 +21465,6 @@ func (in *regionSslCertificateTypePtr) ToRegionSslCertificateTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(RegionSslCertificateTypePtrOutput) } -func (in *regionSslCertificateTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionSslCertificateType] { - return pulumix.Output[*RegionSslCertificateType]{ - OutputState: in.ToRegionSslCertificateTypePtrOutputWithContext(ctx).OutputState, - } -} - // The minimum version of SSL protocol that can be used by the clients to establish a connection with the load balancer. This can be one of TLS_1_0, TLS_1_1, TLS_1_2. type RegionSslPolicyMinTlsVersion string @@ -22381,12 +21636,6 @@ func (in *regionSslPolicyMinTlsVersionPtr) ToRegionSslPolicyMinTlsVersionPtrOutp return pulumi.ToOutputWithContext(ctx, in).(RegionSslPolicyMinTlsVersionPtrOutput) } -func (in *regionSslPolicyMinTlsVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionSslPolicyMinTlsVersion] { - return pulumix.Output[*RegionSslPolicyMinTlsVersion]{ - OutputState: in.ToRegionSslPolicyMinTlsVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Profile specifies the set of SSL features that can be used by the load balancer when negotiating SSL with clients. This can be one of COMPATIBLE, MODERN, RESTRICTED, or CUSTOM. If using CUSTOM, the set of SSL features to enable must be specified in the customFeatures field. type RegionSslPolicyProfile string @@ -22561,12 +21810,6 @@ func (in *regionSslPolicyProfilePtr) ToRegionSslPolicyProfilePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(RegionSslPolicyProfilePtrOutput) } -func (in *regionSslPolicyProfilePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionSslPolicyProfile] { - return pulumix.Output[*RegionSslPolicyProfile]{ - OutputState: in.ToRegionSslPolicyProfilePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the QUIC override policy for this TargetHttpsProxy resource. This setting determines whether the load balancer attempts to negotiate QUIC with clients. You can specify NONE, ENABLE, or DISABLE. - When quic-override is set to NONE, Google manages whether QUIC is used. - When quic-override is set to ENABLE, the load balancer uses QUIC when possible. - When quic-override is set to DISABLE, the load balancer doesn't use QUIC. - If the quic-override flag is not specified, NONE is implied. type RegionTargetHttpsProxyQuicOverride string @@ -22738,12 +21981,6 @@ func (in *regionTargetHttpsProxyQuicOverridePtr) ToRegionTargetHttpsProxyQuicOve return pulumi.ToOutputWithContext(ctx, in).(RegionTargetHttpsProxyQuicOverridePtrOutput) } -func (in *regionTargetHttpsProxyQuicOverridePtr) ToOutput(ctx context.Context) pulumix.Output[*RegionTargetHttpsProxyQuicOverride] { - return pulumix.Output[*RegionTargetHttpsProxyQuicOverride]{ - OutputState: in.ToRegionTargetHttpsProxyQuicOverridePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type RegionTargetTcpProxyProxyHeader string @@ -22910,12 +22147,6 @@ func (in *regionTargetTcpProxyProxyHeaderPtr) ToRegionTargetTcpProxyProxyHeaderP return pulumi.ToOutputWithContext(ctx, in).(RegionTargetTcpProxyProxyHeaderPtrOutput) } -func (in *regionTargetTcpProxyProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*RegionTargetTcpProxyProxyHeader] { - return pulumix.Output[*RegionTargetTcpProxyProxyHeader]{ - OutputState: in.ToRegionTargetTcpProxyProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of reservation from which this instance can consume resources: ANY_RESERVATION (default), SPECIFIC_RESERVATION, or NO_RESERVATION. See Consuming reserved instances for examples. type ReservationAffinityConsumeReservationType string @@ -23089,12 +22320,6 @@ func (in *reservationAffinityConsumeReservationTypePtr) ToReservationAffinityCon return pulumi.ToOutputWithContext(ctx, in).(ReservationAffinityConsumeReservationTypePtrOutput) } -func (in *reservationAffinityConsumeReservationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ReservationAffinityConsumeReservationType] { - return pulumix.Output[*ReservationAffinityConsumeReservationType]{ - OutputState: in.ToReservationAffinityConsumeReservationTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of resource for which this commitment applies. Possible values are VCPU, MEMORY, LOCAL_SSD, and ACCELERATOR. type ResourceCommitmentType string @@ -23267,12 +22492,6 @@ func (in *resourceCommitmentTypePtr) ToResourceCommitmentTypePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(ResourceCommitmentTypePtrOutput) } -func (in *resourceCommitmentTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ResourceCommitmentType] { - return pulumix.Output[*ResourceCommitmentType]{ - OutputState: in.ToResourceCommitmentTypePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies network collocation type ResourcePolicyGroupPlacementPolicyCollocation string @@ -23439,12 +22658,6 @@ func (in *resourcePolicyGroupPlacementPolicyCollocationPtr) ToResourcePolicyGrou return pulumi.ToOutputWithContext(ctx, in).(ResourcePolicyGroupPlacementPolicyCollocationPtrOutput) } -func (in *resourcePolicyGroupPlacementPolicyCollocationPtr) ToOutput(ctx context.Context) pulumix.Output[*ResourcePolicyGroupPlacementPolicyCollocation] { - return pulumix.Output[*ResourcePolicyGroupPlacementPolicyCollocation]{ - OutputState: in.ToResourcePolicyGroupPlacementPolicyCollocationPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the behavior to apply to scheduled snapshots when the source disk is deleted. type ResourcePolicySnapshotSchedulePolicyRetentionPolicyOnSourceDiskDelete string @@ -23613,12 +22826,6 @@ func (in *resourcePolicySnapshotSchedulePolicyRetentionPolicyOnSourceDiskDeleteP return pulumi.ToOutputWithContext(ctx, in).(ResourcePolicySnapshotSchedulePolicyRetentionPolicyOnSourceDiskDeletePtrOutput) } -func (in *resourcePolicySnapshotSchedulePolicyRetentionPolicyOnSourceDiskDeletePtr) ToOutput(ctx context.Context) pulumix.Output[*ResourcePolicySnapshotSchedulePolicyRetentionPolicyOnSourceDiskDelete] { - return pulumix.Output[*ResourcePolicySnapshotSchedulePolicyRetentionPolicyOnSourceDiskDelete]{ - OutputState: in.ToResourcePolicySnapshotSchedulePolicyRetentionPolicyOnSourceDiskDeletePtrOutputWithContext(ctx).OutputState, - } -} - // Defines a schedule that runs on specific days of the week. Specify one or more days. The following options are available: MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY. type ResourcePolicyWeeklyCycleDayOfWeekDay string @@ -23797,12 +23004,6 @@ func (in *resourcePolicyWeeklyCycleDayOfWeekDayPtr) ToResourcePolicyWeeklyCycleD return pulumi.ToOutputWithContext(ctx, in).(ResourcePolicyWeeklyCycleDayOfWeekDayPtrOutput) } -func (in *resourcePolicyWeeklyCycleDayOfWeekDayPtr) ToOutput(ctx context.Context) pulumix.Output[*ResourcePolicyWeeklyCycleDayOfWeekDay] { - return pulumix.Output[*ResourcePolicyWeeklyCycleDayOfWeekDay]{ - OutputState: in.ToResourcePolicyWeeklyCycleDayOfWeekDayPtrOutputWithContext(ctx).OutputState, - } -} - // User-specified flag to indicate which mode to use for advertisement. The options are DEFAULT or CUSTOM. type RouterBgpAdvertiseMode string @@ -23969,12 +23170,6 @@ func (in *routerBgpAdvertiseModePtr) ToRouterBgpAdvertiseModePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(RouterBgpAdvertiseModePtrOutput) } -func (in *routerBgpAdvertiseModePtr) ToOutput(ctx context.Context) pulumix.Output[*RouterBgpAdvertiseMode] { - return pulumix.Output[*RouterBgpAdvertiseMode]{ - OutputState: in.ToRouterBgpAdvertiseModePtrOutputWithContext(ctx).OutputState, - } -} - type RouterBgpAdvertisedGroupsItem string const ( @@ -24139,12 +23334,6 @@ func (in *routerBgpAdvertisedGroupsItemPtr) ToRouterBgpAdvertisedGroupsItemPtrOu return pulumi.ToOutputWithContext(ctx, in).(RouterBgpAdvertisedGroupsItemPtrOutput) } -func (in *routerBgpAdvertisedGroupsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterBgpAdvertisedGroupsItem] { - return pulumix.Output[*RouterBgpAdvertisedGroupsItem]{ - OutputState: in.ToRouterBgpAdvertisedGroupsItemPtrOutputWithContext(ctx).OutputState, - } -} - // RouterBgpAdvertisedGroupsItemArrayInput is an input type that accepts RouterBgpAdvertisedGroupsItemArray and RouterBgpAdvertisedGroupsItemArrayOutput values. // You can construct a concrete instance of `RouterBgpAdvertisedGroupsItemArrayInput` via: // @@ -24356,12 +23545,6 @@ func (in *routerBgpPeerAdvertiseModePtr) ToRouterBgpPeerAdvertiseModePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(RouterBgpPeerAdvertiseModePtrOutput) } -func (in *routerBgpPeerAdvertiseModePtr) ToOutput(ctx context.Context) pulumix.Output[*RouterBgpPeerAdvertiseMode] { - return pulumix.Output[*RouterBgpPeerAdvertiseMode]{ - OutputState: in.ToRouterBgpPeerAdvertiseModePtrOutputWithContext(ctx).OutputState, - } -} - type RouterBgpPeerAdvertisedGroupsItem string const ( @@ -24526,12 +23709,6 @@ func (in *routerBgpPeerAdvertisedGroupsItemPtr) ToRouterBgpPeerAdvertisedGroupsI return pulumi.ToOutputWithContext(ctx, in).(RouterBgpPeerAdvertisedGroupsItemPtrOutput) } -func (in *routerBgpPeerAdvertisedGroupsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterBgpPeerAdvertisedGroupsItem] { - return pulumix.Output[*RouterBgpPeerAdvertisedGroupsItem]{ - OutputState: in.ToRouterBgpPeerAdvertisedGroupsItemPtrOutputWithContext(ctx).OutputState, - } -} - // RouterBgpPeerAdvertisedGroupsItemArrayInput is an input type that accepts RouterBgpPeerAdvertisedGroupsItemArray and RouterBgpPeerAdvertisedGroupsItemArrayOutput values. // You can construct a concrete instance of `RouterBgpPeerAdvertisedGroupsItemArrayInput` via: // @@ -24745,12 +23922,6 @@ func (in *routerBgpPeerBfdSessionInitializationModePtr) ToRouterBgpPeerBfdSessio return pulumi.ToOutputWithContext(ctx, in).(RouterBgpPeerBfdSessionInitializationModePtrOutput) } -func (in *routerBgpPeerBfdSessionInitializationModePtr) ToOutput(ctx context.Context) pulumix.Output[*RouterBgpPeerBfdSessionInitializationMode] { - return pulumix.Output[*RouterBgpPeerBfdSessionInitializationMode]{ - OutputState: in.ToRouterBgpPeerBfdSessionInitializationModePtrOutputWithContext(ctx).OutputState, - } -} - // The status of the BGP peer connection. If set to FALSE, any active session with the peer is terminated and all associated routing information is removed. If set to TRUE, the peer connection can be established with routing information. The default is TRUE. type RouterBgpPeerEnable string @@ -24917,12 +24088,6 @@ func (in *routerBgpPeerEnablePtr) ToRouterBgpPeerEnablePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(RouterBgpPeerEnablePtrOutput) } -func (in *routerBgpPeerEnablePtr) ToOutput(ctx context.Context) pulumix.Output[*RouterBgpPeerEnable] { - return pulumix.Output[*RouterBgpPeerEnable]{ - OutputState: in.ToRouterBgpPeerEnablePtrOutputWithContext(ctx).OutputState, - } -} - // The network tier to use when automatically reserving NAT IP addresses. Must be one of: PREMIUM, STANDARD. If not specified, then the current project-level default tier is used. type RouterNatAutoNetworkTier string @@ -25097,12 +24262,6 @@ func (in *routerNatAutoNetworkTierPtr) ToRouterNatAutoNetworkTierPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(RouterNatAutoNetworkTierPtrOutput) } -func (in *routerNatAutoNetworkTierPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterNatAutoNetworkTier] { - return pulumix.Output[*RouterNatAutoNetworkTier]{ - OutputState: in.ToRouterNatAutoNetworkTierPtrOutputWithContext(ctx).OutputState, - } -} - type RouterNatEndpointTypesItem string const ( @@ -25273,12 +24432,6 @@ func (in *routerNatEndpointTypesItemPtr) ToRouterNatEndpointTypesItemPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(RouterNatEndpointTypesItemPtrOutput) } -func (in *routerNatEndpointTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterNatEndpointTypesItem] { - return pulumix.Output[*RouterNatEndpointTypesItem]{ - OutputState: in.ToRouterNatEndpointTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // RouterNatEndpointTypesItemArrayInput is an input type that accepts RouterNatEndpointTypesItemArray and RouterNatEndpointTypesItemArrayOutput values. // You can construct a concrete instance of `RouterNatEndpointTypesItemArrayInput` via: // @@ -25495,12 +24648,6 @@ func (in *routerNatLogConfigFilterPtr) ToRouterNatLogConfigFilterPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(RouterNatLogConfigFilterPtrOutput) } -func (in *routerNatLogConfigFilterPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterNatLogConfigFilter] { - return pulumix.Output[*RouterNatLogConfigFilter]{ - OutputState: in.ToRouterNatLogConfigFilterPtrOutputWithContext(ctx).OutputState, - } -} - // Specify the NatIpAllocateOption, which can take one of the following values: - MANUAL_ONLY: Uses only Nat IP addresses provided by customers. When there are not enough specified Nat IPs, the Nat service fails for new VMs. - AUTO_ONLY: Nat IPs are allocated by Google Cloud Platform; customers can't specify any Nat IPs. When choosing AUTO_ONLY, then nat_ip should be empty. type RouterNatNatIpAllocateOption string @@ -25669,12 +24816,6 @@ func (in *routerNatNatIpAllocateOptionPtr) ToRouterNatNatIpAllocateOptionPtrOutp return pulumi.ToOutputWithContext(ctx, in).(RouterNatNatIpAllocateOptionPtrOutput) } -func (in *routerNatNatIpAllocateOptionPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterNatNatIpAllocateOption] { - return pulumix.Output[*RouterNatNatIpAllocateOption]{ - OutputState: in.ToRouterNatNatIpAllocateOptionPtrOutputWithContext(ctx).OutputState, - } -} - // Specify the Nat option, which can take one of the following values: - ALL_SUBNETWORKS_ALL_IP_RANGES: All of the IP ranges in every Subnetwork are allowed to Nat. - ALL_SUBNETWORKS_ALL_PRIMARY_IP_RANGES: All of the primary IP ranges in every Subnetwork are allowed to Nat. - LIST_OF_SUBNETWORKS: A list of Subnetworks are allowed to Nat (specified in the field subnetwork below) The default is SUBNETWORK_IP_RANGE_TO_NAT_OPTION_UNSPECIFIED. Note that if this field contains ALL_SUBNETWORKS_ALL_IP_RANGES then there should not be any other Router.Nat section in any Router for this network in this region. type RouterNatSourceSubnetworkIpRangesToNat string @@ -25846,12 +24987,6 @@ func (in *routerNatSourceSubnetworkIpRangesToNatPtr) ToRouterNatSourceSubnetwork return pulumi.ToOutputWithContext(ctx, in).(RouterNatSourceSubnetworkIpRangesToNatPtrOutput) } -func (in *routerNatSourceSubnetworkIpRangesToNatPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterNatSourceSubnetworkIpRangesToNat] { - return pulumix.Output[*RouterNatSourceSubnetworkIpRangesToNat]{ - OutputState: in.ToRouterNatSourceSubnetworkIpRangesToNatPtrOutputWithContext(ctx).OutputState, - } -} - type RouterNatSubnetworkToNatSourceIpRangesToNatItem string const ( @@ -26022,12 +25157,6 @@ func (in *routerNatSubnetworkToNatSourceIpRangesToNatItemPtr) ToRouterNatSubnetw return pulumi.ToOutputWithContext(ctx, in).(RouterNatSubnetworkToNatSourceIpRangesToNatItemPtrOutput) } -func (in *routerNatSubnetworkToNatSourceIpRangesToNatItemPtr) ToOutput(ctx context.Context) pulumix.Output[*RouterNatSubnetworkToNatSourceIpRangesToNatItem] { - return pulumix.Output[*RouterNatSubnetworkToNatSourceIpRangesToNatItem]{ - OutputState: in.ToRouterNatSubnetworkToNatSourceIpRangesToNatItemPtrOutputWithContext(ctx).OutputState, - } -} - // RouterNatSubnetworkToNatSourceIpRangesToNatItemArrayInput is an input type that accepts RouterNatSubnetworkToNatSourceIpRangesToNatItemArray and RouterNatSubnetworkToNatSourceIpRangesToNatItemArrayOutput values. // You can construct a concrete instance of `RouterNatSubnetworkToNatSourceIpRangesToNatItemArrayInput` via: // @@ -26241,12 +25370,6 @@ func (in *routerNatTypePtr) ToRouterNatTypePtrOutputWithContext(ctx context.Cont return pulumi.ToOutputWithContext(ctx, in).(RouterNatTypePtrOutput) } -func (in *routerNatTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RouterNatType] { - return pulumix.Output[*RouterNatType]{ - OutputState: in.ToRouterNatTypePtrOutputWithContext(ctx).OutputState, - } -} - // This is deprecated and has no effect. Do not use. type RuleAction string @@ -26427,12 +25550,6 @@ func (in *ruleActionPtr) ToRuleActionPtrOutputWithContext(ctx context.Context) R return pulumi.ToOutputWithContext(ctx, in).(RuleActionPtrOutput) } -func (in *ruleActionPtr) ToOutput(ctx context.Context) pulumix.Output[*RuleAction] { - return pulumix.Output[*RuleAction]{ - OutputState: in.ToRuleActionPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how a port is selected for health checking. Can be one of the following values: USE_FIXED_PORT: Specifies a port number explicitly using the port field in the health check. Supported by backend services for pass-through load balancers and backend services for proxy load balancers. Not supported by target pools. The health check supports all backends supported by the backend service provided the backend can be health checked. For example, GCE_VM_IP network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an indirect method of specifying the health check port by referring to the backend service. Only supported by backend services for proxy load balancers. Not supported by target pools. Not supported by backend services for pass-through load balancers. Supports all backends that can be health checked; for example, GCE_VM_IP_PORT network endpoint groups and instance group backends. For GCE_VM_IP_PORT network endpoint group backends, the health check uses the port number specified for each endpoint in the network endpoint group. For instance group backends, the health check uses the port number determined by looking up the backend service's named port in the instance group's list of named ports. type SSLHealthCheckPortSpecification string @@ -26604,12 +25721,6 @@ func (in *sslhealthCheckPortSpecificationPtr) ToSSLHealthCheckPortSpecificationP return pulumi.ToOutputWithContext(ctx, in).(SSLHealthCheckPortSpecificationPtrOutput) } -func (in *sslhealthCheckPortSpecificationPtr) ToOutput(ctx context.Context) pulumix.Output[*SSLHealthCheckPortSpecification] { - return pulumix.Output[*SSLHealthCheckPortSpecification]{ - OutputState: in.ToSSLHealthCheckPortSpecificationPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type SSLHealthCheckProxyHeader string @@ -26776,12 +25887,6 @@ func (in *sslhealthCheckProxyHeaderPtr) ToSSLHealthCheckProxyHeaderPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(SSLHealthCheckProxyHeaderPtrOutput) } -func (in *sslhealthCheckProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*SSLHealthCheckProxyHeader] { - return pulumix.Output[*SSLHealthCheckProxyHeader]{ - OutputState: in.ToSSLHealthCheckProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the termination action for the instance. type SchedulingInstanceTerminationAction string @@ -26953,12 +26058,6 @@ func (in *schedulingInstanceTerminationActionPtr) ToSchedulingInstanceTerminatio return pulumi.ToOutputWithContext(ctx, in).(SchedulingInstanceTerminationActionPtrOutput) } -func (in *schedulingInstanceTerminationActionPtr) ToOutput(ctx context.Context) pulumix.Output[*SchedulingInstanceTerminationAction] { - return pulumix.Output[*SchedulingInstanceTerminationAction]{ - OutputState: in.ToSchedulingInstanceTerminationActionPtrOutputWithContext(ctx).OutputState, - } -} - // Defines the operation of node selection. Valid operators are IN for affinity and NOT_IN for anti-affinity. type SchedulingNodeAffinityOperator string @@ -27129,12 +26228,6 @@ func (in *schedulingNodeAffinityOperatorPtr) ToSchedulingNodeAffinityOperatorPtr return pulumi.ToOutputWithContext(ctx, in).(SchedulingNodeAffinityOperatorPtrOutput) } -func (in *schedulingNodeAffinityOperatorPtr) ToOutput(ctx context.Context) pulumix.Output[*SchedulingNodeAffinityOperator] { - return pulumix.Output[*SchedulingNodeAffinityOperator]{ - OutputState: in.ToSchedulingNodeAffinityOperatorPtrOutputWithContext(ctx).OutputState, - } -} - // Defines the maintenance behavior for this instance. For standard instances, the default behavior is MIGRATE. For preemptible instances, the default and only possible behavior is TERMINATE. For more information, see Set VM host maintenance policy. type SchedulingOnHostMaintenance string @@ -27303,12 +26396,6 @@ func (in *schedulingOnHostMaintenancePtr) ToSchedulingOnHostMaintenancePtrOutput return pulumi.ToOutputWithContext(ctx, in).(SchedulingOnHostMaintenancePtrOutput) } -func (in *schedulingOnHostMaintenancePtr) ToOutput(ctx context.Context) pulumix.Output[*SchedulingOnHostMaintenance] { - return pulumix.Output[*SchedulingOnHostMaintenance]{ - OutputState: in.ToSchedulingOnHostMaintenancePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the provisioning model of the instance. type SchedulingProvisioningModel string @@ -27477,12 +26564,6 @@ func (in *schedulingProvisioningModelPtr) ToSchedulingProvisioningModelPtrOutput return pulumi.ToOutputWithContext(ctx, in).(SchedulingProvisioningModelPtrOutput) } -func (in *schedulingProvisioningModelPtr) ToOutput(ctx context.Context) pulumix.Output[*SchedulingProvisioningModel] { - return pulumix.Output[*SchedulingProvisioningModel]{ - OutputState: in.ToSchedulingProvisioningModelPtrOutputWithContext(ctx).OutputState, - } -} - // Rule visibility can be one of the following: STANDARD - opaque rules. (default) PREMIUM - transparent rules. This field is only supported in Global Security Policies of type CLOUD_ARMOR. type SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigRuleVisibility string @@ -27649,12 +26730,6 @@ func (in *securityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigRuleVisib return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigRuleVisibilityPtrOutput) } -func (in *securityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigRuleVisibilityPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigRuleVisibility] { - return pulumix.Output[*SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigRuleVisibility]{ - OutputState: in.ToSecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfigRuleVisibilityPtrOutputWithContext(ctx).OutputState, - } -} - type SecurityPolicyAdvancedOptionsConfigJsonParsing string const ( @@ -27822,12 +26897,6 @@ func (in *securityPolicyAdvancedOptionsConfigJsonParsingPtr) ToSecurityPolicyAdv return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyAdvancedOptionsConfigJsonParsingPtrOutput) } -func (in *securityPolicyAdvancedOptionsConfigJsonParsingPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyAdvancedOptionsConfigJsonParsing] { - return pulumix.Output[*SecurityPolicyAdvancedOptionsConfigJsonParsing]{ - OutputState: in.ToSecurityPolicyAdvancedOptionsConfigJsonParsingPtrOutputWithContext(ctx).OutputState, - } -} - type SecurityPolicyAdvancedOptionsConfigLogLevel string const ( @@ -27993,12 +27062,6 @@ func (in *securityPolicyAdvancedOptionsConfigLogLevelPtr) ToSecurityPolicyAdvanc return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyAdvancedOptionsConfigLogLevelPtrOutput) } -func (in *securityPolicyAdvancedOptionsConfigLogLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyAdvancedOptionsConfigLogLevel] { - return pulumix.Output[*SecurityPolicyAdvancedOptionsConfigLogLevel]{ - OutputState: in.ToSecurityPolicyAdvancedOptionsConfigLogLevelPtrOutputWithContext(ctx).OutputState, - } -} - type SecurityPolicyDdosProtectionConfigDdosProtection string const ( @@ -28164,12 +27227,6 @@ func (in *securityPolicyDdosProtectionConfigDdosProtectionPtr) ToSecurityPolicyD return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyDdosProtectionConfigDdosProtectionPtrOutput) } -func (in *securityPolicyDdosProtectionConfigDdosProtectionPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyDdosProtectionConfigDdosProtection] { - return pulumix.Output[*SecurityPolicyDdosProtectionConfigDdosProtection]{ - OutputState: in.ToSecurityPolicyDdosProtectionConfigDdosProtectionPtrOutputWithContext(ctx).OutputState, - } -} - // Preconfigured versioned expression. If this field is specified, config must also be specified. Available preconfigured expressions along with their requirements are: SRC_IPS_V1 - must specify the corresponding src_ip_range field in config. type SecurityPolicyRuleMatcherVersionedExpr string @@ -28335,12 +27392,6 @@ func (in *securityPolicyRuleMatcherVersionedExprPtr) ToSecurityPolicyRuleMatcher return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyRuleMatcherVersionedExprPtrOutput) } -func (in *securityPolicyRuleMatcherVersionedExprPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyRuleMatcherVersionedExpr] { - return pulumix.Output[*SecurityPolicyRuleMatcherVersionedExpr]{ - OutputState: in.ToSecurityPolicyRuleMatcherVersionedExprPtrOutputWithContext(ctx).OutputState, - } -} - // The match operator for the field. type SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParamsOp string @@ -28518,12 +27569,6 @@ func (in *securityPolicyRulePreconfiguredWafConfigExclusionFieldParamsOpPtr) ToS return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParamsOpPtrOutput) } -func (in *securityPolicyRulePreconfiguredWafConfigExclusionFieldParamsOpPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParamsOp] { - return pulumix.Output[*SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParamsOp]{ - OutputState: in.ToSecurityPolicyRulePreconfiguredWafConfigExclusionFieldParamsOpPtrOutputWithContext(ctx).OutputState, - } -} - // Determines the key to enforce the rate_limit_threshold on. Possible values are: - ALL: A single rate limit threshold is applied to all the requests matching this rule. This is the default value if "enforceOnKey" is not configured. - IP: The source IP address of the request is the key. Each IP has this limit enforced separately. - HTTP_HEADER: The value of the HTTP header whose name is configured under "enforceOnKeyName". The key value is truncated to the first 128 bytes of the header value. If no such header is present in the request, the key type defaults to ALL. - XFF_IP: The first IP address (i.e. the originating client IP address) specified in the list of IPs under X-Forwarded-For HTTP header. If no such header is present or the value is not a valid IP, the key defaults to the source IP address of the request i.e. key type IP. - HTTP_COOKIE: The value of the HTTP cookie whose name is configured under "enforceOnKeyName". The key value is truncated to the first 128 bytes of the cookie value. If no such cookie is present in the request, the key type defaults to ALL. - HTTP_PATH: The URL path of the HTTP request. The key value is truncated to the first 128 bytes. - SNI: Server name indication in the TLS session of the HTTPS request. The key value is truncated to the first 128 bytes. The key type defaults to ALL on a HTTP session. - REGION_CODE: The country/region from which the request originates. type SecurityPolicyRuleRateLimitOptionsEnforceOnKey string @@ -28702,12 +27747,6 @@ func (in *securityPolicyRuleRateLimitOptionsEnforceOnKeyPtr) ToSecurityPolicyRul return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyRuleRateLimitOptionsEnforceOnKeyPtrOutput) } -func (in *securityPolicyRuleRateLimitOptionsEnforceOnKeyPtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyRuleRateLimitOptionsEnforceOnKey] { - return pulumix.Output[*SecurityPolicyRuleRateLimitOptionsEnforceOnKey]{ - OutputState: in.ToSecurityPolicyRuleRateLimitOptionsEnforceOnKeyPtrOutputWithContext(ctx).OutputState, - } -} - // Determines the key to enforce the rate_limit_threshold on. Possible values are: - ALL: A single rate limit threshold is applied to all the requests matching this rule. This is the default value if "enforceOnKeyConfigs" is not configured. - IP: The source IP address of the request is the key. Each IP has this limit enforced separately. - HTTP_HEADER: The value of the HTTP header whose name is configured under "enforceOnKeyName". The key value is truncated to the first 128 bytes of the header value. If no such header is present in the request, the key type defaults to ALL. - XFF_IP: The first IP address (i.e. the originating client IP address) specified in the list of IPs under X-Forwarded-For HTTP header. If no such header is present or the value is not a valid IP, the key defaults to the source IP address of the request i.e. key type IP. - HTTP_COOKIE: The value of the HTTP cookie whose name is configured under "enforceOnKeyName". The key value is truncated to the first 128 bytes of the cookie value. If no such cookie is present in the request, the key type defaults to ALL. - HTTP_PATH: The URL path of the HTTP request. The key value is truncated to the first 128 bytes. - SNI: Server name indication in the TLS session of the HTTPS request. The key value is truncated to the first 128 bytes. The key type defaults to ALL on a HTTP session. - REGION_CODE: The country/region from which the request originates. type SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfigEnforceOnKeyType string @@ -28886,12 +27925,6 @@ func (in *securityPolicyRuleRateLimitOptionsEnforceOnKeyConfigEnforceOnKeyTypePt return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfigEnforceOnKeyTypePtrOutput) } -func (in *securityPolicyRuleRateLimitOptionsEnforceOnKeyConfigEnforceOnKeyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfigEnforceOnKeyType] { - return pulumix.Output[*SecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfigEnforceOnKeyType]{ - OutputState: in.ToSecurityPolicyRuleRateLimitOptionsEnforceOnKeyConfigEnforceOnKeyTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of the redirect action. type SecurityPolicyRuleRedirectOptionsType string @@ -29058,12 +28091,6 @@ func (in *securityPolicyRuleRedirectOptionsTypePtr) ToSecurityPolicyRuleRedirect return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyRuleRedirectOptionsTypePtrOutput) } -func (in *securityPolicyRuleRedirectOptionsTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyRuleRedirectOptionsType] { - return pulumix.Output[*SecurityPolicyRuleRedirectOptionsType]{ - OutputState: in.ToSecurityPolicyRuleRedirectOptionsTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type indicates the intended use of the security policy. - CLOUD_ARMOR: Cloud Armor backend security policies can be configured to filter incoming HTTP requests targeting backend services. They filter requests before they hit the origin servers. - CLOUD_ARMOR_EDGE: Cloud Armor edge security policies can be configured to filter incoming HTTP requests targeting backend services (including Cloud CDN-enabled) as well as backend buckets (Cloud Storage). They filter requests before the request is served from Google's cache. - CLOUD_ARMOR_INTERNAL_SERVICE: Cloud Armor internal service policies can be configured to filter HTTP requests targeting services managed by Traffic Director in a service mesh. They filter requests before the request is served from the application. - CLOUD_ARMOR_NETWORK: Cloud Armor network policies can be configured to filter packets targeting network load balancing resources such as backend services, target pools, target instances, and instances with external IPs. They filter requests before the request is served from the application. This field can be set only at resource creation time. type SecurityPolicyType string @@ -29232,12 +28259,6 @@ func (in *securityPolicyTypePtr) ToSecurityPolicyTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyTypePtrOutput) } -func (in *securityPolicyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyType] { - return pulumix.Output[*SecurityPolicyType]{ - OutputState: in.ToSecurityPolicyTypePtrOutputWithContext(ctx).OutputState, - } -} - // The base relative to which 'offset' is measured. Possible values are: - IPV4: Points to the beginning of the IPv4 header. - IPV6: Points to the beginning of the IPv6 header. - TCP: Points to the beginning of the TCP header, skipping over any IPv4 options or IPv6 extension headers. Not present for non-first fragments. - UDP: Points to the beginning of the UDP header, skipping over any IPv4 options or IPv6 extension headers. Not present for non-first fragments. required type SecurityPolicyUserDefinedFieldBase string @@ -29408,12 +28429,6 @@ func (in *securityPolicyUserDefinedFieldBasePtr) ToSecurityPolicyUserDefinedFiel return pulumi.ToOutputWithContext(ctx, in).(SecurityPolicyUserDefinedFieldBasePtrOutput) } -func (in *securityPolicyUserDefinedFieldBasePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPolicyUserDefinedFieldBase] { - return pulumix.Output[*SecurityPolicyUserDefinedFieldBase]{ - OutputState: in.ToSecurityPolicyUserDefinedFieldBasePtrOutputWithContext(ctx).OutputState, - } -} - type ServerBindingType string const ( @@ -29583,12 +28598,6 @@ func (in *serverBindingTypePtr) ToServerBindingTypePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(ServerBindingTypePtrOutput) } -func (in *serverBindingTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ServerBindingType] { - return pulumix.Output[*ServerBindingType]{ - OutputState: in.ToServerBindingTypePtrOutputWithContext(ctx).OutputState, - } -} - // The connection preference of service attachment. The value can be set to ACCEPT_AUTOMATIC. An ACCEPT_AUTOMATIC service attachment is one that always accepts the connection from consumer forwarding rules. type ServiceAttachmentConnectionPreference string @@ -29757,12 +28766,6 @@ func (in *serviceAttachmentConnectionPreferencePtr) ToServiceAttachmentConnectio return pulumi.ToOutputWithContext(ctx, in).(ServiceAttachmentConnectionPreferencePtrOutput) } -func (in *serviceAttachmentConnectionPreferencePtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceAttachmentConnectionPreference] { - return pulumix.Output[*ServiceAttachmentConnectionPreference]{ - OutputState: in.ToServiceAttachmentConnectionPreferencePtrOutputWithContext(ctx).OutputState, - } -} - // Type of sharing for this shared-reservation type ShareSettingsShareType string @@ -29937,12 +28940,6 @@ func (in *shareSettingsShareTypePtr) ToShareSettingsShareTypePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(ShareSettingsShareTypePtrOutput) } -func (in *shareSettingsShareTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ShareSettingsShareType] { - return pulumix.Output[*ShareSettingsShareType]{ - OutputState: in.ToShareSettingsShareTypePtrOutputWithContext(ctx).OutputState, - } -} - // Indicates the type of the snapshot. type SnapshotSnapshotType string @@ -30109,12 +29106,6 @@ func (in *snapshotSnapshotTypePtr) ToSnapshotSnapshotTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(SnapshotSnapshotTypePtrOutput) } -func (in *snapshotSnapshotTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SnapshotSnapshotType] { - return pulumix.Output[*SnapshotSnapshotType]{ - OutputState: in.ToSnapshotSnapshotTypePtrOutputWithContext(ctx).OutputState, - } -} - // (Optional) Specifies the type of SSL certificate, either "SELF_MANAGED" or "MANAGED". If not specified, the certificate is self-managed and the fields certificate and private_key are used. type SslCertificateType string @@ -30285,12 +29276,6 @@ func (in *sslCertificateTypePtr) ToSslCertificateTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(SslCertificateTypePtrOutput) } -func (in *sslCertificateTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SslCertificateType] { - return pulumix.Output[*SslCertificateType]{ - OutputState: in.ToSslCertificateTypePtrOutputWithContext(ctx).OutputState, - } -} - // The minimum version of SSL protocol that can be used by the clients to establish a connection with the load balancer. This can be one of TLS_1_0, TLS_1_1, TLS_1_2. type SslPolicyMinTlsVersion string @@ -30462,12 +29447,6 @@ func (in *sslPolicyMinTlsVersionPtr) ToSslPolicyMinTlsVersionPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(SslPolicyMinTlsVersionPtrOutput) } -func (in *sslPolicyMinTlsVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*SslPolicyMinTlsVersion] { - return pulumix.Output[*SslPolicyMinTlsVersion]{ - OutputState: in.ToSslPolicyMinTlsVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Profile specifies the set of SSL features that can be used by the load balancer when negotiating SSL with clients. This can be one of COMPATIBLE, MODERN, RESTRICTED, or CUSTOM. If using CUSTOM, the set of SSL features to enable must be specified in the customFeatures field. type SslPolicyProfile string @@ -30642,12 +29621,6 @@ func (in *sslPolicyProfilePtr) ToSslPolicyProfilePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(SslPolicyProfilePtrOutput) } -func (in *sslPolicyProfilePtr) ToOutput(ctx context.Context) pulumix.Output[*SslPolicyProfile] { - return pulumix.Output[*SslPolicyProfile]{ - OutputState: in.ToSslPolicyProfilePtrOutputWithContext(ctx).OutputState, - } -} - // The access type of IPv6 address this subnet holds. It's immutable and can only be specified during creation or the first time the subnet is updated into IPV4_IPV6 dual stack. type SubnetworkIpv6AccessType string @@ -30816,12 +29789,6 @@ func (in *subnetworkIpv6AccessTypePtr) ToSubnetworkIpv6AccessTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(SubnetworkIpv6AccessTypePtrOutput) } -func (in *subnetworkIpv6AccessTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkIpv6AccessType] { - return pulumix.Output[*SubnetworkIpv6AccessType]{ - OutputState: in.ToSubnetworkIpv6AccessTypePtrOutputWithContext(ctx).OutputState, - } -} - // Can only be specified if VPC flow logging for this subnetwork is enabled. Toggles the aggregation interval for collecting flow logs. Increasing the interval time will reduce the amount of generated flow logs for long lasting connections. Default is an interval of 5 seconds per connection. type SubnetworkLogConfigAggregationInterval string @@ -30996,12 +29963,6 @@ func (in *subnetworkLogConfigAggregationIntervalPtr) ToSubnetworkLogConfigAggreg return pulumi.ToOutputWithContext(ctx, in).(SubnetworkLogConfigAggregationIntervalPtrOutput) } -func (in *subnetworkLogConfigAggregationIntervalPtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkLogConfigAggregationInterval] { - return pulumix.Output[*SubnetworkLogConfigAggregationInterval]{ - OutputState: in.ToSubnetworkLogConfigAggregationIntervalPtrOutputWithContext(ctx).OutputState, - } -} - // Can only be specified if VPC flow logs for this subnetwork is enabled. Configures whether all, none or a subset of metadata fields should be added to the reported VPC flow logs. Default is EXCLUDE_ALL_METADATA. type SubnetworkLogConfigMetadata string @@ -31170,12 +30131,6 @@ func (in *subnetworkLogConfigMetadataPtr) ToSubnetworkLogConfigMetadataPtrOutput return pulumi.ToOutputWithContext(ctx, in).(SubnetworkLogConfigMetadataPtrOutput) } -func (in *subnetworkLogConfigMetadataPtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkLogConfigMetadata] { - return pulumix.Output[*SubnetworkLogConfigMetadata]{ - OutputState: in.ToSubnetworkLogConfigMetadataPtrOutputWithContext(ctx).OutputState, - } -} - // This field is for internal use. This field can be both set at resource creation time and updated using patch. type SubnetworkPrivateIpv6GoogleAccess string @@ -31347,12 +30302,6 @@ func (in *subnetworkPrivateIpv6GoogleAccessPtr) ToSubnetworkPrivateIpv6GoogleAcc return pulumi.ToOutputWithContext(ctx, in).(SubnetworkPrivateIpv6GoogleAccessPtrOutput) } -func (in *subnetworkPrivateIpv6GoogleAccessPtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkPrivateIpv6GoogleAccess] { - return pulumix.Output[*SubnetworkPrivateIpv6GoogleAccess]{ - OutputState: in.ToSubnetworkPrivateIpv6GoogleAccessPtrOutputWithContext(ctx).OutputState, - } -} - // The purpose of the resource. This field can be either PRIVATE, REGIONAL_MANAGED_PROXY, PRIVATE_SERVICE_CONNECT, or INTERNAL_HTTPS_LOAD_BALANCER. PRIVATE is the default purpose for user-created subnets or subnets that are automatically created in auto mode networks. A subnet with purpose set to REGIONAL_MANAGED_PROXY is a user-created subnetwork that is reserved for regional Envoy-based load balancers. A subnet with purpose set to PRIVATE_SERVICE_CONNECT is used to publish services using Private Service Connect. A subnet with purpose set to INTERNAL_HTTPS_LOAD_BALANCER is a proxy-only subnet that can be used only by regional internal HTTP(S) load balancers. Note that REGIONAL_MANAGED_PROXY is the preferred setting for all regional Envoy load balancers. If unspecified, the subnet purpose defaults to PRIVATE. The enableFlowLogs field isn't supported if the subnet purpose field is set to REGIONAL_MANAGED_PROXY. type SubnetworkPurpose string @@ -31536,12 +30485,6 @@ func (in *subnetworkPurposePtr) ToSubnetworkPurposePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(SubnetworkPurposePtrOutput) } -func (in *subnetworkPurposePtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkPurpose] { - return pulumix.Output[*SubnetworkPurpose]{ - OutputState: in.ToSubnetworkPurposePtrOutputWithContext(ctx).OutputState, - } -} - // The role of subnetwork. Currently, this field is only used when purpose = REGIONAL_MANAGED_PROXY. The value can be set to ACTIVE or BACKUP. An ACTIVE subnetwork is one that is currently being used for Envoy-based load balancers in a region. A BACKUP subnetwork is one that is ready to be promoted to ACTIVE or is currently draining. This field can be updated with a patch request. type SubnetworkRole string @@ -31710,12 +30653,6 @@ func (in *subnetworkRolePtr) ToSubnetworkRolePtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(SubnetworkRolePtrOutput) } -func (in *subnetworkRolePtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkRole] { - return pulumix.Output[*SubnetworkRole]{ - OutputState: in.ToSubnetworkRolePtrOutputWithContext(ctx).OutputState, - } -} - // The stack type for the subnet. If set to IPV4_ONLY, new VMs in the subnet are assigned IPv4 addresses only. If set to IPV4_IPV6, new VMs in the subnet can be assigned both IPv4 and IPv6 addresses. If not specified, IPV4_ONLY is used. This field can be both set at resource creation time and updated using patch. type SubnetworkStackType string @@ -31884,12 +30821,6 @@ func (in *subnetworkStackTypePtr) ToSubnetworkStackTypePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(SubnetworkStackTypePtrOutput) } -func (in *subnetworkStackTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SubnetworkStackType] { - return pulumix.Output[*SubnetworkStackType]{ - OutputState: in.ToSubnetworkStackTypePtrOutputWithContext(ctx).OutputState, - } -} - type SubsettingPolicy string const ( @@ -32057,12 +30988,6 @@ func (in *subsettingPolicyPtr) ToSubsettingPolicyPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(SubsettingPolicyPtrOutput) } -func (in *subsettingPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*SubsettingPolicy] { - return pulumix.Output[*SubsettingPolicy]{ - OutputState: in.ToSubsettingPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how a port is selected for health checking. Can be one of the following values: USE_FIXED_PORT: Specifies a port number explicitly using the port field in the health check. Supported by backend services for pass-through load balancers and backend services for proxy load balancers. Not supported by target pools. The health check supports all backends supported by the backend service provided the backend can be health checked. For example, GCE_VM_IP network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an indirect method of specifying the health check port by referring to the backend service. Only supported by backend services for proxy load balancers. Not supported by target pools. Not supported by backend services for pass-through load balancers. Supports all backends that can be health checked; for example, GCE_VM_IP_PORT network endpoint groups and instance group backends. For GCE_VM_IP_PORT network endpoint group backends, the health check uses the port number specified for each endpoint in the network endpoint group. For instance group backends, the health check uses the port number determined by looking up the backend service's named port in the instance group's list of named ports. type TCPHealthCheckPortSpecification string @@ -32234,12 +31159,6 @@ func (in *tcphealthCheckPortSpecificationPtr) ToTCPHealthCheckPortSpecificationP return pulumi.ToOutputWithContext(ctx, in).(TCPHealthCheckPortSpecificationPtrOutput) } -func (in *tcphealthCheckPortSpecificationPtr) ToOutput(ctx context.Context) pulumix.Output[*TCPHealthCheckPortSpecification] { - return pulumix.Output[*TCPHealthCheckPortSpecification]{ - OutputState: in.ToTCPHealthCheckPortSpecificationPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type TCPHealthCheckProxyHeader string @@ -32406,12 +31325,6 @@ func (in *tcphealthCheckProxyHeaderPtr) ToTCPHealthCheckProxyHeaderPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(TCPHealthCheckProxyHeaderPtrOutput) } -func (in *tcphealthCheckProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*TCPHealthCheckProxyHeader] { - return pulumix.Output[*TCPHealthCheckProxyHeader]{ - OutputState: in.ToTCPHealthCheckProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the QUIC override policy for this TargetHttpsProxy resource. This setting determines whether the load balancer attempts to negotiate QUIC with clients. You can specify NONE, ENABLE, or DISABLE. - When quic-override is set to NONE, Google manages whether QUIC is used. - When quic-override is set to ENABLE, the load balancer uses QUIC when possible. - When quic-override is set to DISABLE, the load balancer doesn't use QUIC. - If the quic-override flag is not specified, NONE is implied. type TargetHttpsProxyQuicOverride string @@ -32583,12 +31496,6 @@ func (in *targetHttpsProxyQuicOverridePtr) ToTargetHttpsProxyQuicOverridePtrOutp return pulumi.ToOutputWithContext(ctx, in).(TargetHttpsProxyQuicOverridePtrOutput) } -func (in *targetHttpsProxyQuicOverridePtr) ToOutput(ctx context.Context) pulumix.Output[*TargetHttpsProxyQuicOverride] { - return pulumix.Output[*TargetHttpsProxyQuicOverride]{ - OutputState: in.ToTargetHttpsProxyQuicOverridePtrOutputWithContext(ctx).OutputState, - } -} - // Must have a value of NO_NAT. Protocol forwarding delivers packets while preserving the destination IP address of the forwarding rule referencing the target instance. type TargetInstanceNatPolicy string @@ -32754,12 +31661,6 @@ func (in *targetInstanceNatPolicyPtr) ToTargetInstanceNatPolicyPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(TargetInstanceNatPolicyPtrOutput) } -func (in *targetInstanceNatPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*TargetInstanceNatPolicy] { - return pulumix.Output[*TargetInstanceNatPolicy]{ - OutputState: in.ToTargetInstanceNatPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Session affinity option, must be one of the following values: NONE: Connections from the same client IP may go to any instance in the pool. CLIENT_IP: Connections from the same client IP will go to the same instance in the pool while that instance remains healthy. CLIENT_IP_PROTO: Connections from the same client IP with the same IP protocol will go to the same instance in the pool while that instance remains healthy. type TargetPoolSessionAffinity string @@ -32946,12 +31847,6 @@ func (in *targetPoolSessionAffinityPtr) ToTargetPoolSessionAffinityPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(TargetPoolSessionAffinityPtrOutput) } -func (in *targetPoolSessionAffinityPtr) ToOutput(ctx context.Context) pulumix.Output[*TargetPoolSessionAffinity] { - return pulumix.Output[*TargetPoolSessionAffinity]{ - OutputState: in.ToTargetPoolSessionAffinityPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type TargetSslProxyProxyHeader string @@ -33118,12 +32013,6 @@ func (in *targetSslProxyProxyHeaderPtr) ToTargetSslProxyProxyHeaderPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(TargetSslProxyProxyHeaderPtrOutput) } -func (in *targetSslProxyProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*TargetSslProxyProxyHeader] { - return pulumix.Output[*TargetSslProxyProxyHeader]{ - OutputState: in.ToTargetSslProxyProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the type of proxy header to append before sending data to the backend, either NONE or PROXY_V1. The default is NONE. type TargetTcpProxyProxyHeader string @@ -33290,12 +32179,6 @@ func (in *targetTcpProxyProxyHeaderPtr) ToTargetTcpProxyProxyHeaderPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(TargetTcpProxyProxyHeaderPtrOutput) } -func (in *targetTcpProxyProxyHeaderPtr) ToOutput(ctx context.Context) pulumix.Output[*TargetTcpProxyProxyHeader] { - return pulumix.Output[*TargetTcpProxyProxyHeader]{ - OutputState: in.ToTargetTcpProxyProxyHeaderPtrOutputWithContext(ctx).OutputState, - } -} - // The stack type for this VPN gateway to identify the IP protocols that are enabled. Possible values are: IPV4_ONLY, IPV4_IPV6. If not specified, IPV4_ONLY will be used. type VpnGatewayStackType string @@ -33464,12 +32347,6 @@ func (in *vpnGatewayStackTypePtr) ToVpnGatewayStackTypePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(VpnGatewayStackTypePtrOutput) } -func (in *vpnGatewayStackTypePtr) ToOutput(ctx context.Context) pulumix.Output[*VpnGatewayStackType] { - return pulumix.Output[*VpnGatewayStackType]{ - OutputState: in.ToVpnGatewayStackTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AccessConfigNetworkTierInput)(nil)).Elem(), AccessConfigNetworkTier("FIXED_STANDARD")) pulumi.RegisterInputType(reflect.TypeOf((*AccessConfigNetworkTierPtrInput)(nil)).Elem(), AccessConfigNetworkTier("FIXED_STANDARD")) diff --git a/sdk/go/google/connectors/v1/pulumiEnums.go b/sdk/go/google/connectors/v1/pulumiEnums.go index a89369331b..a7bf2e1fad 100644 --- a/sdk/go/google/connectors/v1/pulumiEnums.go +++ b/sdk/go/google/connectors/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of authentication configured. type AuthConfigAuthType string @@ -374,12 +367,6 @@ func (in *authConfigAuthTypePtr) ToAuthConfigAuthTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(AuthConfigAuthTypePtrOutput) } -func (in *authConfigAuthTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuthConfigAuthType] { - return pulumix.Output[*AuthConfigAuthType]{ - OutputState: in.ToAuthConfigAuthTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Eventing enablement type. Will be nil if eventing is not enabled. type ConnectionEventingEnablementType string @@ -551,12 +538,6 @@ func (in *connectionEventingEnablementTypePtr) ToConnectionEventingEnablementTyp return pulumi.ToOutputWithContext(ctx, in).(ConnectionEventingEnablementTypePtrOutput) } -func (in *connectionEventingEnablementTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ConnectionEventingEnablementType] { - return pulumix.Output[*ConnectionEventingEnablementType]{ - OutputState: in.ToConnectionEventingEnablementTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Type of the custom connector. type CustomConnectorCustomConnectorType string @@ -728,12 +709,6 @@ func (in *customConnectorCustomConnectorTypePtr) ToCustomConnectorCustomConnecto return pulumi.ToOutputWithContext(ctx, in).(CustomConnectorCustomConnectorTypePtrOutput) } -func (in *customConnectorCustomConnectorTypePtr) ToOutput(ctx context.Context) pulumix.Output[*CustomConnectorCustomConnectorType] { - return pulumix.Output[*CustomConnectorCustomConnectorType]{ - OutputState: in.ToCustomConnectorCustomConnectorTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type. type EncryptionKeyType string @@ -905,12 +880,6 @@ func (in *encryptionKeyTypePtr) ToEncryptionKeyTypePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(EncryptionKeyTypePtrOutput) } -func (in *encryptionKeyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EncryptionKeyType] { - return pulumix.Output[*EncryptionKeyType]{ - OutputState: in.ToEncryptionKeyTypePtrOutputWithContext(ctx).OutputState, - } -} - // type of the destination type EventSubscriptionDestinationType string @@ -1079,12 +1048,6 @@ func (in *eventSubscriptionDestinationTypePtr) ToEventSubscriptionDestinationTyp return pulumi.ToOutputWithContext(ctx, in).(EventSubscriptionDestinationTypePtrOutput) } -func (in *eventSubscriptionDestinationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EventSubscriptionDestinationType] { - return pulumix.Output[*EventSubscriptionDestinationType]{ - OutputState: in.ToEventSubscriptionDestinationTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Type of the JMS Source. i.e. Queue or Topic type JMSType string @@ -1256,12 +1219,6 @@ func (in *jmstypePtr) ToJMSTypePtrOutputWithContext(ctx context.Context) JMSType return pulumi.ToOutputWithContext(ctx, in).(JMSTypePtrOutput) } -func (in *jmstypePtr) ToOutput(ctx context.Context) pulumix.Output[*JMSType] { - return pulumix.Output[*JMSType]{ - OutputState: in.ToJMSTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of Client Cert (PEM/JKS/.. etc.) type SslConfigClientCertType string @@ -1430,12 +1387,6 @@ func (in *sslConfigClientCertTypePtr) ToSslConfigClientCertTypePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(SslConfigClientCertTypePtrOutput) } -func (in *sslConfigClientCertTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SslConfigClientCertType] { - return pulumix.Output[*SslConfigClientCertType]{ - OutputState: in.ToSslConfigClientCertTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of Server Cert (PEM/JKS/.. etc.) type SslConfigServerCertType string @@ -1604,12 +1555,6 @@ func (in *sslConfigServerCertTypePtr) ToSslConfigServerCertTypePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(SslConfigServerCertTypePtrOutput) } -func (in *sslConfigServerCertTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SslConfigServerCertType] { - return pulumix.Output[*SslConfigServerCertType]{ - OutputState: in.ToSslConfigServerCertTypePtrOutputWithContext(ctx).OutputState, - } -} - // Trust Model of the SSL connection type SslConfigTrustModel string @@ -1781,12 +1726,6 @@ func (in *sslConfigTrustModelPtr) ToSslConfigTrustModelPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(SslConfigTrustModelPtrOutput) } -func (in *sslConfigTrustModelPtr) ToOutput(ctx context.Context) pulumix.Output[*SslConfigTrustModel] { - return pulumix.Output[*SslConfigTrustModel]{ - OutputState: in.ToSslConfigTrustModelPtrOutputWithContext(ctx).OutputState, - } -} - // Controls the ssl type for the given connector version. type SslConfigType string @@ -1958,12 +1897,6 @@ func (in *sslConfigTypePtr) ToSslConfigTypePtrOutputWithContext(ctx context.Cont return pulumi.ToOutputWithContext(ctx, in).(SslConfigTypePtrOutput) } -func (in *sslConfigTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SslConfigType] { - return pulumix.Output[*SslConfigType]{ - OutputState: in.ToSslConfigTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/contactcenteraiplatform/v1alpha1/pulumiEnums.go b/sdk/go/google/contactcenteraiplatform/v1alpha1/pulumiEnums.go index 5441c7c2a6..5856967eb5 100644 --- a/sdk/go/google/contactcenteraiplatform/v1alpha1/pulumiEnums.go +++ b/sdk/go/google/contactcenteraiplatform/v1alpha1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The instance size of this the instance configuration. @@ -197,12 +196,6 @@ func (in *instanceConfigInstanceSizePtr) ToInstanceConfigInstanceSizePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(InstanceConfigInstanceSizePtrOutput) } -func (in *instanceConfigInstanceSizePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceConfigInstanceSize] { - return pulumix.Output[*InstanceConfigInstanceSize]{ - OutputState: in.ToInstanceConfigInstanceSizePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*InstanceConfigInstanceSizeInput)(nil)).Elem(), InstanceConfigInstanceSize("INSTANCE_SIZE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*InstanceConfigInstanceSizePtrInput)(nil)).Elem(), InstanceConfigInstanceSize("INSTANCE_SIZE_UNSPECIFIED")) diff --git a/sdk/go/google/contactcenterinsights/v1/pulumiEnums.go b/sdk/go/google/contactcenterinsights/v1/pulumiEnums.go index 49e33a8241..ddd543483e 100644 --- a/sdk/go/google/contactcenterinsights/v1/pulumiEnums.go +++ b/sdk/go/google/contactcenterinsights/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Immutable. The conversation medium, if unspecified will default to PHONE_CALL. @@ -182,12 +181,6 @@ func (in *conversationMediumPtr) ToConversationMediumPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(ConversationMediumPtrOutput) } -func (in *conversationMediumPtr) ToOutput(ctx context.Context) pulumix.Output[*ConversationMedium] { - return pulumix.Output[*ConversationMedium]{ - OutputState: in.ToConversationMediumPtrOutputWithContext(ctx).OutputState, - } -} - // Default summarization model to be used. type GoogleCloudContactcenterinsightsV1AnnotatorSelectorSummarizationConfigSummarizationModel string @@ -356,12 +349,6 @@ func (in *googleCloudContactcenterinsightsV1AnnotatorSelectorSummarizationConfig return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudContactcenterinsightsV1AnnotatorSelectorSummarizationConfigSummarizationModelPtrOutput) } -func (in *googleCloudContactcenterinsightsV1AnnotatorSelectorSummarizationConfigSummarizationModelPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudContactcenterinsightsV1AnnotatorSelectorSummarizationConfigSummarizationModel] { - return pulumix.Output[*GoogleCloudContactcenterinsightsV1AnnotatorSelectorSummarizationConfigSummarizationModel]{ - OutputState: in.ToGoogleCloudContactcenterinsightsV1AnnotatorSelectorSummarizationConfigSummarizationModelPtrOutputWithContext(ctx).OutputState, - } -} - // Medium of conversations used in training data. This field is being deprecated. To specify the medium to be used in training a new issue model, set the `medium` field on `filter`. type GoogleCloudContactcenterinsightsV1IssueModelInputDataConfigMedium string @@ -533,12 +520,6 @@ func (in *googleCloudContactcenterinsightsV1IssueModelInputDataConfigMediumPtr) return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudContactcenterinsightsV1IssueModelInputDataConfigMediumPtrOutput) } -func (in *googleCloudContactcenterinsightsV1IssueModelInputDataConfigMediumPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudContactcenterinsightsV1IssueModelInputDataConfigMedium] { - return pulumix.Output[*GoogleCloudContactcenterinsightsV1IssueModelInputDataConfigMedium]{ - OutputState: in.ToGoogleCloudContactcenterinsightsV1IssueModelInputDataConfigMediumPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of this phrase match rule group. type GoogleCloudContactcenterinsightsV1PhraseMatchRuleGroupType string @@ -710,12 +691,6 @@ func (in *googleCloudContactcenterinsightsV1PhraseMatchRuleGroupTypePtr) ToGoogl return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudContactcenterinsightsV1PhraseMatchRuleGroupTypePtrOutput) } -func (in *googleCloudContactcenterinsightsV1PhraseMatchRuleGroupTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudContactcenterinsightsV1PhraseMatchRuleGroupType] { - return pulumix.Output[*GoogleCloudContactcenterinsightsV1PhraseMatchRuleGroupType]{ - OutputState: in.ToGoogleCloudContactcenterinsightsV1PhraseMatchRuleGroupTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of the model. type IssueModelModelType string @@ -887,12 +862,6 @@ func (in *issueModelModelTypePtr) ToIssueModelModelTypePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(IssueModelModelTypePtrOutput) } -func (in *issueModelModelTypePtr) ToOutput(ctx context.Context) pulumix.Output[*IssueModelModelType] { - return pulumix.Output[*IssueModelModelType]{ - OutputState: in.ToIssueModelModelTypePtrOutputWithContext(ctx).OutputState, - } -} - // The role whose utterances the phrase matcher should be matched against. If the role is ROLE_UNSPECIFIED it will be matched against any utterances in the transcript. type PhraseMatcherRoleMatch string @@ -1070,12 +1039,6 @@ func (in *phraseMatcherRoleMatchPtr) ToPhraseMatcherRoleMatchPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(PhraseMatcherRoleMatchPtrOutput) } -func (in *phraseMatcherRoleMatchPtr) ToOutput(ctx context.Context) pulumix.Output[*PhraseMatcherRoleMatch] { - return pulumix.Output[*PhraseMatcherRoleMatch]{ - OutputState: in.ToPhraseMatcherRoleMatchPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of this phrase matcher. type PhraseMatcherType string @@ -1247,12 +1210,6 @@ func (in *phraseMatcherTypePtr) ToPhraseMatcherTypePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(PhraseMatcherTypePtrOutput) } -func (in *phraseMatcherTypePtr) ToOutput(ctx context.Context) pulumix.Output[*PhraseMatcherType] { - return pulumix.Output[*PhraseMatcherType]{ - OutputState: in.ToPhraseMatcherTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ConversationMediumInput)(nil)).Elem(), ConversationMedium("MEDIUM_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*ConversationMediumPtrInput)(nil)).Elem(), ConversationMedium("MEDIUM_UNSPECIFIED")) diff --git a/sdk/go/google/container/v1/pulumiEnums.go b/sdk/go/google/container/v1/pulumiEnums.go index 4d7929310a..af0b32e590 100644 --- a/sdk/go/google/container/v1/pulumiEnums.go +++ b/sdk/go/google/container/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Method used to make Relay available @@ -185,12 +184,6 @@ func (in *advancedDatapathObservabilityConfigRelayModePtr) ToAdvancedDatapathObs return pulumi.ToOutputWithContext(ctx, in).(AdvancedDatapathObservabilityConfigRelayModePtrOutput) } -func (in *advancedDatapathObservabilityConfigRelayModePtr) ToOutput(ctx context.Context) pulumix.Output[*AdvancedDatapathObservabilityConfigRelayMode] { - return pulumix.Output[*AdvancedDatapathObservabilityConfigRelayMode]{ - OutputState: in.ToAdvancedDatapathObservabilityConfigRelayModePtrOutputWithContext(ctx).OutputState, - } -} - // Mode of operation for binauthz policy evaluation. If unspecified, defaults to DISABLED. type BinaryAuthorizationEvaluationMode string @@ -362,12 +355,6 @@ func (in *binaryAuthorizationEvaluationModePtr) ToBinaryAuthorizationEvaluationM return pulumi.ToOutputWithContext(ctx, in).(BinaryAuthorizationEvaluationModePtrOutput) } -func (in *binaryAuthorizationEvaluationModePtr) ToOutput(ctx context.Context) pulumix.Output[*BinaryAuthorizationEvaluationMode] { - return pulumix.Output[*BinaryAuthorizationEvaluationMode]{ - OutputState: in.ToBinaryAuthorizationEvaluationModePtrOutputWithContext(ctx).OutputState, - } -} - // Which load balancer type is installed for Cloud Run. type CloudRunConfigLoadBalancerType string @@ -539,12 +526,6 @@ func (in *cloudRunConfigLoadBalancerTypePtr) ToCloudRunConfigLoadBalancerTypePtr return pulumi.ToOutputWithContext(ctx, in).(CloudRunConfigLoadBalancerTypePtrOutput) } -func (in *cloudRunConfigLoadBalancerTypePtr) ToOutput(ctx context.Context) pulumix.Output[*CloudRunConfigLoadBalancerType] { - return pulumix.Output[*CloudRunConfigLoadBalancerType]{ - OutputState: in.ToCloudRunConfigLoadBalancerTypePtrOutputWithContext(ctx).OutputState, - } -} - // Defines autoscaling behaviour. type ClusterAutoscalingAutoscalingProfile string @@ -716,12 +697,6 @@ func (in *clusterAutoscalingAutoscalingProfilePtr) ToClusterAutoscalingAutoscali return pulumi.ToOutputWithContext(ctx, in).(ClusterAutoscalingAutoscalingProfilePtrOutput) } -func (in *clusterAutoscalingAutoscalingProfilePtr) ToOutput(ctx context.Context) pulumix.Output[*ClusterAutoscalingAutoscalingProfile] { - return pulumix.Output[*ClusterAutoscalingAutoscalingProfile]{ - OutputState: in.ToClusterAutoscalingAutoscalingProfilePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the total network bandwidth tier for NodePools in the cluster. type ClusterNetworkPerformanceConfigTotalEgressBandwidthTier string @@ -890,12 +865,6 @@ func (in *clusterNetworkPerformanceConfigTotalEgressBandwidthTierPtr) ToClusterN return pulumi.ToOutputWithContext(ctx, in).(ClusterNetworkPerformanceConfigTotalEgressBandwidthTierPtrOutput) } -func (in *clusterNetworkPerformanceConfigTotalEgressBandwidthTierPtr) ToOutput(ctx context.Context) pulumix.Output[*ClusterNetworkPerformanceConfigTotalEgressBandwidthTier] { - return pulumix.Output[*ClusterNetworkPerformanceConfigTotalEgressBandwidthTier]{ - OutputState: in.ToClusterNetworkPerformanceConfigTotalEgressBandwidthTierPtrOutputWithContext(ctx).OutputState, - } -} - // The desired datapath provider for the cluster. type ClusterUpdateDesiredDatapathProvider string @@ -1108,12 +1077,6 @@ func (in *dnsconfigClusterDnsPtr) ToDNSConfigClusterDnsPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(DNSConfigClusterDnsPtrOutput) } -func (in *dnsconfigClusterDnsPtr) ToOutput(ctx context.Context) pulumix.Output[*DNSConfigClusterDns] { - return pulumix.Output[*DNSConfigClusterDns]{ - OutputState: in.ToDNSConfigClusterDnsPtrOutputWithContext(ctx).OutputState, - } -} - // cluster_dns_scope indicates the scope of access to cluster DNS records. type DNSConfigClusterDnsScope string @@ -1285,12 +1248,6 @@ func (in *dnsconfigClusterDnsScopePtr) ToDNSConfigClusterDnsScopePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(DNSConfigClusterDnsScopePtrOutput) } -func (in *dnsconfigClusterDnsScopePtr) ToOutput(ctx context.Context) pulumix.Output[*DNSConfigClusterDnsScope] { - return pulumix.Output[*DNSConfigClusterDnsScope]{ - OutputState: in.ToDNSConfigClusterDnsScopePtrOutputWithContext(ctx).OutputState, - } -} - // The desired state of etcd encryption. type DatabaseEncryptionState string @@ -1462,12 +1419,6 @@ func (in *databaseEncryptionStatePtr) ToDatabaseEncryptionStatePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(DatabaseEncryptionStatePtrOutput) } -func (in *databaseEncryptionStatePtr) ToOutput(ctx context.Context) pulumix.Output[*DatabaseEncryptionState] { - return pulumix.Output[*DatabaseEncryptionState]{ - OutputState: in.ToDatabaseEncryptionStatePtrOutputWithContext(ctx).OutputState, - } -} - type FilterEventTypeItem string const ( @@ -1641,12 +1592,6 @@ func (in *filterEventTypeItemPtr) ToFilterEventTypeItemPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(FilterEventTypeItemPtrOutput) } -func (in *filterEventTypeItemPtr) ToOutput(ctx context.Context) pulumix.Output[*FilterEventTypeItem] { - return pulumix.Output[*FilterEventTypeItem]{ - OutputState: in.ToFilterEventTypeItemPtrOutputWithContext(ctx).OutputState, - } -} - // FilterEventTypeItemArrayInput is an input type that accepts FilterEventTypeItemArray and FilterEventTypeItemArrayOutput values. // You can construct a concrete instance of `FilterEventTypeItemArrayInput` via: // @@ -1866,12 +1811,6 @@ func (in *gpudriverInstallationConfigGpuDriverVersionPtr) ToGPUDriverInstallatio return pulumi.ToOutputWithContext(ctx, in).(GPUDriverInstallationConfigGpuDriverVersionPtrOutput) } -func (in *gpudriverInstallationConfigGpuDriverVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*GPUDriverInstallationConfigGpuDriverVersion] { - return pulumix.Output[*GPUDriverInstallationConfigGpuDriverVersion]{ - OutputState: in.ToGPUDriverInstallationConfigGpuDriverVersionPtrOutputWithContext(ctx).OutputState, - } -} - // The type of GPU sharing strategy to enable on the GPU node. type GPUSharingConfigGpuSharingStrategy string @@ -2040,12 +1979,6 @@ func (in *gpusharingConfigGpuSharingStrategyPtr) ToGPUSharingConfigGpuSharingStr return pulumi.ToOutputWithContext(ctx, in).(GPUSharingConfigGpuSharingStrategyPtrOutput) } -func (in *gpusharingConfigGpuSharingStrategyPtr) ToOutput(ctx context.Context) pulumix.Output[*GPUSharingConfigGpuSharingStrategy] { - return pulumix.Output[*GPUSharingConfigGpuSharingStrategy]{ - OutputState: in.ToGPUSharingConfigGpuSharingStrategyPtrOutputWithContext(ctx).OutputState, - } -} - // The Gateway API release channel to use for Gateway API. type GatewayAPIConfigChannel string @@ -2220,12 +2153,6 @@ func (in *gatewayAPIConfigChannelPtr) ToGatewayAPIConfigChannelPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(GatewayAPIConfigChannelPtrOutput) } -func (in *gatewayAPIConfigChannelPtr) ToOutput(ctx context.Context) pulumix.Output[*GatewayAPIConfigChannel] { - return pulumix.Output[*GatewayAPIConfigChannel]{ - OutputState: in.ToGatewayAPIConfigChannelPtrOutputWithContext(ctx).OutputState, - } -} - // The ipv6 access type (internal or external) when create_subnetwork is true type IPAllocationPolicyIpv6AccessType string @@ -2397,12 +2324,6 @@ func (in *ipallocationPolicyIpv6AccessTypePtr) ToIPAllocationPolicyIpv6AccessTyp return pulumi.ToOutputWithContext(ctx, in).(IPAllocationPolicyIpv6AccessTypePtrOutput) } -func (in *ipallocationPolicyIpv6AccessTypePtr) ToOutput(ctx context.Context) pulumix.Output[*IPAllocationPolicyIpv6AccessType] { - return pulumix.Output[*IPAllocationPolicyIpv6AccessType]{ - OutputState: in.ToIPAllocationPolicyIpv6AccessTypePtrOutputWithContext(ctx).OutputState, - } -} - // The IP stack type of the cluster type IPAllocationPolicyStackType string @@ -2574,12 +2495,6 @@ func (in *ipallocationPolicyStackTypePtr) ToIPAllocationPolicyStackTypePtrOutput return pulumi.ToOutputWithContext(ctx, in).(IPAllocationPolicyStackTypePtrOutput) } -func (in *ipallocationPolicyStackTypePtr) ToOutput(ctx context.Context) pulumix.Output[*IPAllocationPolicyStackType] { - return pulumix.Output[*IPAllocationPolicyStackType]{ - OutputState: in.ToIPAllocationPolicyStackTypePtrOutputWithContext(ctx).OutputState, - } -} - // cgroup_mode specifies the cgroup mode to be used on the node. type LinuxNodeConfigCgroupMode string @@ -2751,12 +2666,6 @@ func (in *linuxNodeConfigCgroupModePtr) ToLinuxNodeConfigCgroupModePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(LinuxNodeConfigCgroupModePtrOutput) } -func (in *linuxNodeConfigCgroupModePtr) ToOutput(ctx context.Context) pulumix.Output[*LinuxNodeConfigCgroupMode] { - return pulumix.Output[*LinuxNodeConfigCgroupMode]{ - OutputState: in.ToLinuxNodeConfigCgroupModePtrOutputWithContext(ctx).OutputState, - } -} - type LoggingComponentConfigEnableComponentsItem string const ( @@ -2936,12 +2845,6 @@ func (in *loggingComponentConfigEnableComponentsItemPtr) ToLoggingComponentConfi return pulumi.ToOutputWithContext(ctx, in).(LoggingComponentConfigEnableComponentsItemPtrOutput) } -func (in *loggingComponentConfigEnableComponentsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*LoggingComponentConfigEnableComponentsItem] { - return pulumix.Output[*LoggingComponentConfigEnableComponentsItem]{ - OutputState: in.ToLoggingComponentConfigEnableComponentsItemPtrOutputWithContext(ctx).OutputState, - } -} - // LoggingComponentConfigEnableComponentsItemArrayInput is an input type that accepts LoggingComponentConfigEnableComponentsItemArray and LoggingComponentConfigEnableComponentsItemArrayOutput values. // You can construct a concrete instance of `LoggingComponentConfigEnableComponentsItemArrayInput` via: // @@ -3158,12 +3061,6 @@ func (in *loggingVariantConfigVariantPtr) ToLoggingVariantConfigVariantPtrOutput return pulumi.ToOutputWithContext(ctx, in).(LoggingVariantConfigVariantPtrOutput) } -func (in *loggingVariantConfigVariantPtr) ToOutput(ctx context.Context) pulumix.Output[*LoggingVariantConfigVariant] { - return pulumix.Output[*LoggingVariantConfigVariant]{ - OutputState: in.ToLoggingVariantConfigVariantPtrOutputWithContext(ctx).OutputState, - } -} - // Scope specifies the upgrade scope which upgrades are blocked by the exclusion. type MaintenanceExclusionOptionsScope string @@ -3335,12 +3232,6 @@ func (in *maintenanceExclusionOptionsScopePtr) ToMaintenanceExclusionOptionsScop return pulumi.ToOutputWithContext(ctx, in).(MaintenanceExclusionOptionsScopePtrOutput) } -func (in *maintenanceExclusionOptionsScopePtr) ToOutput(ctx context.Context) pulumix.Output[*MaintenanceExclusionOptionsScope] { - return pulumix.Output[*MaintenanceExclusionOptionsScope]{ - OutputState: in.ToMaintenanceExclusionOptionsScopePtrOutputWithContext(ctx).OutputState, - } -} - type MonitoringComponentConfigEnableComponentsItem string const ( @@ -3535,12 +3426,6 @@ func (in *monitoringComponentConfigEnableComponentsItemPtr) ToMonitoringComponen return pulumi.ToOutputWithContext(ctx, in).(MonitoringComponentConfigEnableComponentsItemPtrOutput) } -func (in *monitoringComponentConfigEnableComponentsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*MonitoringComponentConfigEnableComponentsItem] { - return pulumix.Output[*MonitoringComponentConfigEnableComponentsItem]{ - OutputState: in.ToMonitoringComponentConfigEnableComponentsItemPtrOutputWithContext(ctx).OutputState, - } -} - // MonitoringComponentConfigEnableComponentsItemArrayInput is an input type that accepts MonitoringComponentConfigEnableComponentsItemArray and MonitoringComponentConfigEnableComponentsItemArrayOutput values. // You can construct a concrete instance of `MonitoringComponentConfigEnableComponentsItemArrayInput` via: // @@ -3757,12 +3642,6 @@ func (in *networkConfigDatapathProviderPtr) ToNetworkConfigDatapathProviderPtrOu return pulumi.ToOutputWithContext(ctx, in).(NetworkConfigDatapathProviderPtrOutput) } -func (in *networkConfigDatapathProviderPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkConfigDatapathProvider] { - return pulumix.Output[*NetworkConfigDatapathProvider]{ - OutputState: in.ToNetworkConfigDatapathProviderPtrOutputWithContext(ctx).OutputState, - } -} - // The desired state of IPv6 connectivity to Google Services. By default, no private IPv6 access to or from Google Services (all access will be via IPv4) type NetworkConfigPrivateIpv6GoogleAccess string @@ -3937,12 +3816,6 @@ func (in *networkConfigPrivateIpv6GoogleAccessPtr) ToNetworkConfigPrivateIpv6Goo return pulumi.ToOutputWithContext(ctx, in).(NetworkConfigPrivateIpv6GoogleAccessPtrOutput) } -func (in *networkConfigPrivateIpv6GoogleAccessPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkConfigPrivateIpv6GoogleAccess] { - return pulumix.Output[*NetworkConfigPrivateIpv6GoogleAccess]{ - OutputState: in.ToNetworkConfigPrivateIpv6GoogleAccessPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the total network bandwidth tier for the NodePool. type NetworkPerformanceConfigTotalEgressBandwidthTier string @@ -4111,12 +3984,6 @@ func (in *networkPerformanceConfigTotalEgressBandwidthTierPtr) ToNetworkPerforma return pulumi.ToOutputWithContext(ctx, in).(NetworkPerformanceConfigTotalEgressBandwidthTierPtrOutput) } -func (in *networkPerformanceConfigTotalEgressBandwidthTierPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkPerformanceConfigTotalEgressBandwidthTier] { - return pulumix.Output[*NetworkPerformanceConfigTotalEgressBandwidthTier]{ - OutputState: in.ToNetworkPerformanceConfigTotalEgressBandwidthTierPtrOutputWithContext(ctx).OutputState, - } -} - // The selected network policy provider. type NetworkPolicyProvider string @@ -4285,12 +4152,6 @@ func (in *networkPolicyProviderPtr) ToNetworkPolicyProviderPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(NetworkPolicyProviderPtrOutput) } -func (in *networkPolicyProviderPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkPolicyProvider] { - return pulumix.Output[*NetworkPolicyProvider]{ - OutputState: in.ToNetworkPolicyProviderPtrOutputWithContext(ctx).OutputState, - } -} - // Operator for NodeAffinity. type NodeAffinityOperator string @@ -4462,12 +4323,6 @@ func (in *nodeAffinityOperatorPtr) ToNodeAffinityOperatorPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(NodeAffinityOperatorPtrOutput) } -func (in *nodeAffinityOperatorPtr) ToOutput(ctx context.Context) pulumix.Output[*NodeAffinityOperator] { - return pulumix.Output[*NodeAffinityOperator]{ - OutputState: in.ToNodeAffinityOperatorPtrOutputWithContext(ctx).OutputState, - } -} - // Location policy used when scaling up a nodepool. type NodePoolAutoscalingLocationPolicy string @@ -4639,12 +4494,6 @@ func (in *nodePoolAutoscalingLocationPolicyPtr) ToNodePoolAutoscalingLocationPol return pulumi.ToOutputWithContext(ctx, in).(NodePoolAutoscalingLocationPolicyPtrOutput) } -func (in *nodePoolAutoscalingLocationPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*NodePoolAutoscalingLocationPolicy] { - return pulumix.Output[*NodePoolAutoscalingLocationPolicy]{ - OutputState: in.ToNodePoolAutoscalingLocationPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Effect for taint. type NodeTaintEffect string @@ -4819,12 +4668,6 @@ func (in *nodeTaintEffectPtr) ToNodeTaintEffectPtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(NodeTaintEffectPtrOutput) } -func (in *nodeTaintEffectPtr) ToOutput(ctx context.Context) pulumix.Output[*NodeTaintEffect] { - return pulumix.Output[*NodeTaintEffect]{ - OutputState: in.ToNodeTaintEffectPtrOutputWithContext(ctx).OutputState, - } -} - // The type of placement. type PlacementPolicyType string @@ -4993,12 +4836,6 @@ func (in *placementPolicyTypePtr) ToPlacementPolicyTypePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(PlacementPolicyTypePtrOutput) } -func (in *placementPolicyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*PlacementPolicyType] { - return pulumix.Output[*PlacementPolicyType]{ - OutputState: in.ToPlacementPolicyTypePtrOutputWithContext(ctx).OutputState, - } -} - // channel specifies which release channel the cluster is subscribed to. type ReleaseChannelChannel string @@ -5173,12 +5010,6 @@ func (in *releaseChannelChannelPtr) ToReleaseChannelChannelPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ReleaseChannelChannelPtrOutput) } -func (in *releaseChannelChannelPtr) ToOutput(ctx context.Context) pulumix.Output[*ReleaseChannelChannel] { - return pulumix.Output[*ReleaseChannelChannel]{ - OutputState: in.ToReleaseChannelChannelPtrOutputWithContext(ctx).OutputState, - } -} - // Corresponds to the type of reservation consumption. type ReservationAffinityConsumeReservationType string @@ -5353,12 +5184,6 @@ func (in *reservationAffinityConsumeReservationTypePtr) ToReservationAffinityCon return pulumi.ToOutputWithContext(ctx, in).(ReservationAffinityConsumeReservationTypePtrOutput) } -func (in *reservationAffinityConsumeReservationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ReservationAffinityConsumeReservationType] { - return pulumix.Output[*ReservationAffinityConsumeReservationType]{ - OutputState: in.ToReservationAffinityConsumeReservationTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of the sandbox to use for the node. type SandboxConfigType string @@ -5527,12 +5352,6 @@ func (in *sandboxConfigTypePtr) ToSandboxConfigTypePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(SandboxConfigTypePtrOutput) } -func (in *sandboxConfigTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SandboxConfigType] { - return pulumix.Output[*SandboxConfigType]{ - OutputState: in.ToSandboxConfigTypePtrOutputWithContext(ctx).OutputState, - } -} - // Sets which mode to use for Security Posture features. type SecurityPostureConfigMode string @@ -5704,12 +5523,6 @@ func (in *securityPostureConfigModePtr) ToSecurityPostureConfigModePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(SecurityPostureConfigModePtrOutput) } -func (in *securityPostureConfigModePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPostureConfigMode] { - return pulumix.Output[*SecurityPostureConfigMode]{ - OutputState: in.ToSecurityPostureConfigModePtrOutputWithContext(ctx).OutputState, - } -} - // Sets which mode to use for vulnerability scanning. type SecurityPostureConfigVulnerabilityMode string @@ -5881,12 +5694,6 @@ func (in *securityPostureConfigVulnerabilityModePtr) ToSecurityPostureConfigVuln return pulumi.ToOutputWithContext(ctx, in).(SecurityPostureConfigVulnerabilityModePtrOutput) } -func (in *securityPostureConfigVulnerabilityModePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPostureConfigVulnerabilityMode] { - return pulumix.Output[*SecurityPostureConfigVulnerabilityMode]{ - OutputState: in.ToSecurityPostureConfigVulnerabilityModePtrOutputWithContext(ctx).OutputState, - } -} - // Canonical code of the condition. type StatusConditionCanonicalCode string @@ -6100,12 +5907,6 @@ func (in *statusConditionCanonicalCodePtr) ToStatusConditionCanonicalCodePtrOutp return pulumi.ToOutputWithContext(ctx, in).(StatusConditionCanonicalCodePtrOutput) } -func (in *statusConditionCanonicalCodePtr) ToOutput(ctx context.Context) pulumix.Output[*StatusConditionCanonicalCode] { - return pulumix.Output[*StatusConditionCanonicalCode]{ - OutputState: in.ToStatusConditionCanonicalCodePtrOutputWithContext(ctx).OutputState, - } -} - // Machine-friendly representation of the condition Deprecated. Use canonical_code instead. type StatusConditionCode string @@ -6289,12 +6090,6 @@ func (in *statusConditionCodePtr) ToStatusConditionCodePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(StatusConditionCodePtrOutput) } -func (in *statusConditionCodePtr) ToOutput(ctx context.Context) pulumix.Output[*StatusConditionCode] { - return pulumix.Output[*StatusConditionCode]{ - OutputState: in.ToStatusConditionCodePtrOutputWithContext(ctx).OutputState, - } -} - // Update strategy of the node pool. type UpgradeSettingsStrategy string @@ -6466,12 +6261,6 @@ func (in *upgradeSettingsStrategyPtr) ToUpgradeSettingsStrategyPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(UpgradeSettingsStrategyPtrOutput) } -func (in *upgradeSettingsStrategyPtr) ToOutput(ctx context.Context) pulumix.Output[*UpgradeSettingsStrategy] { - return pulumix.Output[*UpgradeSettingsStrategy]{ - OutputState: in.ToUpgradeSettingsStrategyPtrOutputWithContext(ctx).OutputState, - } -} - // OSVersion specifies the Windows node config to be used on the node type WindowsNodeConfigOsVersion string @@ -6643,12 +6432,6 @@ func (in *windowsNodeConfigOsVersionPtr) ToWindowsNodeConfigOsVersionPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(WindowsNodeConfigOsVersionPtrOutput) } -func (in *windowsNodeConfigOsVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*WindowsNodeConfigOsVersion] { - return pulumix.Output[*WindowsNodeConfigOsVersion]{ - OutputState: in.ToWindowsNodeConfigOsVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Mode is the configuration for how to expose metadata to workloads running on the node pool. type WorkloadMetadataConfigMode string @@ -6820,12 +6603,6 @@ func (in *workloadMetadataConfigModePtr) ToWorkloadMetadataConfigModePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(WorkloadMetadataConfigModePtrOutput) } -func (in *workloadMetadataConfigModePtr) ToOutput(ctx context.Context) pulumix.Output[*WorkloadMetadataConfigMode] { - return pulumix.Output[*WorkloadMetadataConfigMode]{ - OutputState: in.ToWorkloadMetadataConfigModePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AdvancedDatapathObservabilityConfigRelayModeInput)(nil)).Elem(), AdvancedDatapathObservabilityConfigRelayMode("RELAY_MODE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AdvancedDatapathObservabilityConfigRelayModePtrInput)(nil)).Elem(), AdvancedDatapathObservabilityConfigRelayMode("RELAY_MODE_UNSPECIFIED")) diff --git a/sdk/go/google/container/v1beta1/pulumiEnums.go b/sdk/go/google/container/v1beta1/pulumiEnums.go index ba88405339..babd7f5251 100644 --- a/sdk/go/google/container/v1beta1/pulumiEnums.go +++ b/sdk/go/google/container/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Method used to make Relay available @@ -185,12 +184,6 @@ func (in *advancedDatapathObservabilityConfigRelayModePtr) ToAdvancedDatapathObs return pulumi.ToOutputWithContext(ctx, in).(AdvancedDatapathObservabilityConfigRelayModePtrOutput) } -func (in *advancedDatapathObservabilityConfigRelayModePtr) ToOutput(ctx context.Context) pulumix.Output[*AdvancedDatapathObservabilityConfigRelayMode] { - return pulumix.Output[*AdvancedDatapathObservabilityConfigRelayMode]{ - OutputState: in.ToAdvancedDatapathObservabilityConfigRelayModePtrOutputWithContext(ctx).OutputState, - } -} - // Mode of operation for binauthz policy evaluation. If unspecified, defaults to DISABLED. type BinaryAuthorizationEvaluationMode string @@ -368,12 +361,6 @@ func (in *binaryAuthorizationEvaluationModePtr) ToBinaryAuthorizationEvaluationM return pulumi.ToOutputWithContext(ctx, in).(BinaryAuthorizationEvaluationModePtrOutput) } -func (in *binaryAuthorizationEvaluationModePtr) ToOutput(ctx context.Context) pulumix.Output[*BinaryAuthorizationEvaluationMode] { - return pulumix.Output[*BinaryAuthorizationEvaluationMode]{ - OutputState: in.ToBinaryAuthorizationEvaluationModePtrOutputWithContext(ctx).OutputState, - } -} - // Which load balancer type is installed for Cloud Run. type CloudRunConfigLoadBalancerType string @@ -545,12 +532,6 @@ func (in *cloudRunConfigLoadBalancerTypePtr) ToCloudRunConfigLoadBalancerTypePtr return pulumi.ToOutputWithContext(ctx, in).(CloudRunConfigLoadBalancerTypePtrOutput) } -func (in *cloudRunConfigLoadBalancerTypePtr) ToOutput(ctx context.Context) pulumix.Output[*CloudRunConfigLoadBalancerType] { - return pulumix.Output[*CloudRunConfigLoadBalancerType]{ - OutputState: in.ToCloudRunConfigLoadBalancerTypePtrOutputWithContext(ctx).OutputState, - } -} - // Defines autoscaling behaviour. type ClusterAutoscalingAutoscalingProfile string @@ -722,12 +703,6 @@ func (in *clusterAutoscalingAutoscalingProfilePtr) ToClusterAutoscalingAutoscali return pulumi.ToOutputWithContext(ctx, in).(ClusterAutoscalingAutoscalingProfilePtrOutput) } -func (in *clusterAutoscalingAutoscalingProfilePtr) ToOutput(ctx context.Context) pulumix.Output[*ClusterAutoscalingAutoscalingProfile] { - return pulumix.Output[*ClusterAutoscalingAutoscalingProfile]{ - OutputState: in.ToClusterAutoscalingAutoscalingProfilePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the total network bandwidth tier for the NodePool. type ClusterNetworkPerformanceConfigTotalEgressBandwidthTier string @@ -896,12 +871,6 @@ func (in *clusterNetworkPerformanceConfigTotalEgressBandwidthTierPtr) ToClusterN return pulumi.ToOutputWithContext(ctx, in).(ClusterNetworkPerformanceConfigTotalEgressBandwidthTierPtrOutput) } -func (in *clusterNetworkPerformanceConfigTotalEgressBandwidthTierPtr) ToOutput(ctx context.Context) pulumix.Output[*ClusterNetworkPerformanceConfigTotalEgressBandwidthTier] { - return pulumix.Output[*ClusterNetworkPerformanceConfigTotalEgressBandwidthTier]{ - OutputState: in.ToClusterNetworkPerformanceConfigTotalEgressBandwidthTierPtrOutputWithContext(ctx).OutputState, - } -} - // Type of the integration. type ClusterTelemetryType string @@ -1076,12 +1045,6 @@ func (in *clusterTelemetryTypePtr) ToClusterTelemetryTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(ClusterTelemetryTypePtrOutput) } -func (in *clusterTelemetryTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ClusterTelemetryType] { - return pulumix.Output[*ClusterTelemetryType]{ - OutputState: in.ToClusterTelemetryTypePtrOutputWithContext(ctx).OutputState, - } -} - // The desired datapath provider for the cluster. type ClusterUpdateDesiredDatapathProvider string @@ -1306,12 +1269,6 @@ func (in *dnsconfigClusterDnsPtr) ToDNSConfigClusterDnsPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(DNSConfigClusterDnsPtrOutput) } -func (in *dnsconfigClusterDnsPtr) ToOutput(ctx context.Context) pulumix.Output[*DNSConfigClusterDns] { - return pulumix.Output[*DNSConfigClusterDns]{ - OutputState: in.ToDNSConfigClusterDnsPtrOutputWithContext(ctx).OutputState, - } -} - // cluster_dns_scope indicates the scope of access to cluster DNS records. type DNSConfigClusterDnsScope string @@ -1483,12 +1440,6 @@ func (in *dnsconfigClusterDnsScopePtr) ToDNSConfigClusterDnsScopePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(DNSConfigClusterDnsScopePtrOutput) } -func (in *dnsconfigClusterDnsScopePtr) ToOutput(ctx context.Context) pulumix.Output[*DNSConfigClusterDnsScope] { - return pulumix.Output[*DNSConfigClusterDnsScope]{ - OutputState: in.ToDNSConfigClusterDnsScopePtrOutputWithContext(ctx).OutputState, - } -} - // The desired state of etcd encryption. type DatabaseEncryptionState string @@ -1660,12 +1611,6 @@ func (in *databaseEncryptionStatePtr) ToDatabaseEncryptionStatePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(DatabaseEncryptionStatePtrOutput) } -func (in *databaseEncryptionStatePtr) ToOutput(ctx context.Context) pulumix.Output[*DatabaseEncryptionState] { - return pulumix.Output[*DatabaseEncryptionState]{ - OutputState: in.ToDatabaseEncryptionStatePtrOutputWithContext(ctx).OutputState, - } -} - type FilterEventTypeItem string const ( @@ -1839,12 +1784,6 @@ func (in *filterEventTypeItemPtr) ToFilterEventTypeItemPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(FilterEventTypeItemPtrOutput) } -func (in *filterEventTypeItemPtr) ToOutput(ctx context.Context) pulumix.Output[*FilterEventTypeItem] { - return pulumix.Output[*FilterEventTypeItem]{ - OutputState: in.ToFilterEventTypeItemPtrOutputWithContext(ctx).OutputState, - } -} - // FilterEventTypeItemArrayInput is an input type that accepts FilterEventTypeItemArray and FilterEventTypeItemArrayOutput values. // You can construct a concrete instance of `FilterEventTypeItemArrayInput` via: // @@ -2064,12 +2003,6 @@ func (in *gpudriverInstallationConfigGpuDriverVersionPtr) ToGPUDriverInstallatio return pulumi.ToOutputWithContext(ctx, in).(GPUDriverInstallationConfigGpuDriverVersionPtrOutput) } -func (in *gpudriverInstallationConfigGpuDriverVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*GPUDriverInstallationConfigGpuDriverVersion] { - return pulumix.Output[*GPUDriverInstallationConfigGpuDriverVersion]{ - OutputState: in.ToGPUDriverInstallationConfigGpuDriverVersionPtrOutputWithContext(ctx).OutputState, - } -} - // The type of GPU sharing strategy to enable on the GPU node. type GPUSharingConfigGpuSharingStrategy string @@ -2238,12 +2171,6 @@ func (in *gpusharingConfigGpuSharingStrategyPtr) ToGPUSharingConfigGpuSharingStr return pulumi.ToOutputWithContext(ctx, in).(GPUSharingConfigGpuSharingStrategyPtrOutput) } -func (in *gpusharingConfigGpuSharingStrategyPtr) ToOutput(ctx context.Context) pulumix.Output[*GPUSharingConfigGpuSharingStrategy] { - return pulumix.Output[*GPUSharingConfigGpuSharingStrategy]{ - OutputState: in.ToGPUSharingConfigGpuSharingStrategyPtrOutputWithContext(ctx).OutputState, - } -} - // The Gateway API release channel to use for Gateway API. type GatewayAPIConfigChannel string @@ -2418,12 +2345,6 @@ func (in *gatewayAPIConfigChannelPtr) ToGatewayAPIConfigChannelPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(GatewayAPIConfigChannelPtrOutput) } -func (in *gatewayAPIConfigChannelPtr) ToOutput(ctx context.Context) pulumix.Output[*GatewayAPIConfigChannel] { - return pulumix.Output[*GatewayAPIConfigChannel]{ - OutputState: in.ToGatewayAPIConfigChannelPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the frequency of planned maintenance events. type HostMaintenancePolicyMaintenanceInterval string @@ -2595,12 +2516,6 @@ func (in *hostMaintenancePolicyMaintenanceIntervalPtr) ToHostMaintenancePolicyMa return pulumi.ToOutputWithContext(ctx, in).(HostMaintenancePolicyMaintenanceIntervalPtrOutput) } -func (in *hostMaintenancePolicyMaintenanceIntervalPtr) ToOutput(ctx context.Context) pulumix.Output[*HostMaintenancePolicyMaintenanceInterval] { - return pulumix.Output[*HostMaintenancePolicyMaintenanceInterval]{ - OutputState: in.ToHostMaintenancePolicyMaintenanceIntervalPtrOutputWithContext(ctx).OutputState, - } -} - // The ipv6 access type (internal or external) when create_subnetwork is true type IPAllocationPolicyIpv6AccessType string @@ -2772,12 +2687,6 @@ func (in *ipallocationPolicyIpv6AccessTypePtr) ToIPAllocationPolicyIpv6AccessTyp return pulumi.ToOutputWithContext(ctx, in).(IPAllocationPolicyIpv6AccessTypePtrOutput) } -func (in *ipallocationPolicyIpv6AccessTypePtr) ToOutput(ctx context.Context) pulumix.Output[*IPAllocationPolicyIpv6AccessType] { - return pulumix.Output[*IPAllocationPolicyIpv6AccessType]{ - OutputState: in.ToIPAllocationPolicyIpv6AccessTypePtrOutputWithContext(ctx).OutputState, - } -} - // IP stack type type IPAllocationPolicyStackType string @@ -2949,12 +2858,6 @@ func (in *ipallocationPolicyStackTypePtr) ToIPAllocationPolicyStackTypePtrOutput return pulumi.ToOutputWithContext(ctx, in).(IPAllocationPolicyStackTypePtrOutput) } -func (in *ipallocationPolicyStackTypePtr) ToOutput(ctx context.Context) pulumix.Output[*IPAllocationPolicyStackType] { - return pulumix.Output[*IPAllocationPolicyStackType]{ - OutputState: in.ToIPAllocationPolicyStackTypePtrOutputWithContext(ctx).OutputState, - } -} - // The specified Istio auth mode, either none, or mutual TLS. type IstioConfigAuth string @@ -3123,12 +3026,6 @@ func (in *istioConfigAuthPtr) ToIstioConfigAuthPtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(IstioConfigAuthPtrOutput) } -func (in *istioConfigAuthPtr) ToOutput(ctx context.Context) pulumix.Output[*IstioConfigAuth] { - return pulumix.Output[*IstioConfigAuth]{ - OutputState: in.ToIstioConfigAuthPtrOutputWithContext(ctx).OutputState, - } -} - // cgroup_mode specifies the cgroup mode to be used on the node. type LinuxNodeConfigCgroupMode string @@ -3300,12 +3197,6 @@ func (in *linuxNodeConfigCgroupModePtr) ToLinuxNodeConfigCgroupModePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(LinuxNodeConfigCgroupModePtrOutput) } -func (in *linuxNodeConfigCgroupModePtr) ToOutput(ctx context.Context) pulumix.Output[*LinuxNodeConfigCgroupMode] { - return pulumix.Output[*LinuxNodeConfigCgroupMode]{ - OutputState: in.ToLinuxNodeConfigCgroupModePtrOutputWithContext(ctx).OutputState, - } -} - type LoggingComponentConfigEnableComponentsItem string const ( @@ -3485,12 +3376,6 @@ func (in *loggingComponentConfigEnableComponentsItemPtr) ToLoggingComponentConfi return pulumi.ToOutputWithContext(ctx, in).(LoggingComponentConfigEnableComponentsItemPtrOutput) } -func (in *loggingComponentConfigEnableComponentsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*LoggingComponentConfigEnableComponentsItem] { - return pulumix.Output[*LoggingComponentConfigEnableComponentsItem]{ - OutputState: in.ToLoggingComponentConfigEnableComponentsItemPtrOutputWithContext(ctx).OutputState, - } -} - // LoggingComponentConfigEnableComponentsItemArrayInput is an input type that accepts LoggingComponentConfigEnableComponentsItemArray and LoggingComponentConfigEnableComponentsItemArrayOutput values. // You can construct a concrete instance of `LoggingComponentConfigEnableComponentsItemArrayInput` via: // @@ -3707,12 +3592,6 @@ func (in *loggingVariantConfigVariantPtr) ToLoggingVariantConfigVariantPtrOutput return pulumi.ToOutputWithContext(ctx, in).(LoggingVariantConfigVariantPtrOutput) } -func (in *loggingVariantConfigVariantPtr) ToOutput(ctx context.Context) pulumix.Output[*LoggingVariantConfigVariant] { - return pulumix.Output[*LoggingVariantConfigVariant]{ - OutputState: in.ToLoggingVariantConfigVariantPtrOutputWithContext(ctx).OutputState, - } -} - // Scope specifies the upgrade scope which upgrades are blocked by the exclusion. type MaintenanceExclusionOptionsScope string @@ -3884,12 +3763,6 @@ func (in *maintenanceExclusionOptionsScopePtr) ToMaintenanceExclusionOptionsScop return pulumi.ToOutputWithContext(ctx, in).(MaintenanceExclusionOptionsScopePtrOutput) } -func (in *maintenanceExclusionOptionsScopePtr) ToOutput(ctx context.Context) pulumix.Output[*MaintenanceExclusionOptionsScope] { - return pulumix.Output[*MaintenanceExclusionOptionsScope]{ - OutputState: in.ToMaintenanceExclusionOptionsScopePtrOutputWithContext(ctx).OutputState, - } -} - type MonitoringComponentConfigEnableComponentsItem string const ( @@ -4087,12 +3960,6 @@ func (in *monitoringComponentConfigEnableComponentsItemPtr) ToMonitoringComponen return pulumi.ToOutputWithContext(ctx, in).(MonitoringComponentConfigEnableComponentsItemPtrOutput) } -func (in *monitoringComponentConfigEnableComponentsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*MonitoringComponentConfigEnableComponentsItem] { - return pulumix.Output[*MonitoringComponentConfigEnableComponentsItem]{ - OutputState: in.ToMonitoringComponentConfigEnableComponentsItemPtrOutputWithContext(ctx).OutputState, - } -} - // MonitoringComponentConfigEnableComponentsItemArrayInput is an input type that accepts MonitoringComponentConfigEnableComponentsItemArray and MonitoringComponentConfigEnableComponentsItemArrayOutput values. // You can construct a concrete instance of `MonitoringComponentConfigEnableComponentsItemArrayInput` via: // @@ -4309,12 +4176,6 @@ func (in *networkConfigDatapathProviderPtr) ToNetworkConfigDatapathProviderPtrOu return pulumi.ToOutputWithContext(ctx, in).(NetworkConfigDatapathProviderPtrOutput) } -func (in *networkConfigDatapathProviderPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkConfigDatapathProvider] { - return pulumix.Output[*NetworkConfigDatapathProvider]{ - OutputState: in.ToNetworkConfigDatapathProviderPtrOutputWithContext(ctx).OutputState, - } -} - // Specify the details of in-transit encryption. type NetworkConfigInTransitEncryptionConfig string @@ -4486,12 +4347,6 @@ func (in *networkConfigInTransitEncryptionConfigPtr) ToNetworkConfigInTransitEnc return pulumi.ToOutputWithContext(ctx, in).(NetworkConfigInTransitEncryptionConfigPtrOutput) } -func (in *networkConfigInTransitEncryptionConfigPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkConfigInTransitEncryptionConfig] { - return pulumix.Output[*NetworkConfigInTransitEncryptionConfig]{ - OutputState: in.ToNetworkConfigInTransitEncryptionConfigPtrOutputWithContext(ctx).OutputState, - } -} - // The desired state of IPv6 connectivity to Google Services. By default, no private IPv6 access to or from Google Services (all access will be via IPv4) type NetworkConfigPrivateIpv6GoogleAccess string @@ -4666,12 +4521,6 @@ func (in *networkConfigPrivateIpv6GoogleAccessPtr) ToNetworkConfigPrivateIpv6Goo return pulumi.ToOutputWithContext(ctx, in).(NetworkConfigPrivateIpv6GoogleAccessPtrOutput) } -func (in *networkConfigPrivateIpv6GoogleAccessPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkConfigPrivateIpv6GoogleAccess] { - return pulumix.Output[*NetworkConfigPrivateIpv6GoogleAccess]{ - OutputState: in.ToNetworkConfigPrivateIpv6GoogleAccessPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the network bandwidth tier for the NodePool for traffic to external/public IP addresses. type NetworkPerformanceConfigExternalIpEgressBandwidthTier string @@ -4840,12 +4689,6 @@ func (in *networkPerformanceConfigExternalIpEgressBandwidthTierPtr) ToNetworkPer return pulumi.ToOutputWithContext(ctx, in).(NetworkPerformanceConfigExternalIpEgressBandwidthTierPtrOutput) } -func (in *networkPerformanceConfigExternalIpEgressBandwidthTierPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkPerformanceConfigExternalIpEgressBandwidthTier] { - return pulumix.Output[*NetworkPerformanceConfigExternalIpEgressBandwidthTier]{ - OutputState: in.ToNetworkPerformanceConfigExternalIpEgressBandwidthTierPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the total network bandwidth tier for the NodePool. type NetworkPerformanceConfigTotalEgressBandwidthTier string @@ -5014,12 +4857,6 @@ func (in *networkPerformanceConfigTotalEgressBandwidthTierPtr) ToNetworkPerforma return pulumi.ToOutputWithContext(ctx, in).(NetworkPerformanceConfigTotalEgressBandwidthTierPtrOutput) } -func (in *networkPerformanceConfigTotalEgressBandwidthTierPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkPerformanceConfigTotalEgressBandwidthTier] { - return pulumix.Output[*NetworkPerformanceConfigTotalEgressBandwidthTier]{ - OutputState: in.ToNetworkPerformanceConfigTotalEgressBandwidthTierPtrOutputWithContext(ctx).OutputState, - } -} - // The selected network policy provider. type NetworkPolicyProvider string @@ -5188,12 +5025,6 @@ func (in *networkPolicyProviderPtr) ToNetworkPolicyProviderPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(NetworkPolicyProviderPtrOutput) } -func (in *networkPolicyProviderPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkPolicyProvider] { - return pulumix.Output[*NetworkPolicyProvider]{ - OutputState: in.ToNetworkPolicyProviderPtrOutputWithContext(ctx).OutputState, - } -} - // Operator for NodeAffinity. type NodeAffinityOperator string @@ -5365,12 +5196,6 @@ func (in *nodeAffinityOperatorPtr) ToNodeAffinityOperatorPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(NodeAffinityOperatorPtrOutput) } -func (in *nodeAffinityOperatorPtr) ToOutput(ctx context.Context) pulumix.Output[*NodeAffinityOperator] { - return pulumix.Output[*NodeAffinityOperator]{ - OutputState: in.ToNodeAffinityOperatorPtrOutputWithContext(ctx).OutputState, - } -} - // Location policy used when scaling up a nodepool. type NodePoolAutoscalingLocationPolicy string @@ -5542,12 +5367,6 @@ func (in *nodePoolAutoscalingLocationPolicyPtr) ToNodePoolAutoscalingLocationPol return pulumi.ToOutputWithContext(ctx, in).(NodePoolAutoscalingLocationPolicyPtrOutput) } -func (in *nodePoolAutoscalingLocationPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*NodePoolAutoscalingLocationPolicy] { - return pulumix.Output[*NodePoolAutoscalingLocationPolicy]{ - OutputState: in.ToNodePoolAutoscalingLocationPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Effect for taint. type NodeTaintEffect string @@ -5722,12 +5541,6 @@ func (in *nodeTaintEffectPtr) ToNodeTaintEffectPtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(NodeTaintEffectPtrOutput) } -func (in *nodeTaintEffectPtr) ToOutput(ctx context.Context) pulumix.Output[*NodeTaintEffect] { - return pulumix.Output[*NodeTaintEffect]{ - OutputState: in.ToNodeTaintEffectPtrOutputWithContext(ctx).OutputState, - } -} - // The type of placement. type PlacementPolicyType string @@ -5896,12 +5709,6 @@ func (in *placementPolicyTypePtr) ToPlacementPolicyTypePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(PlacementPolicyTypePtrOutput) } -func (in *placementPolicyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*PlacementPolicyType] { - return pulumix.Output[*PlacementPolicyType]{ - OutputState: in.ToPlacementPolicyTypePtrOutputWithContext(ctx).OutputState, - } -} - // Sets which mode to use for Protect workload vulnerability scanning feature. type ProtectConfigWorkloadVulnerabilityMode string @@ -6073,12 +5880,6 @@ func (in *protectConfigWorkloadVulnerabilityModePtr) ToProtectConfigWorkloadVuln return pulumi.ToOutputWithContext(ctx, in).(ProtectConfigWorkloadVulnerabilityModePtrOutput) } -func (in *protectConfigWorkloadVulnerabilityModePtr) ToOutput(ctx context.Context) pulumix.Output[*ProtectConfigWorkloadVulnerabilityMode] { - return pulumix.Output[*ProtectConfigWorkloadVulnerabilityMode]{ - OutputState: in.ToProtectConfigWorkloadVulnerabilityModePtrOutputWithContext(ctx).OutputState, - } -} - // channel specifies which release channel the cluster is subscribed to. type ReleaseChannelChannel string @@ -6253,12 +6054,6 @@ func (in *releaseChannelChannelPtr) ToReleaseChannelChannelPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ReleaseChannelChannelPtrOutput) } -func (in *releaseChannelChannelPtr) ToOutput(ctx context.Context) pulumix.Output[*ReleaseChannelChannel] { - return pulumix.Output[*ReleaseChannelChannel]{ - OutputState: in.ToReleaseChannelChannelPtrOutputWithContext(ctx).OutputState, - } -} - // Corresponds to the type of reservation consumption. type ReservationAffinityConsumeReservationType string @@ -6433,12 +6228,6 @@ func (in *reservationAffinityConsumeReservationTypePtr) ToReservationAffinityCon return pulumi.ToOutputWithContext(ctx, in).(ReservationAffinityConsumeReservationTypePtrOutput) } -func (in *reservationAffinityConsumeReservationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ReservationAffinityConsumeReservationType] { - return pulumix.Output[*ReservationAffinityConsumeReservationType]{ - OutputState: in.ToReservationAffinityConsumeReservationTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of the sandbox to use for the node. type SandboxConfigType string @@ -6607,12 +6396,6 @@ func (in *sandboxConfigTypePtr) ToSandboxConfigTypePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(SandboxConfigTypePtrOutput) } -func (in *sandboxConfigTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SandboxConfigType] { - return pulumix.Output[*SandboxConfigType]{ - OutputState: in.ToSandboxConfigTypePtrOutputWithContext(ctx).OutputState, - } -} - // Sets which mode to use for Security Posture features. type SecurityPostureConfigMode string @@ -6784,12 +6567,6 @@ func (in *securityPostureConfigModePtr) ToSecurityPostureConfigModePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(SecurityPostureConfigModePtrOutput) } -func (in *securityPostureConfigModePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPostureConfigMode] { - return pulumix.Output[*SecurityPostureConfigMode]{ - OutputState: in.ToSecurityPostureConfigModePtrOutputWithContext(ctx).OutputState, - } -} - // Sets which mode to use for vulnerability scanning. type SecurityPostureConfigVulnerabilityMode string @@ -6964,12 +6741,6 @@ func (in *securityPostureConfigVulnerabilityModePtr) ToSecurityPostureConfigVuln return pulumi.ToOutputWithContext(ctx, in).(SecurityPostureConfigVulnerabilityModePtrOutput) } -func (in *securityPostureConfigVulnerabilityModePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPostureConfigVulnerabilityMode] { - return pulumix.Output[*SecurityPostureConfigVulnerabilityMode]{ - OutputState: in.ToSecurityPostureConfigVulnerabilityModePtrOutputWithContext(ctx).OutputState, - } -} - // Canonical code of the condition. type StatusConditionCanonicalCode string @@ -7183,12 +6954,6 @@ func (in *statusConditionCanonicalCodePtr) ToStatusConditionCanonicalCodePtrOutp return pulumi.ToOutputWithContext(ctx, in).(StatusConditionCanonicalCodePtrOutput) } -func (in *statusConditionCanonicalCodePtr) ToOutput(ctx context.Context) pulumix.Output[*StatusConditionCanonicalCode] { - return pulumix.Output[*StatusConditionCanonicalCode]{ - OutputState: in.ToStatusConditionCanonicalCodePtrOutputWithContext(ctx).OutputState, - } -} - // Machine-friendly representation of the condition Deprecated. Use canonical_code instead. type StatusConditionCode string @@ -7372,12 +7137,6 @@ func (in *statusConditionCodePtr) ToStatusConditionCodePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(StatusConditionCodePtrOutput) } -func (in *statusConditionCodePtr) ToOutput(ctx context.Context) pulumix.Output[*StatusConditionCode] { - return pulumix.Output[*StatusConditionCode]{ - OutputState: in.ToStatusConditionCodePtrOutputWithContext(ctx).OutputState, - } -} - // Update strategy of the node pool. type UpgradeSettingsStrategy string @@ -7549,12 +7308,6 @@ func (in *upgradeSettingsStrategyPtr) ToUpgradeSettingsStrategyPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(UpgradeSettingsStrategyPtrOutput) } -func (in *upgradeSettingsStrategyPtr) ToOutput(ctx context.Context) pulumix.Output[*UpgradeSettingsStrategy] { - return pulumix.Output[*UpgradeSettingsStrategy]{ - OutputState: in.ToUpgradeSettingsStrategyPtrOutputWithContext(ctx).OutputState, - } -} - // OSVersion specifies the Windows node config to be used on the node type WindowsNodeConfigOsVersion string @@ -7726,12 +7479,6 @@ func (in *windowsNodeConfigOsVersionPtr) ToWindowsNodeConfigOsVersionPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(WindowsNodeConfigOsVersionPtrOutput) } -func (in *windowsNodeConfigOsVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*WindowsNodeConfigOsVersion] { - return pulumix.Output[*WindowsNodeConfigOsVersion]{ - OutputState: in.ToWindowsNodeConfigOsVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Sets which mode of auditing should be used for the cluster's workloads. type WorkloadConfigAuditMode string @@ -7909,12 +7656,6 @@ func (in *workloadConfigAuditModePtr) ToWorkloadConfigAuditModePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(WorkloadConfigAuditModePtrOutput) } -func (in *workloadConfigAuditModePtr) ToOutput(ctx context.Context) pulumix.Output[*WorkloadConfigAuditMode] { - return pulumix.Output[*WorkloadConfigAuditMode]{ - OutputState: in.ToWorkloadConfigAuditModePtrOutputWithContext(ctx).OutputState, - } -} - // Mode is the configuration for how to expose metadata to workloads running on the node pool. type WorkloadMetadataConfigMode string @@ -8086,12 +7827,6 @@ func (in *workloadMetadataConfigModePtr) ToWorkloadMetadataConfigModePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(WorkloadMetadataConfigModePtrOutput) } -func (in *workloadMetadataConfigModePtr) ToOutput(ctx context.Context) pulumix.Output[*WorkloadMetadataConfigMode] { - return pulumix.Output[*WorkloadMetadataConfigMode]{ - OutputState: in.ToWorkloadMetadataConfigModePtrOutputWithContext(ctx).OutputState, - } -} - // NodeMetadata is the configuration for how to expose metadata to the workloads running on the node. type WorkloadMetadataConfigNodeMetadata string @@ -8266,12 +8001,6 @@ func (in *workloadMetadataConfigNodeMetadataPtr) ToWorkloadMetadataConfigNodeMet return pulumi.ToOutputWithContext(ctx, in).(WorkloadMetadataConfigNodeMetadataPtrOutput) } -func (in *workloadMetadataConfigNodeMetadataPtr) ToOutput(ctx context.Context) pulumix.Output[*WorkloadMetadataConfigNodeMetadata] { - return pulumix.Output[*WorkloadMetadataConfigNodeMetadata]{ - OutputState: in.ToWorkloadMetadataConfigNodeMetadataPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AdvancedDatapathObservabilityConfigRelayModeInput)(nil)).Elem(), AdvancedDatapathObservabilityConfigRelayMode("RELAY_MODE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AdvancedDatapathObservabilityConfigRelayModePtrInput)(nil)).Elem(), AdvancedDatapathObservabilityConfigRelayMode("RELAY_MODE_UNSPECIFIED")) diff --git a/sdk/go/google/containeranalysis/v1/pulumiEnums.go b/sdk/go/google/containeranalysis/v1/pulumiEnums.go index 2101b0006d..d5e0df12b3 100644 --- a/sdk/go/google/containeranalysis/v1/pulumiEnums.go +++ b/sdk/go/google/containeranalysis/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The alias kind. @@ -185,12 +184,6 @@ func (in *aliasContextKindPtr) ToAliasContextKindPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(AliasContextKindPtrOutput) } -func (in *aliasContextKindPtr) ToOutput(ctx context.Context) pulumix.Output[*AliasContextKind] { - return pulumix.Output[*AliasContextKind]{ - OutputState: in.ToAliasContextKindPtrOutputWithContext(ctx).OutputState, - } -} - // Provides the state of this Vulnerability assessment. type AssessmentState string @@ -368,12 +361,6 @@ func (in *assessmentStatePtr) ToAssessmentStatePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(AssessmentStatePtrOutput) } -func (in *assessmentStatePtr) ToOutput(ctx context.Context) pulumix.Output[*AssessmentState] { - return pulumix.Output[*AssessmentState]{ - OutputState: in.ToAssessmentStatePtrOutputWithContext(ctx).OutputState, - } -} - type CVSSAttackComplexity string const ( @@ -543,12 +530,6 @@ func (in *cvssattackComplexityPtr) ToCVSSAttackComplexityPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(CVSSAttackComplexityPtrOutput) } -func (in *cvssattackComplexityPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSAttackComplexity] { - return pulumix.Output[*CVSSAttackComplexity]{ - OutputState: in.ToCVSSAttackComplexityPtrOutputWithContext(ctx).OutputState, - } -} - // Base Metrics Represents the intrinsic characteristics of a vulnerability that are constant over time and across user environments. type CVSSAttackVector string @@ -721,12 +702,6 @@ func (in *cvssattackVectorPtr) ToCVSSAttackVectorPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(CVSSAttackVectorPtrOutput) } -func (in *cvssattackVectorPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSAttackVector] { - return pulumix.Output[*CVSSAttackVector]{ - OutputState: in.ToCVSSAttackVectorPtrOutputWithContext(ctx).OutputState, - } -} - type CVSSAuthentication string const ( @@ -896,12 +871,6 @@ func (in *cvssauthenticationPtr) ToCVSSAuthenticationPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(CVSSAuthenticationPtrOutput) } -func (in *cvssauthenticationPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSAuthentication] { - return pulumix.Output[*CVSSAuthentication]{ - OutputState: in.ToCVSSAuthenticationPtrOutputWithContext(ctx).OutputState, - } -} - type CVSSAvailabilityImpact string const ( @@ -1075,12 +1044,6 @@ func (in *cvssavailabilityImpactPtr) ToCVSSAvailabilityImpactPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(CVSSAvailabilityImpactPtrOutput) } -func (in *cvssavailabilityImpactPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSAvailabilityImpact] { - return pulumix.Output[*CVSSAvailabilityImpact]{ - OutputState: in.ToCVSSAvailabilityImpactPtrOutputWithContext(ctx).OutputState, - } -} - type CVSSConfidentialityImpact string const ( @@ -1254,12 +1217,6 @@ func (in *cvssconfidentialityImpactPtr) ToCVSSConfidentialityImpactPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(CVSSConfidentialityImpactPtrOutput) } -func (in *cvssconfidentialityImpactPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSConfidentialityImpact] { - return pulumix.Output[*CVSSConfidentialityImpact]{ - OutputState: in.ToCVSSConfidentialityImpactPtrOutputWithContext(ctx).OutputState, - } -} - type CVSSIntegrityImpact string const ( @@ -1433,12 +1390,6 @@ func (in *cvssintegrityImpactPtr) ToCVSSIntegrityImpactPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(CVSSIntegrityImpactPtrOutput) } -func (in *cvssintegrityImpactPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSIntegrityImpact] { - return pulumix.Output[*CVSSIntegrityImpact]{ - OutputState: in.ToCVSSIntegrityImpactPtrOutputWithContext(ctx).OutputState, - } -} - type CVSSPrivilegesRequired string const ( @@ -1608,12 +1559,6 @@ func (in *cvssprivilegesRequiredPtr) ToCVSSPrivilegesRequiredPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(CVSSPrivilegesRequiredPtrOutput) } -func (in *cvssprivilegesRequiredPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSPrivilegesRequired] { - return pulumix.Output[*CVSSPrivilegesRequired]{ - OutputState: in.ToCVSSPrivilegesRequiredPtrOutputWithContext(ctx).OutputState, - } -} - type CVSSScope string const ( @@ -1781,12 +1726,6 @@ func (in *cvssscopePtr) ToCVSSScopePtrOutputWithContext(ctx context.Context) CVS return pulumi.ToOutputWithContext(ctx, in).(CVSSScopePtrOutput) } -func (in *cvssscopePtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSScope] { - return pulumix.Output[*CVSSScope]{ - OutputState: in.ToCVSSScopePtrOutputWithContext(ctx).OutputState, - } -} - type CVSSUserInteraction string const ( @@ -1954,12 +1893,6 @@ func (in *cvssuserInteractionPtr) ToCVSSUserInteractionPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(CVSSUserInteractionPtrOutput) } -func (in *cvssuserInteractionPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSUserInteraction] { - return pulumix.Output[*CVSSUserInteraction]{ - OutputState: in.ToCVSSUserInteractionPtrOutputWithContext(ctx).OutputState, - } -} - type CVSSv3AttackComplexity string const ( @@ -2127,12 +2060,6 @@ func (in *cvssv3AttackComplexityPtr) ToCVSSv3AttackComplexityPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(CVSSv3AttackComplexityPtrOutput) } -func (in *cvssv3AttackComplexityPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSv3AttackComplexity] { - return pulumix.Output[*CVSSv3AttackComplexity]{ - OutputState: in.ToCVSSv3AttackComplexityPtrOutputWithContext(ctx).OutputState, - } -} - // Base Metrics Represents the intrinsic characteristics of a vulnerability that are constant over time and across user environments. type CVSSv3AttackVector string @@ -2305,12 +2232,6 @@ func (in *cvssv3AttackVectorPtr) ToCVSSv3AttackVectorPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(CVSSv3AttackVectorPtrOutput) } -func (in *cvssv3AttackVectorPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSv3AttackVector] { - return pulumix.Output[*CVSSv3AttackVector]{ - OutputState: in.ToCVSSv3AttackVectorPtrOutputWithContext(ctx).OutputState, - } -} - type CVSSv3AvailabilityImpact string const ( @@ -2480,12 +2401,6 @@ func (in *cvssv3AvailabilityImpactPtr) ToCVSSv3AvailabilityImpactPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(CVSSv3AvailabilityImpactPtrOutput) } -func (in *cvssv3AvailabilityImpactPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSv3AvailabilityImpact] { - return pulumix.Output[*CVSSv3AvailabilityImpact]{ - OutputState: in.ToCVSSv3AvailabilityImpactPtrOutputWithContext(ctx).OutputState, - } -} - type CVSSv3ConfidentialityImpact string const ( @@ -2655,12 +2570,6 @@ func (in *cvssv3ConfidentialityImpactPtr) ToCVSSv3ConfidentialityImpactPtrOutput return pulumi.ToOutputWithContext(ctx, in).(CVSSv3ConfidentialityImpactPtrOutput) } -func (in *cvssv3ConfidentialityImpactPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSv3ConfidentialityImpact] { - return pulumix.Output[*CVSSv3ConfidentialityImpact]{ - OutputState: in.ToCVSSv3ConfidentialityImpactPtrOutputWithContext(ctx).OutputState, - } -} - type CVSSv3IntegrityImpact string const ( @@ -2830,12 +2739,6 @@ func (in *cvssv3IntegrityImpactPtr) ToCVSSv3IntegrityImpactPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(CVSSv3IntegrityImpactPtrOutput) } -func (in *cvssv3IntegrityImpactPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSv3IntegrityImpact] { - return pulumix.Output[*CVSSv3IntegrityImpact]{ - OutputState: in.ToCVSSv3IntegrityImpactPtrOutputWithContext(ctx).OutputState, - } -} - type CVSSv3PrivilegesRequired string const ( @@ -3005,12 +2908,6 @@ func (in *cvssv3PrivilegesRequiredPtr) ToCVSSv3PrivilegesRequiredPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(CVSSv3PrivilegesRequiredPtrOutput) } -func (in *cvssv3PrivilegesRequiredPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSv3PrivilegesRequired] { - return pulumix.Output[*CVSSv3PrivilegesRequired]{ - OutputState: in.ToCVSSv3PrivilegesRequiredPtrOutputWithContext(ctx).OutputState, - } -} - type CVSSv3Scope string const ( @@ -3178,12 +3075,6 @@ func (in *cvssv3ScopePtr) ToCVSSv3ScopePtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(CVSSv3ScopePtrOutput) } -func (in *cvssv3ScopePtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSv3Scope] { - return pulumix.Output[*CVSSv3Scope]{ - OutputState: in.ToCVSSv3ScopePtrOutputWithContext(ctx).OutputState, - } -} - type CVSSv3UserInteraction string const ( @@ -3351,12 +3242,6 @@ func (in *cvssv3UserInteractionPtr) ToCVSSv3UserInteractionPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(CVSSv3UserInteractionPtrOutput) } -func (in *cvssv3UserInteractionPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSv3UserInteraction] { - return pulumix.Output[*CVSSv3UserInteraction]{ - OutputState: in.ToCVSSv3UserInteractionPtrOutputWithContext(ctx).OutputState, - } -} - type CisBenchmarkSeverity string const ( @@ -3536,12 +3421,6 @@ func (in *cisBenchmarkSeverityPtr) ToCisBenchmarkSeverityPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(CisBenchmarkSeverityPtrOutput) } -func (in *cisBenchmarkSeverityPtr) ToOutput(ctx context.Context) pulumix.Output[*CisBenchmarkSeverity] { - return pulumix.Output[*CisBenchmarkSeverity]{ - OutputState: in.ToCisBenchmarkSeverityPtrOutputWithContext(ctx).OutputState, - } -} - // Platform hosting this deployment. type DeploymentOccurrencePlatform string @@ -3716,12 +3595,6 @@ func (in *deploymentOccurrencePlatformPtr) ToDeploymentOccurrencePlatformPtrOutp return pulumi.ToOutputWithContext(ctx, in).(DeploymentOccurrencePlatformPtrOutput) } -func (in *deploymentOccurrencePlatformPtr) ToOutput(ctx context.Context) pulumix.Output[*DeploymentOccurrencePlatform] { - return pulumix.Output[*DeploymentOccurrencePlatform]{ - OutputState: in.ToDeploymentOccurrencePlatformPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Immutable. The kind of analysis that is handled by this discovery. type DiscoveryNoteAnalysisKind string @@ -3923,12 +3796,6 @@ func (in *discoveryNoteAnalysisKindPtr) ToDiscoveryNoteAnalysisKindPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(DiscoveryNoteAnalysisKindPtrOutput) } -func (in *discoveryNoteAnalysisKindPtr) ToOutput(ctx context.Context) pulumix.Output[*DiscoveryNoteAnalysisKind] { - return pulumix.Output[*DiscoveryNoteAnalysisKind]{ - OutputState: in.ToDiscoveryNoteAnalysisKindPtrOutputWithContext(ctx).OutputState, - } -} - // The status of discovery for the resource. type DiscoveryOccurrenceAnalysisStatus string @@ -4112,12 +3979,6 @@ func (in *discoveryOccurrenceAnalysisStatusPtr) ToDiscoveryOccurrenceAnalysisSta return pulumi.ToOutputWithContext(ctx, in).(DiscoveryOccurrenceAnalysisStatusPtrOutput) } -func (in *discoveryOccurrenceAnalysisStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*DiscoveryOccurrenceAnalysisStatus] { - return pulumix.Output[*DiscoveryOccurrenceAnalysisStatus]{ - OutputState: in.ToDiscoveryOccurrenceAnalysisStatusPtrOutputWithContext(ctx).OutputState, - } -} - // Whether the resource is continuously analyzed. type DiscoveryOccurrenceContinuousAnalysis string @@ -4289,12 +4150,6 @@ func (in *discoveryOccurrenceContinuousAnalysisPtr) ToDiscoveryOccurrenceContinu return pulumi.ToOutputWithContext(ctx, in).(DiscoveryOccurrenceContinuousAnalysisPtrOutput) } -func (in *discoveryOccurrenceContinuousAnalysisPtr) ToOutput(ctx context.Context) pulumix.Output[*DiscoveryOccurrenceContinuousAnalysis] { - return pulumix.Output[*DiscoveryOccurrenceContinuousAnalysis]{ - OutputState: in.ToDiscoveryOccurrenceContinuousAnalysisPtrOutputWithContext(ctx).OutputState, - } -} - // The CPU architecture for which packages in this distribution channel were built. type DistributionArchitecture string @@ -4466,12 +4321,6 @@ func (in *distributionArchitecturePtr) ToDistributionArchitecturePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(DistributionArchitecturePtrOutput) } -func (in *distributionArchitecturePtr) ToOutput(ctx context.Context) pulumix.Output[*DistributionArchitecture] { - return pulumix.Output[*DistributionArchitecture]{ - OutputState: in.ToDistributionArchitecturePtrOutputWithContext(ctx).OutputState, - } -} - // The justification type for this vulnerability. type JustificationJustificationType string @@ -4652,12 +4501,6 @@ func (in *justificationJustificationTypePtr) ToJustificationJustificationTypePtr return pulumi.ToOutputWithContext(ctx, in).(JustificationJustificationTypePtrOutput) } -func (in *justificationJustificationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*JustificationJustificationType] { - return pulumix.Output[*JustificationJustificationType]{ - OutputState: in.ToJustificationJustificationTypePtrOutputWithContext(ctx).OutputState, - } -} - // The CPU architecture for which packages in this distribution channel were built. Architecture will be blank for language packages. type PackageNoteArchitecture string @@ -4829,12 +4672,6 @@ func (in *packageNoteArchitecturePtr) ToPackageNoteArchitecturePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(PackageNoteArchitecturePtrOutput) } -func (in *packageNoteArchitecturePtr) ToOutput(ctx context.Context) pulumix.Output[*PackageNoteArchitecture] { - return pulumix.Output[*PackageNoteArchitecture]{ - OutputState: in.ToPackageNoteArchitecturePtrOutputWithContext(ctx).OutputState, - } -} - // The type of remediation that can be applied. type RemediationRemediationType string @@ -5015,12 +4852,6 @@ func (in *remediationRemediationTypePtr) ToRemediationRemediationTypePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(RemediationRemediationTypePtrOutput) } -func (in *remediationRemediationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RemediationRemediationType] { - return pulumix.Output[*RemediationRemediationType]{ - OutputState: in.ToRemediationRemediationTypePtrOutputWithContext(ctx).OutputState, - } -} - // The progress of the SBOM generation. type SBOMStatusSbomState string @@ -5192,12 +5023,6 @@ func (in *sbomstatusSbomStatePtr) ToSBOMStatusSbomStatePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(SBOMStatusSbomStatePtrOutput) } -func (in *sbomstatusSbomStatePtr) ToOutput(ctx context.Context) pulumix.Output[*SBOMStatusSbomState] { - return pulumix.Output[*SBOMStatusSbomState]{ - OutputState: in.ToSBOMStatusSbomStatePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Distinguishes between sentinel MIN/MAX versions and normal versions. type VersionKind string @@ -5372,12 +5197,6 @@ func (in *versionKindPtr) ToVersionKindPtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(VersionKindPtrOutput) } -func (in *versionKindPtr) ToOutput(ctx context.Context) pulumix.Output[*VersionKind] { - return pulumix.Output[*VersionKind]{ - OutputState: in.ToVersionKindPtrOutputWithContext(ctx).OutputState, - } -} - // Provides the state of this Vulnerability assessment. type VexAssessmentState string @@ -5555,12 +5374,6 @@ func (in *vexAssessmentStatePtr) ToVexAssessmentStatePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(VexAssessmentStatePtrOutput) } -func (in *vexAssessmentStatePtr) ToOutput(ctx context.Context) pulumix.Output[*VexAssessmentState] { - return pulumix.Output[*VexAssessmentState]{ - OutputState: in.ToVexAssessmentStatePtrOutputWithContext(ctx).OutputState, - } -} - // CVSS version used to populate cvss_score and severity. type VulnerabilityNoteCvssVersion string @@ -5729,12 +5542,6 @@ func (in *vulnerabilityNoteCvssVersionPtr) ToVulnerabilityNoteCvssVersionPtrOutp return pulumi.ToOutputWithContext(ctx, in).(VulnerabilityNoteCvssVersionPtrOutput) } -func (in *vulnerabilityNoteCvssVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*VulnerabilityNoteCvssVersion] { - return pulumix.Output[*VulnerabilityNoteCvssVersion]{ - OutputState: in.ToVulnerabilityNoteCvssVersionPtrOutputWithContext(ctx).OutputState, - } -} - // The note provider assigned severity of this vulnerability. type VulnerabilityNoteSeverity string @@ -5915,12 +5722,6 @@ func (in *vulnerabilityNoteSeverityPtr) ToVulnerabilityNoteSeverityPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(VulnerabilityNoteSeverityPtrOutput) } -func (in *vulnerabilityNoteSeverityPtr) ToOutput(ctx context.Context) pulumix.Output[*VulnerabilityNoteSeverity] { - return pulumix.Output[*VulnerabilityNoteSeverity]{ - OutputState: in.ToVulnerabilityNoteSeverityPtrOutputWithContext(ctx).OutputState, - } -} - // The distro assigned severity for this vulnerability when it is available, otherwise this is the note provider assigned severity. When there are multiple PackageIssues for this vulnerability, they can have different effective severities because some might be provided by the distro while others are provided by the language ecosystem for a language pack. For this reason, it is advised to use the effective severity on the PackageIssue level. In the case where multiple PackageIssues have differing effective severities, this field should be the highest severity for any of the PackageIssues. type VulnerabilityOccurrenceEffectiveSeverity string @@ -6101,12 +5902,6 @@ func (in *vulnerabilityOccurrenceEffectiveSeverityPtr) ToVulnerabilityOccurrence return pulumi.ToOutputWithContext(ctx, in).(VulnerabilityOccurrenceEffectiveSeverityPtrOutput) } -func (in *vulnerabilityOccurrenceEffectiveSeverityPtr) ToOutput(ctx context.Context) pulumix.Output[*VulnerabilityOccurrenceEffectiveSeverity] { - return pulumix.Output[*VulnerabilityOccurrenceEffectiveSeverity]{ - OutputState: in.ToVulnerabilityOccurrenceEffectiveSeverityPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AliasContextKindInput)(nil)).Elem(), AliasContextKind("KIND_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AliasContextKindPtrInput)(nil)).Elem(), AliasContextKind("KIND_UNSPECIFIED")) diff --git a/sdk/go/google/containeranalysis/v1alpha1/pulumiEnums.go b/sdk/go/google/containeranalysis/v1alpha1/pulumiEnums.go index eed32fb61f..528a6cf4fc 100644 --- a/sdk/go/google/containeranalysis/v1alpha1/pulumiEnums.go +++ b/sdk/go/google/containeranalysis/v1alpha1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Provides the state of this Vulnerability assessment. @@ -188,12 +187,6 @@ func (in *assessmentStatePtr) ToAssessmentStatePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(AssessmentStatePtrOutput) } -func (in *assessmentStatePtr) ToOutput(ctx context.Context) pulumix.Output[*AssessmentState] { - return pulumix.Output[*AssessmentState]{ - OutputState: in.ToAssessmentStatePtrOutputWithContext(ctx).OutputState, - } -} - // The type of the key, either stored in `public_key` or referenced in `key_id` type BuildSignatureKeyType string @@ -365,12 +358,6 @@ func (in *buildSignatureKeyTypePtr) ToBuildSignatureKeyTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(BuildSignatureKeyTypePtrOutput) } -func (in *buildSignatureKeyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*BuildSignatureKeyType] { - return pulumix.Output[*BuildSignatureKeyType]{ - OutputState: in.ToBuildSignatureKeyTypePtrOutputWithContext(ctx).OutputState, - } -} - // Defined in CVSS v3, CVSS v2 type CVSSAttackComplexity string @@ -545,12 +532,6 @@ func (in *cvssattackComplexityPtr) ToCVSSAttackComplexityPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(CVSSAttackComplexityPtrOutput) } -func (in *cvssattackComplexityPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSAttackComplexity] { - return pulumix.Output[*CVSSAttackComplexity]{ - OutputState: in.ToCVSSAttackComplexityPtrOutputWithContext(ctx).OutputState, - } -} - // Base Metrics Represents the intrinsic characteristics of a vulnerability that are constant over time and across user environments. Defined in CVSS v3, CVSS v2 type CVSSAttackVector string @@ -728,12 +709,6 @@ func (in *cvssattackVectorPtr) ToCVSSAttackVectorPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(CVSSAttackVectorPtrOutput) } -func (in *cvssattackVectorPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSAttackVector] { - return pulumix.Output[*CVSSAttackVector]{ - OutputState: in.ToCVSSAttackVectorPtrOutputWithContext(ctx).OutputState, - } -} - // Defined in CVSS v2 type CVSSAuthentication string @@ -908,12 +883,6 @@ func (in *cvssauthenticationPtr) ToCVSSAuthenticationPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(CVSSAuthenticationPtrOutput) } -func (in *cvssauthenticationPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSAuthentication] { - return pulumix.Output[*CVSSAuthentication]{ - OutputState: in.ToCVSSAuthenticationPtrOutputWithContext(ctx).OutputState, - } -} - // Defined in CVSS v3, CVSS v2 type CVSSAvailabilityImpact string @@ -1094,12 +1063,6 @@ func (in *cvssavailabilityImpactPtr) ToCVSSAvailabilityImpactPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(CVSSAvailabilityImpactPtrOutput) } -func (in *cvssavailabilityImpactPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSAvailabilityImpact] { - return pulumix.Output[*CVSSAvailabilityImpact]{ - OutputState: in.ToCVSSAvailabilityImpactPtrOutputWithContext(ctx).OutputState, - } -} - // Defined in CVSS v3, CVSS v2 type CVSSConfidentialityImpact string @@ -1280,12 +1243,6 @@ func (in *cvssconfidentialityImpactPtr) ToCVSSConfidentialityImpactPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(CVSSConfidentialityImpactPtrOutput) } -func (in *cvssconfidentialityImpactPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSConfidentialityImpact] { - return pulumix.Output[*CVSSConfidentialityImpact]{ - OutputState: in.ToCVSSConfidentialityImpactPtrOutputWithContext(ctx).OutputState, - } -} - // Defined in CVSS v3, CVSS v2 type CVSSIntegrityImpact string @@ -1466,12 +1423,6 @@ func (in *cvssintegrityImpactPtr) ToCVSSIntegrityImpactPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(CVSSIntegrityImpactPtrOutput) } -func (in *cvssintegrityImpactPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSIntegrityImpact] { - return pulumix.Output[*CVSSIntegrityImpact]{ - OutputState: in.ToCVSSIntegrityImpactPtrOutputWithContext(ctx).OutputState, - } -} - // Defined in CVSS v3 type CVSSPrivilegesRequired string @@ -1646,12 +1597,6 @@ func (in *cvssprivilegesRequiredPtr) ToCVSSPrivilegesRequiredPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(CVSSPrivilegesRequiredPtrOutput) } -func (in *cvssprivilegesRequiredPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSPrivilegesRequired] { - return pulumix.Output[*CVSSPrivilegesRequired]{ - OutputState: in.ToCVSSPrivilegesRequiredPtrOutputWithContext(ctx).OutputState, - } -} - // Defined in CVSS v3 type CVSSScope string @@ -1823,12 +1768,6 @@ func (in *cvssscopePtr) ToCVSSScopePtrOutputWithContext(ctx context.Context) CVS return pulumi.ToOutputWithContext(ctx, in).(CVSSScopePtrOutput) } -func (in *cvssscopePtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSScope] { - return pulumix.Output[*CVSSScope]{ - OutputState: in.ToCVSSScopePtrOutputWithContext(ctx).OutputState, - } -} - // Defined in CVSS v3 type CVSSUserInteraction string @@ -2000,12 +1939,6 @@ func (in *cvssuserInteractionPtr) ToCVSSUserInteractionPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(CVSSUserInteractionPtrOutput) } -func (in *cvssuserInteractionPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSUserInteraction] { - return pulumix.Output[*CVSSUserInteraction]{ - OutputState: in.ToCVSSUserInteractionPtrOutputWithContext(ctx).OutputState, - } -} - // The severity level of this CIS benchmark check. type CisBenchmarkSeverity string @@ -2186,12 +2119,6 @@ func (in *cisBenchmarkSeverityPtr) ToCisBenchmarkSeverityPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(CisBenchmarkSeverityPtrOutput) } -func (in *cisBenchmarkSeverityPtr) ToOutput(ctx context.Context) pulumix.Output[*CisBenchmarkSeverity] { - return pulumix.Output[*CisBenchmarkSeverity]{ - OutputState: in.ToCisBenchmarkSeverityPtrOutputWithContext(ctx).OutputState, - } -} - // Platform hosting this deployment. type DeploymentPlatform string @@ -2366,12 +2293,6 @@ func (in *deploymentPlatformPtr) ToDeploymentPlatformPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(DeploymentPlatformPtrOutput) } -func (in *deploymentPlatformPtr) ToOutput(ctx context.Context) pulumix.Output[*DeploymentPlatform] { - return pulumix.Output[*DeploymentPlatform]{ - OutputState: in.ToDeploymentPlatformPtrOutputWithContext(ctx).OutputState, - } -} - // The status of discovery for the resource. type DiscoveredAnalysisStatus string @@ -2555,12 +2476,6 @@ func (in *discoveredAnalysisStatusPtr) ToDiscoveredAnalysisStatusPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(DiscoveredAnalysisStatusPtrOutput) } -func (in *discoveredAnalysisStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*DiscoveredAnalysisStatus] { - return pulumix.Output[*DiscoveredAnalysisStatus]{ - OutputState: in.ToDiscoveredAnalysisStatusPtrOutputWithContext(ctx).OutputState, - } -} - // Whether the resource is continuously analyzed. type DiscoveredContinuousAnalysis string @@ -2732,12 +2647,6 @@ func (in *discoveredContinuousAnalysisPtr) ToDiscoveredContinuousAnalysisPtrOutp return pulumi.ToOutputWithContext(ctx, in).(DiscoveredContinuousAnalysisPtrOutput) } -func (in *discoveredContinuousAnalysisPtr) ToOutput(ctx context.Context) pulumix.Output[*DiscoveredContinuousAnalysis] { - return pulumix.Output[*DiscoveredContinuousAnalysis]{ - OutputState: in.ToDiscoveredContinuousAnalysisPtrOutputWithContext(ctx).OutputState, - } -} - // The kind of analysis that is handled by this discovery. type DiscoveryAnalysisKind string @@ -2951,12 +2860,6 @@ func (in *discoveryAnalysisKindPtr) ToDiscoveryAnalysisKindPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(DiscoveryAnalysisKindPtrOutput) } -func (in *discoveryAnalysisKindPtr) ToOutput(ctx context.Context) pulumix.Output[*DiscoveryAnalysisKind] { - return pulumix.Output[*DiscoveryAnalysisKind]{ - OutputState: in.ToDiscoveryAnalysisKindPtrOutputWithContext(ctx).OutputState, - } -} - // The CPU architecture for which packages in this distribution channel were built type DistributionArchitecture string @@ -3128,12 +3031,6 @@ func (in *distributionArchitecturePtr) ToDistributionArchitecturePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(DistributionArchitecturePtrOutput) } -func (in *distributionArchitecturePtr) ToOutput(ctx context.Context) pulumix.Output[*DistributionArchitecture] { - return pulumix.Output[*DistributionArchitecture]{ - OutputState: in.ToDistributionArchitecturePtrOutputWithContext(ctx).OutputState, - } -} - // An External Reference allows a Package to reference an external source of additional information, metadata, enumerations, asset identifiers, or downloadable content believed to be relevant to the Package type ExternalRefCategory string @@ -3311,12 +3208,6 @@ func (in *externalRefCategoryPtr) ToExternalRefCategoryPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(ExternalRefCategoryPtrOutput) } -func (in *externalRefCategoryPtr) ToOutput(ctx context.Context) pulumix.Output[*ExternalRefCategory] { - return pulumix.Output[*ExternalRefCategory]{ - OutputState: in.ToExternalRefCategoryPtrOutputWithContext(ctx).OutputState, - } -} - // This field provides information about the type of file identified type FileNoteFileType string @@ -3515,12 +3406,6 @@ func (in *fileNoteFileTypePtr) ToFileNoteFileTypePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(FileNoteFileTypePtrOutput) } -func (in *fileNoteFileTypePtr) ToOutput(ctx context.Context) pulumix.Output[*FileNoteFileType] { - return pulumix.Output[*FileNoteFileType]{ - OutputState: in.ToFileNoteFileTypePtrOutputWithContext(ctx).OutputState, - } -} - // The alias kind. type GoogleDevtoolsContaineranalysisV1alpha1AliasContextKind string @@ -3695,12 +3580,6 @@ func (in *googleDevtoolsContaineranalysisV1alpha1AliasContextKindPtr) ToGoogleDe return pulumi.ToOutputWithContext(ctx, in).(GoogleDevtoolsContaineranalysisV1alpha1AliasContextKindPtrOutput) } -func (in *googleDevtoolsContaineranalysisV1alpha1AliasContextKindPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleDevtoolsContaineranalysisV1alpha1AliasContextKind] { - return pulumix.Output[*GoogleDevtoolsContaineranalysisV1alpha1AliasContextKind]{ - OutputState: in.ToGoogleDevtoolsContaineranalysisV1alpha1AliasContextKindPtrOutputWithContext(ctx).OutputState, - } -} - // The type of hash that was performed. type HashType string @@ -3869,12 +3748,6 @@ func (in *hashTypePtr) ToHashTypePtrOutputWithContext(ctx context.Context) HashT return pulumi.ToOutputWithContext(ctx, in).(HashTypePtrOutput) } -func (in *hashTypePtr) ToOutput(ctx context.Context) pulumix.Output[*HashType] { - return pulumix.Output[*HashType]{ - OutputState: in.ToHashTypePtrOutputWithContext(ctx).OutputState, - } -} - // The field that is set in the API proto. type IdentifierHelperField string @@ -4043,12 +3916,6 @@ func (in *identifierHelperFieldPtr) ToIdentifierHelperFieldPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(IdentifierHelperFieldPtrOutput) } -func (in *identifierHelperFieldPtr) ToOutput(ctx context.Context) pulumix.Output[*IdentifierHelperField] { - return pulumix.Output[*IdentifierHelperField]{ - OutputState: in.ToIdentifierHelperFieldPtrOutputWithContext(ctx).OutputState, - } -} - // The justification type for this vulnerability. type JustificationJustificationType string @@ -4229,12 +4096,6 @@ func (in *justificationJustificationTypePtr) ToJustificationJustificationTypePtr return pulumi.ToOutputWithContext(ctx, in).(JustificationJustificationTypePtrOutput) } -func (in *justificationJustificationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*JustificationJustificationType] { - return pulumix.Output[*JustificationJustificationType]{ - OutputState: in.ToJustificationJustificationTypePtrOutputWithContext(ctx).OutputState, - } -} - // The recovered Dockerfile directive used to construct this layer. type LayerDirective string @@ -4451,12 +4312,6 @@ func (in *layerDirectivePtr) ToLayerDirectivePtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(LayerDirectivePtrOutput) } -func (in *layerDirectivePtr) ToOutput(ctx context.Context) pulumix.Output[*LayerDirective] { - return pulumix.Output[*LayerDirective]{ - OutputState: in.ToLayerDirectivePtrOutputWithContext(ctx).OutputState, - } -} - // The CPU architecture for which packages in this distribution channel were built. Architecture will be blank for language packages. type PackageArchitecture string @@ -4628,12 +4483,6 @@ func (in *packageArchitecturePtr) ToPackageArchitecturePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(PackageArchitecturePtrOutput) } -func (in *packageArchitecturePtr) ToOutput(ctx context.Context) pulumix.Output[*PackageArchitecture] { - return pulumix.Output[*PackageArchitecture]{ - OutputState: in.ToPackageArchitecturePtrOutputWithContext(ctx).OutputState, - } -} - // Type (for example schema) of the attestation payload that was signed. The verifier must ensure that the provided type is one that the verifier supports, and that the attestation payload is a valid instantiation of that type (for example by validating a JSON schema). type PgpSignedAttestationContentType string @@ -4802,12 +4651,6 @@ func (in *pgpSignedAttestationContentTypePtr) ToPgpSignedAttestationContentTypeP return pulumi.ToOutputWithContext(ctx, in).(PgpSignedAttestationContentTypePtrOutput) } -func (in *pgpSignedAttestationContentTypePtr) ToOutput(ctx context.Context) pulumix.Output[*PgpSignedAttestationContentType] { - return pulumix.Output[*PgpSignedAttestationContentType]{ - OutputState: in.ToPgpSignedAttestationContentTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of relationship between the source and target SPDX elements type RelationshipNoteType string @@ -5102,12 +4945,6 @@ func (in *relationshipNoteTypePtr) ToRelationshipNoteTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(RelationshipNoteTypePtrOutput) } -func (in *relationshipNoteTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RelationshipNoteType] { - return pulumix.Output[*RelationshipNoteType]{ - OutputState: in.ToRelationshipNoteTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of remediation that can be applied. type RemediationRemediationType string @@ -5288,12 +5125,6 @@ func (in *remediationRemediationTypePtr) ToRemediationRemediationTypePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(RemediationRemediationTypePtrOutput) } -func (in *remediationRemediationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RemediationRemediationType] { - return pulumix.Output[*RemediationRemediationType]{ - OutputState: in.ToRemediationRemediationTypePtrOutputWithContext(ctx).OutputState, - } -} - // Distinguish between sentinel MIN/MAX versions and normal versions. If kind is not NORMAL, then the other fields are ignored. type VersionKind string @@ -5465,12 +5296,6 @@ func (in *versionKindPtr) ToVersionKindPtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(VersionKindPtrOutput) } -func (in *versionKindPtr) ToOutput(ctx context.Context) pulumix.Output[*VersionKind] { - return pulumix.Output[*VersionKind]{ - OutputState: in.ToVersionKindPtrOutputWithContext(ctx).OutputState, - } -} - // Provides the state of this Vulnerability assessment. type VexAssessmentState string @@ -5648,12 +5473,6 @@ func (in *vexAssessmentStatePtr) ToVexAssessmentStatePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(VexAssessmentStatePtrOutput) } -func (in *vexAssessmentStatePtr) ToOutput(ctx context.Context) pulumix.Output[*VexAssessmentState] { - return pulumix.Output[*VexAssessmentState]{ - OutputState: in.ToVexAssessmentStatePtrOutputWithContext(ctx).OutputState, - } -} - // The distro assigned severity for this vulnerability when that is available and note provider assigned severity when distro has not yet assigned a severity for this vulnerability. When there are multiple package issues for this vulnerability, they can have different effective severities because some might come from the distro and some might come from installed language packs (e.g. Maven JARs or Go binaries). For this reason, it is advised to use the effective severity on the PackageIssue level, as this field may eventually be deprecated. In the case where multiple PackageIssues have different effective severities, the one set here will be the highest severity of any of the PackageIssues. type VulnerabilityDetailsEffectiveSeverity string @@ -5834,12 +5653,6 @@ func (in *vulnerabilityDetailsEffectiveSeverityPtr) ToVulnerabilityDetailsEffect return pulumi.ToOutputWithContext(ctx, in).(VulnerabilityDetailsEffectiveSeverityPtrOutput) } -func (in *vulnerabilityDetailsEffectiveSeverityPtr) ToOutput(ctx context.Context) pulumix.Output[*VulnerabilityDetailsEffectiveSeverity] { - return pulumix.Output[*VulnerabilityDetailsEffectiveSeverity]{ - OutputState: in.ToVulnerabilityDetailsEffectiveSeverityPtrOutputWithContext(ctx).OutputState, - } -} - // CVSS version used to populate cvss_score and severity. type VulnerabilityTypeCvssVersion string @@ -6011,12 +5824,6 @@ func (in *vulnerabilityTypeCvssVersionPtr) ToVulnerabilityTypeCvssVersionPtrOutp return pulumi.ToOutputWithContext(ctx, in).(VulnerabilityTypeCvssVersionPtrOutput) } -func (in *vulnerabilityTypeCvssVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*VulnerabilityTypeCvssVersion] { - return pulumix.Output[*VulnerabilityTypeCvssVersion]{ - OutputState: in.ToVulnerabilityTypeCvssVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Note provider assigned impact of the vulnerability type VulnerabilityTypeSeverity string @@ -6197,12 +6004,6 @@ func (in *vulnerabilityTypeSeverityPtr) ToVulnerabilityTypeSeverityPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(VulnerabilityTypeSeverityPtrOutput) } -func (in *vulnerabilityTypeSeverityPtr) ToOutput(ctx context.Context) pulumix.Output[*VulnerabilityTypeSeverity] { - return pulumix.Output[*VulnerabilityTypeSeverity]{ - OutputState: in.ToVulnerabilityTypeSeverityPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AssessmentStateInput)(nil)).Elem(), AssessmentState("STATE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AssessmentStatePtrInput)(nil)).Elem(), AssessmentState("STATE_UNSPECIFIED")) diff --git a/sdk/go/google/containeranalysis/v1beta1/pulumiEnums.go b/sdk/go/google/containeranalysis/v1beta1/pulumiEnums.go index d00a8db512..ea1b762a94 100644 --- a/sdk/go/google/containeranalysis/v1beta1/pulumiEnums.go +++ b/sdk/go/google/containeranalysis/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The alias kind. @@ -185,12 +184,6 @@ func (in *aliasContextKindPtr) ToAliasContextKindPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(AliasContextKindPtrOutput) } -func (in *aliasContextKindPtr) ToOutput(ctx context.Context) pulumix.Output[*AliasContextKind] { - return pulumix.Output[*AliasContextKind]{ - OutputState: in.ToAliasContextKindPtrOutputWithContext(ctx).OutputState, - } -} - // Provides the state of this Vulnerability assessment. type AssessmentState string @@ -368,12 +361,6 @@ func (in *assessmentStatePtr) ToAssessmentStatePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(AssessmentStatePtrOutput) } -func (in *assessmentStatePtr) ToOutput(ctx context.Context) pulumix.Output[*AssessmentState] { - return pulumix.Output[*AssessmentState]{ - OutputState: in.ToAssessmentStatePtrOutputWithContext(ctx).OutputState, - } -} - // The type of the key, either stored in `public_key` or referenced in `key_id`. type BuildSignatureKeyType string @@ -545,12 +532,6 @@ func (in *buildSignatureKeyTypePtr) ToBuildSignatureKeyTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(BuildSignatureKeyTypePtrOutput) } -func (in *buildSignatureKeyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*BuildSignatureKeyType] { - return pulumix.Output[*BuildSignatureKeyType]{ - OutputState: in.ToBuildSignatureKeyTypePtrOutputWithContext(ctx).OutputState, - } -} - // Defined in CVSS v3, CVSS v2 type CVSSAttackComplexity string @@ -725,12 +706,6 @@ func (in *cvssattackComplexityPtr) ToCVSSAttackComplexityPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(CVSSAttackComplexityPtrOutput) } -func (in *cvssattackComplexityPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSAttackComplexity] { - return pulumix.Output[*CVSSAttackComplexity]{ - OutputState: in.ToCVSSAttackComplexityPtrOutputWithContext(ctx).OutputState, - } -} - // Base Metrics Represents the intrinsic characteristics of a vulnerability that are constant over time and across user environments. Defined in CVSS v3, CVSS v2 type CVSSAttackVector string @@ -908,12 +883,6 @@ func (in *cvssattackVectorPtr) ToCVSSAttackVectorPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(CVSSAttackVectorPtrOutput) } -func (in *cvssattackVectorPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSAttackVector] { - return pulumix.Output[*CVSSAttackVector]{ - OutputState: in.ToCVSSAttackVectorPtrOutputWithContext(ctx).OutputState, - } -} - // Defined in CVSS v2 type CVSSAuthentication string @@ -1088,12 +1057,6 @@ func (in *cvssauthenticationPtr) ToCVSSAuthenticationPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(CVSSAuthenticationPtrOutput) } -func (in *cvssauthenticationPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSAuthentication] { - return pulumix.Output[*CVSSAuthentication]{ - OutputState: in.ToCVSSAuthenticationPtrOutputWithContext(ctx).OutputState, - } -} - // Defined in CVSS v3, CVSS v2 type CVSSAvailabilityImpact string @@ -1274,12 +1237,6 @@ func (in *cvssavailabilityImpactPtr) ToCVSSAvailabilityImpactPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(CVSSAvailabilityImpactPtrOutput) } -func (in *cvssavailabilityImpactPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSAvailabilityImpact] { - return pulumix.Output[*CVSSAvailabilityImpact]{ - OutputState: in.ToCVSSAvailabilityImpactPtrOutputWithContext(ctx).OutputState, - } -} - // Defined in CVSS v3, CVSS v2 type CVSSConfidentialityImpact string @@ -1460,12 +1417,6 @@ func (in *cvssconfidentialityImpactPtr) ToCVSSConfidentialityImpactPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(CVSSConfidentialityImpactPtrOutput) } -func (in *cvssconfidentialityImpactPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSConfidentialityImpact] { - return pulumix.Output[*CVSSConfidentialityImpact]{ - OutputState: in.ToCVSSConfidentialityImpactPtrOutputWithContext(ctx).OutputState, - } -} - // Defined in CVSS v3, CVSS v2 type CVSSIntegrityImpact string @@ -1646,12 +1597,6 @@ func (in *cvssintegrityImpactPtr) ToCVSSIntegrityImpactPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(CVSSIntegrityImpactPtrOutput) } -func (in *cvssintegrityImpactPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSIntegrityImpact] { - return pulumix.Output[*CVSSIntegrityImpact]{ - OutputState: in.ToCVSSIntegrityImpactPtrOutputWithContext(ctx).OutputState, - } -} - // Defined in CVSS v3 type CVSSPrivilegesRequired string @@ -1826,12 +1771,6 @@ func (in *cvssprivilegesRequiredPtr) ToCVSSPrivilegesRequiredPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(CVSSPrivilegesRequiredPtrOutput) } -func (in *cvssprivilegesRequiredPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSPrivilegesRequired] { - return pulumix.Output[*CVSSPrivilegesRequired]{ - OutputState: in.ToCVSSPrivilegesRequiredPtrOutputWithContext(ctx).OutputState, - } -} - // Defined in CVSS v3 type CVSSScope string @@ -2003,12 +1942,6 @@ func (in *cvssscopePtr) ToCVSSScopePtrOutputWithContext(ctx context.Context) CVS return pulumi.ToOutputWithContext(ctx, in).(CVSSScopePtrOutput) } -func (in *cvssscopePtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSScope] { - return pulumix.Output[*CVSSScope]{ - OutputState: in.ToCVSSScopePtrOutputWithContext(ctx).OutputState, - } -} - // Defined in CVSS v3 type CVSSUserInteraction string @@ -2180,12 +2113,6 @@ func (in *cvssuserInteractionPtr) ToCVSSUserInteractionPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(CVSSUserInteractionPtrOutput) } -func (in *cvssuserInteractionPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSUserInteraction] { - return pulumix.Output[*CVSSUserInteraction]{ - OutputState: in.ToCVSSUserInteractionPtrOutputWithContext(ctx).OutputState, - } -} - type CVSSv3AttackComplexity string const ( @@ -2353,12 +2280,6 @@ func (in *cvssv3AttackComplexityPtr) ToCVSSv3AttackComplexityPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(CVSSv3AttackComplexityPtrOutput) } -func (in *cvssv3AttackComplexityPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSv3AttackComplexity] { - return pulumix.Output[*CVSSv3AttackComplexity]{ - OutputState: in.ToCVSSv3AttackComplexityPtrOutputWithContext(ctx).OutputState, - } -} - // Base Metrics Represents the intrinsic characteristics of a vulnerability that are constant over time and across user environments. type CVSSv3AttackVector string @@ -2531,12 +2452,6 @@ func (in *cvssv3AttackVectorPtr) ToCVSSv3AttackVectorPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(CVSSv3AttackVectorPtrOutput) } -func (in *cvssv3AttackVectorPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSv3AttackVector] { - return pulumix.Output[*CVSSv3AttackVector]{ - OutputState: in.ToCVSSv3AttackVectorPtrOutputWithContext(ctx).OutputState, - } -} - type CVSSv3AvailabilityImpact string const ( @@ -2706,12 +2621,6 @@ func (in *cvssv3AvailabilityImpactPtr) ToCVSSv3AvailabilityImpactPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(CVSSv3AvailabilityImpactPtrOutput) } -func (in *cvssv3AvailabilityImpactPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSv3AvailabilityImpact] { - return pulumix.Output[*CVSSv3AvailabilityImpact]{ - OutputState: in.ToCVSSv3AvailabilityImpactPtrOutputWithContext(ctx).OutputState, - } -} - type CVSSv3ConfidentialityImpact string const ( @@ -2881,12 +2790,6 @@ func (in *cvssv3ConfidentialityImpactPtr) ToCVSSv3ConfidentialityImpactPtrOutput return pulumi.ToOutputWithContext(ctx, in).(CVSSv3ConfidentialityImpactPtrOutput) } -func (in *cvssv3ConfidentialityImpactPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSv3ConfidentialityImpact] { - return pulumix.Output[*CVSSv3ConfidentialityImpact]{ - OutputState: in.ToCVSSv3ConfidentialityImpactPtrOutputWithContext(ctx).OutputState, - } -} - type CVSSv3IntegrityImpact string const ( @@ -3056,12 +2959,6 @@ func (in *cvssv3IntegrityImpactPtr) ToCVSSv3IntegrityImpactPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(CVSSv3IntegrityImpactPtrOutput) } -func (in *cvssv3IntegrityImpactPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSv3IntegrityImpact] { - return pulumix.Output[*CVSSv3IntegrityImpact]{ - OutputState: in.ToCVSSv3IntegrityImpactPtrOutputWithContext(ctx).OutputState, - } -} - type CVSSv3PrivilegesRequired string const ( @@ -3231,12 +3128,6 @@ func (in *cvssv3PrivilegesRequiredPtr) ToCVSSv3PrivilegesRequiredPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(CVSSv3PrivilegesRequiredPtrOutput) } -func (in *cvssv3PrivilegesRequiredPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSv3PrivilegesRequired] { - return pulumix.Output[*CVSSv3PrivilegesRequired]{ - OutputState: in.ToCVSSv3PrivilegesRequiredPtrOutputWithContext(ctx).OutputState, - } -} - type CVSSv3Scope string const ( @@ -3404,12 +3295,6 @@ func (in *cvssv3ScopePtr) ToCVSSv3ScopePtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(CVSSv3ScopePtrOutput) } -func (in *cvssv3ScopePtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSv3Scope] { - return pulumix.Output[*CVSSv3Scope]{ - OutputState: in.ToCVSSv3ScopePtrOutputWithContext(ctx).OutputState, - } -} - type CVSSv3UserInteraction string const ( @@ -3577,12 +3462,6 @@ func (in *cvssv3UserInteractionPtr) ToCVSSv3UserInteractionPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(CVSSv3UserInteractionPtrOutput) } -func (in *cvssv3UserInteractionPtr) ToOutput(ctx context.Context) pulumix.Output[*CVSSv3UserInteraction] { - return pulumix.Output[*CVSSv3UserInteraction]{ - OutputState: in.ToCVSSv3UserInteractionPtrOutputWithContext(ctx).OutputState, - } -} - // Platform hosting this deployment. type DeploymentPlatform string @@ -3757,12 +3636,6 @@ func (in *deploymentPlatformPtr) ToDeploymentPlatformPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(DeploymentPlatformPtrOutput) } -func (in *deploymentPlatformPtr) ToOutput(ctx context.Context) pulumix.Output[*DeploymentPlatform] { - return pulumix.Output[*DeploymentPlatform]{ - OutputState: in.ToDeploymentPlatformPtrOutputWithContext(ctx).OutputState, - } -} - // The status of discovery for the resource. type DiscoveredAnalysisStatus string @@ -3946,12 +3819,6 @@ func (in *discoveredAnalysisStatusPtr) ToDiscoveredAnalysisStatusPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(DiscoveredAnalysisStatusPtrOutput) } -func (in *discoveredAnalysisStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*DiscoveredAnalysisStatus] { - return pulumix.Output[*DiscoveredAnalysisStatus]{ - OutputState: in.ToDiscoveredAnalysisStatusPtrOutputWithContext(ctx).OutputState, - } -} - // Whether the resource is continuously analyzed. type DiscoveredContinuousAnalysis string @@ -4123,12 +3990,6 @@ func (in *discoveredContinuousAnalysisPtr) ToDiscoveredContinuousAnalysisPtrOutp return pulumi.ToOutputWithContext(ctx, in).(DiscoveredContinuousAnalysisPtrOutput) } -func (in *discoveredContinuousAnalysisPtr) ToOutput(ctx context.Context) pulumix.Output[*DiscoveredContinuousAnalysis] { - return pulumix.Output[*DiscoveredContinuousAnalysis]{ - OutputState: in.ToDiscoveredContinuousAnalysisPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Immutable. The kind of analysis that is handled by this discovery. type DiscoveryAnalysisKind string @@ -4336,12 +4197,6 @@ func (in *discoveryAnalysisKindPtr) ToDiscoveryAnalysisKindPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(DiscoveryAnalysisKindPtrOutput) } -func (in *discoveryAnalysisKindPtr) ToOutput(ctx context.Context) pulumix.Output[*DiscoveryAnalysisKind] { - return pulumix.Output[*DiscoveryAnalysisKind]{ - OutputState: in.ToDiscoveryAnalysisKindPtrOutputWithContext(ctx).OutputState, - } -} - // The CPU architecture for which packages in this distribution channel were built. type DistributionArchitecture string @@ -4513,12 +4368,6 @@ func (in *distributionArchitecturePtr) ToDistributionArchitecturePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(DistributionArchitecturePtrOutput) } -func (in *distributionArchitecturePtr) ToOutput(ctx context.Context) pulumix.Output[*DistributionArchitecture] { - return pulumix.Output[*DistributionArchitecture]{ - OutputState: in.ToDistributionArchitecturePtrOutputWithContext(ctx).OutputState, - } -} - // An External Reference allows a Package to reference an external source of additional information, metadata, enumerations, asset identifiers, or downloadable content believed to be relevant to the Package type ExternalRefCategory string @@ -4696,12 +4545,6 @@ func (in *externalRefCategoryPtr) ToExternalRefCategoryPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(ExternalRefCategoryPtrOutput) } -func (in *externalRefCategoryPtr) ToOutput(ctx context.Context) pulumix.Output[*ExternalRefCategory] { - return pulumix.Output[*ExternalRefCategory]{ - OutputState: in.ToExternalRefCategoryPtrOutputWithContext(ctx).OutputState, - } -} - // This field provides information about the type of file identified type FileNoteFileType string @@ -4900,12 +4743,6 @@ func (in *fileNoteFileTypePtr) ToFileNoteFileTypePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(FileNoteFileTypePtrOutput) } -func (in *fileNoteFileTypePtr) ToOutput(ctx context.Context) pulumix.Output[*FileNoteFileType] { - return pulumix.Output[*FileNoteFileType]{ - OutputState: in.ToFileNoteFileTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type (for example schema) of the attestation payload that was signed. The verifier must ensure that the provided type is one that the verifier supports, and that the attestation payload is a valid instantiation of that type (for example by validating a JSON schema). type GenericSignedAttestationContentType string @@ -5074,12 +4911,6 @@ func (in *genericSignedAttestationContentTypePtr) ToGenericSignedAttestationCont return pulumi.ToOutputWithContext(ctx, in).(GenericSignedAttestationContentTypePtrOutput) } -func (in *genericSignedAttestationContentTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GenericSignedAttestationContentType] { - return pulumix.Output[*GenericSignedAttestationContentType]{ - OutputState: in.ToGenericSignedAttestationContentTypePtrOutputWithContext(ctx).OutputState, - } -} - // The distro assigned severity for this vulnerability when it is available, and note provider assigned severity when distro has not yet assigned a severity for this vulnerability. When there are multiple PackageIssues for this vulnerability, they can have different effective severities because some might be provided by the distro while others are provided by the language ecosystem for a language pack. For this reason, it is advised to use the effective severity on the PackageIssue level. In the case where multiple PackageIssues have differing effective severities, this field should be the highest severity for any of the PackageIssues. type GrafeasV1beta1VulnerabilityDetailsEffectiveSeverity string @@ -5260,12 +5091,6 @@ func (in *grafeasV1beta1VulnerabilityDetailsEffectiveSeverityPtr) ToGrafeasV1bet return pulumi.ToOutputWithContext(ctx, in).(GrafeasV1beta1VulnerabilityDetailsEffectiveSeverityPtrOutput) } -func (in *grafeasV1beta1VulnerabilityDetailsEffectiveSeverityPtr) ToOutput(ctx context.Context) pulumix.Output[*GrafeasV1beta1VulnerabilityDetailsEffectiveSeverity] { - return pulumix.Output[*GrafeasV1beta1VulnerabilityDetailsEffectiveSeverity]{ - OutputState: in.ToGrafeasV1beta1VulnerabilityDetailsEffectiveSeverityPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of hash that was performed. type HashType string @@ -5440,12 +5265,6 @@ func (in *hashTypePtr) ToHashTypePtrOutputWithContext(ctx context.Context) HashT return pulumi.ToOutputWithContext(ctx, in).(HashTypePtrOutput) } -func (in *hashTypePtr) ToOutput(ctx context.Context) pulumix.Output[*HashType] { - return pulumix.Output[*HashType]{ - OutputState: in.ToHashTypePtrOutputWithContext(ctx).OutputState, - } -} - // The justification type for this vulnerability. type JustificationJustificationType string @@ -5626,12 +5445,6 @@ func (in *justificationJustificationTypePtr) ToJustificationJustificationTypePtr return pulumi.ToOutputWithContext(ctx, in).(JustificationJustificationTypePtrOutput) } -func (in *justificationJustificationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*JustificationJustificationType] { - return pulumix.Output[*JustificationJustificationType]{ - OutputState: in.ToJustificationJustificationTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The recovered Dockerfile directive used to construct this layer. type LayerDirective string @@ -5848,12 +5661,6 @@ func (in *layerDirectivePtr) ToLayerDirectivePtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(LayerDirectivePtrOutput) } -func (in *layerDirectivePtr) ToOutput(ctx context.Context) pulumix.Output[*LayerDirective] { - return pulumix.Output[*LayerDirective]{ - OutputState: in.ToLayerDirectivePtrOutputWithContext(ctx).OutputState, - } -} - // The CPU architecture for which packages in this distribution channel were built. Architecture will be blank for language packages. type PackageArchitecture string @@ -6025,12 +5832,6 @@ func (in *packageArchitecturePtr) ToPackageArchitecturePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(PackageArchitecturePtrOutput) } -func (in *packageArchitecturePtr) ToOutput(ctx context.Context) pulumix.Output[*PackageArchitecture] { - return pulumix.Output[*PackageArchitecture]{ - OutputState: in.ToPackageArchitecturePtrOutputWithContext(ctx).OutputState, - } -} - // Type (for example schema) of the attestation payload that was signed. The verifier must ensure that the provided type is one that the verifier supports, and that the attestation payload is a valid instantiation of that type (for example by validating a JSON schema). type PgpSignedAttestationContentType string @@ -6199,12 +6000,6 @@ func (in *pgpSignedAttestationContentTypePtr) ToPgpSignedAttestationContentTypeP return pulumi.ToOutputWithContext(ctx, in).(PgpSignedAttestationContentTypePtrOutput) } -func (in *pgpSignedAttestationContentTypePtr) ToOutput(ctx context.Context) pulumix.Output[*PgpSignedAttestationContentType] { - return pulumix.Output[*PgpSignedAttestationContentType]{ - OutputState: in.ToPgpSignedAttestationContentTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of relationship between the source and target SPDX elements type RelationshipNoteType string @@ -6499,12 +6294,6 @@ func (in *relationshipNoteTypePtr) ToRelationshipNoteTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(RelationshipNoteTypePtrOutput) } -func (in *relationshipNoteTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RelationshipNoteType] { - return pulumix.Output[*RelationshipNoteType]{ - OutputState: in.ToRelationshipNoteTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of remediation that can be applied. type RemediationRemediationType string @@ -6685,12 +6474,6 @@ func (in *remediationRemediationTypePtr) ToRemediationRemediationTypePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(RemediationRemediationTypePtrOutput) } -func (in *remediationRemediationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RemediationRemediationType] { - return pulumix.Output[*RemediationRemediationType]{ - OutputState: in.ToRemediationRemediationTypePtrOutputWithContext(ctx).OutputState, - } -} - // The progress of the SBOM generation. type SBOMStatusSbomState string @@ -6862,12 +6645,6 @@ func (in *sbomstatusSbomStatePtr) ToSBOMStatusSbomStatePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(SBOMStatusSbomStatePtrOutput) } -func (in *sbomstatusSbomStatePtr) ToOutput(ctx context.Context) pulumix.Output[*SBOMStatusSbomState] { - return pulumix.Output[*SBOMStatusSbomState]{ - OutputState: in.ToSBOMStatusSbomStatePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Distinguishes between sentinel MIN/MAX versions and normal versions. type VersionKind string @@ -7042,12 +6819,6 @@ func (in *versionKindPtr) ToVersionKindPtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(VersionKindPtrOutput) } -func (in *versionKindPtr) ToOutput(ctx context.Context) pulumix.Output[*VersionKind] { - return pulumix.Output[*VersionKind]{ - OutputState: in.ToVersionKindPtrOutputWithContext(ctx).OutputState, - } -} - // Provides the state of this Vulnerability assessment. type VexAssessmentState string @@ -7225,12 +6996,6 @@ func (in *vexAssessmentStatePtr) ToVexAssessmentStatePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(VexAssessmentStatePtrOutput) } -func (in *vexAssessmentStatePtr) ToOutput(ctx context.Context) pulumix.Output[*VexAssessmentState] { - return pulumix.Output[*VexAssessmentState]{ - OutputState: in.ToVexAssessmentStatePtrOutputWithContext(ctx).OutputState, - } -} - // CVSS version used to populate cvss_score and severity. type VulnerabilityCvssVersion string @@ -7399,12 +7164,6 @@ func (in *vulnerabilityCvssVersionPtr) ToVulnerabilityCvssVersionPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(VulnerabilityCvssVersionPtrOutput) } -func (in *vulnerabilityCvssVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*VulnerabilityCvssVersion] { - return pulumix.Output[*VulnerabilityCvssVersion]{ - OutputState: in.ToVulnerabilityCvssVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Note provider assigned impact of the vulnerability. type VulnerabilitySeverity string @@ -7585,12 +7344,6 @@ func (in *vulnerabilitySeverityPtr) ToVulnerabilitySeverityPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(VulnerabilitySeverityPtrOutput) } -func (in *vulnerabilitySeverityPtr) ToOutput(ctx context.Context) pulumix.Output[*VulnerabilitySeverity] { - return pulumix.Output[*VulnerabilitySeverity]{ - OutputState: in.ToVulnerabilitySeverityPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AliasContextKindInput)(nil)).Elem(), AliasContextKind("KIND_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AliasContextKindPtrInput)(nil)).Elem(), AliasContextKind("KIND_UNSPECIFIED")) diff --git a/sdk/go/google/contentwarehouse/v1/pulumiEnums.go b/sdk/go/google/contentwarehouse/v1/pulumiEnums.go index 850008745a..3257325cf1 100644 --- a/sdk/go/google/contentwarehouse/v1/pulumiEnums.go +++ b/sdk/go/google/contentwarehouse/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Indicates the category (image, audio, video etc.) of the original content. @@ -185,12 +184,6 @@ func (in *documentContentCategoryPtr) ToDocumentContentCategoryPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(DocumentContentCategoryPtrOutput) } -func (in *documentContentCategoryPtr) ToOutput(ctx context.Context) pulumix.Output[*DocumentContentCategory] { - return pulumix.Output[*DocumentContentCategory]{ - OutputState: in.ToDocumentContentCategoryPtrOutputWithContext(ctx).OutputState, - } -} - // This is used when DocAI was not used to load the document and parsing/ extracting is needed for the inline_raw_document. For example, if inline_raw_document is the byte representation of a PDF file, then this should be set to: RAW_DOCUMENT_FILE_TYPE_PDF. type DocumentRawDocumentFileType string @@ -374,12 +367,6 @@ func (in *documentRawDocumentFileTypePtr) ToDocumentRawDocumentFileTypePtrOutput return pulumi.ToOutputWithContext(ctx, in).(DocumentRawDocumentFileTypePtrOutput) } -func (in *documentRawDocumentFileTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DocumentRawDocumentFileType] { - return pulumix.Output[*DocumentRawDocumentFileType]{ - OutputState: in.ToDocumentRawDocumentFileTypePtrOutputWithContext(ctx).OutputState, - } -} - // Identifies the type of operation. type GoogleCloudContentwarehouseV1AccessControlActionOperationType string @@ -554,12 +541,6 @@ func (in *googleCloudContentwarehouseV1AccessControlActionOperationTypePtr) ToGo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudContentwarehouseV1AccessControlActionOperationTypePtrOutput) } -func (in *googleCloudContentwarehouseV1AccessControlActionOperationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudContentwarehouseV1AccessControlActionOperationType] { - return pulumix.Output[*GoogleCloudContentwarehouseV1AccessControlActionOperationType]{ - OutputState: in.ToGoogleCloudContentwarehouseV1AccessControlActionOperationTypePtrOutputWithContext(ctx).OutputState, - } -} - // The retrieval importance of the property during search. type GoogleCloudContentwarehouseV1PropertyDefinitionRetrievalImportance string @@ -743,12 +724,6 @@ func (in *googleCloudContentwarehouseV1PropertyDefinitionRetrievalImportancePtr) return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudContentwarehouseV1PropertyDefinitionRetrievalImportancePtrOutput) } -func (in *googleCloudContentwarehouseV1PropertyDefinitionRetrievalImportancePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudContentwarehouseV1PropertyDefinitionRetrievalImportance] { - return pulumix.Output[*GoogleCloudContentwarehouseV1PropertyDefinitionRetrievalImportance]{ - OutputState: in.ToGoogleCloudContentwarehouseV1PropertyDefinitionRetrievalImportancePtrOutputWithContext(ctx).OutputState, - } -} - // Identifies the trigger type for running the policy. type GoogleCloudContentwarehouseV1RuleTriggerType string @@ -926,12 +901,6 @@ func (in *googleCloudContentwarehouseV1RuleTriggerTypePtr) ToGoogleCloudContentw return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudContentwarehouseV1RuleTriggerTypePtrOutput) } -func (in *googleCloudContentwarehouseV1RuleTriggerTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudContentwarehouseV1RuleTriggerType] { - return pulumix.Output[*GoogleCloudContentwarehouseV1RuleTriggerType]{ - OutputState: in.ToGoogleCloudContentwarehouseV1RuleTriggerTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type for update. type GoogleCloudContentwarehouseV1UpdateOptionsUpdateType string @@ -1138,12 +1107,6 @@ func (in *googleCloudDocumentaiV1DocumentPageAnchorPageRefLayoutTypePtr) ToGoogl return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDocumentaiV1DocumentPageAnchorPageRefLayoutTypePtrOutput) } -func (in *googleCloudDocumentaiV1DocumentPageAnchorPageRefLayoutTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDocumentaiV1DocumentPageAnchorPageRefLayoutType] { - return pulumix.Output[*GoogleCloudDocumentaiV1DocumentPageAnchorPageRefLayoutType]{ - OutputState: in.ToGoogleCloudDocumentaiV1DocumentPageAnchorPageRefLayoutTypePtrOutputWithContext(ctx).OutputState, - } -} - // Detected orientation for the Layout. type GoogleCloudDocumentaiV1DocumentPageLayoutOrientation string @@ -1321,12 +1284,6 @@ func (in *googleCloudDocumentaiV1DocumentPageLayoutOrientationPtr) ToGoogleCloud return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDocumentaiV1DocumentPageLayoutOrientationPtrOutput) } -func (in *googleCloudDocumentaiV1DocumentPageLayoutOrientationPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDocumentaiV1DocumentPageLayoutOrientation] { - return pulumix.Output[*GoogleCloudDocumentaiV1DocumentPageLayoutOrientation]{ - OutputState: in.ToGoogleCloudDocumentaiV1DocumentPageLayoutOrientationPtrOutputWithContext(ctx).OutputState, - } -} - // Detected break type. type GoogleCloudDocumentaiV1DocumentPageTokenDetectedBreakType string @@ -1501,12 +1458,6 @@ func (in *googleCloudDocumentaiV1DocumentPageTokenDetectedBreakTypePtr) ToGoogle return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDocumentaiV1DocumentPageTokenDetectedBreakTypePtrOutput) } -func (in *googleCloudDocumentaiV1DocumentPageTokenDetectedBreakTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDocumentaiV1DocumentPageTokenDetectedBreakType] { - return pulumix.Output[*GoogleCloudDocumentaiV1DocumentPageTokenDetectedBreakType]{ - OutputState: in.ToGoogleCloudDocumentaiV1DocumentPageTokenDetectedBreakTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of provenance operation. type GoogleCloudDocumentaiV1DocumentProvenanceType string @@ -1693,12 +1644,6 @@ func (in *googleCloudDocumentaiV1DocumentProvenanceTypePtr) ToGoogleCloudDocumen return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDocumentaiV1DocumentProvenanceTypePtrOutput) } -func (in *googleCloudDocumentaiV1DocumentProvenanceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDocumentaiV1DocumentProvenanceType] { - return pulumix.Output[*GoogleCloudDocumentaiV1DocumentProvenanceType]{ - OutputState: in.ToGoogleCloudDocumentaiV1DocumentProvenanceTypePtrOutputWithContext(ctx).OutputState, - } -} - // The log type that this config enables. type GoogleIamV1AuditLogConfigLogType string @@ -1873,12 +1818,6 @@ func (in *googleIamV1AuditLogConfigLogTypePtr) ToGoogleIamV1AuditLogConfigLogTyp return pulumi.ToOutputWithContext(ctx, in).(GoogleIamV1AuditLogConfigLogTypePtrOutput) } -func (in *googleIamV1AuditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleIamV1AuditLogConfigLogType] { - return pulumix.Output[*GoogleIamV1AuditLogConfigLogType]{ - OutputState: in.ToGoogleIamV1AuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*DocumentContentCategoryInput)(nil)).Elem(), DocumentContentCategory("CONTENT_CATEGORY_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*DocumentContentCategoryPtrInput)(nil)).Elem(), DocumentContentCategory("CONTENT_CATEGORY_UNSPECIFIED")) diff --git a/sdk/go/google/datacatalog/v1/pulumiEnums.go b/sdk/go/google/datacatalog/v1/pulumiEnums.go index 568807005d..96c32865b7 100644 --- a/sdk/go/google/datacatalog/v1/pulumiEnums.go +++ b/sdk/go/google/datacatalog/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The type of the entry. For details, see [`EntryType`](#entrytype). @@ -221,12 +220,6 @@ func (in *entryTypePtr) ToEntryTypePtrOutputWithContext(ctx context.Context) Ent return pulumi.ToOutputWithContext(ctx, in).(EntryTypePtrOutput) } -func (in *entryTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EntryType] { - return pulumix.Output[*EntryType]{ - OutputState: in.ToEntryTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Most important inclusion of this column. type GoogleCloudDatacatalogV1ColumnSchemaHighestIndexingType string @@ -404,12 +397,6 @@ func (in *googleCloudDatacatalogV1ColumnSchemaHighestIndexingTypePtr) ToGoogleCl return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDatacatalogV1ColumnSchemaHighestIndexingTypePtrOutput) } -func (in *googleCloudDatacatalogV1ColumnSchemaHighestIndexingTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDatacatalogV1ColumnSchemaHighestIndexingType] { - return pulumix.Output[*GoogleCloudDatacatalogV1ColumnSchemaHighestIndexingType]{ - OutputState: in.ToGoogleCloudDatacatalogV1ColumnSchemaHighestIndexingTypePtrOutputWithContext(ctx).OutputState, - } -} - // Looker specific column type of this column. type GoogleCloudDatacatalogV1ColumnSchemaLookerColumnSpecType string @@ -590,12 +577,6 @@ func (in *googleCloudDatacatalogV1ColumnSchemaLookerColumnSpecTypePtr) ToGoogleC return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDatacatalogV1ColumnSchemaLookerColumnSpecTypePtrOutput) } -func (in *googleCloudDatacatalogV1ColumnSchemaLookerColumnSpecTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDatacatalogV1ColumnSchemaLookerColumnSpecType] { - return pulumix.Output[*GoogleCloudDatacatalogV1ColumnSchemaLookerColumnSpecType]{ - OutputState: in.ToGoogleCloudDatacatalogV1ColumnSchemaLookerColumnSpecTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of this view. type GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpecViewType string @@ -767,12 +748,6 @@ func (in *googleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpecViewTypePtr) return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpecViewTypePtrOutput) } -func (in *googleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpecViewTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpecViewType] { - return pulumix.Output[*GoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpecViewType]{ - OutputState: in.ToGoogleCloudDatacatalogV1DatabaseTableSpecDatabaseViewSpecViewTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of this table. type GoogleCloudDatacatalogV1DatabaseTableSpecType string @@ -944,12 +919,6 @@ func (in *googleCloudDatacatalogV1DatabaseTableSpecTypePtr) ToGoogleCloudDatacat return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDatacatalogV1DatabaseTableSpecTypePtrOutput) } -func (in *googleCloudDatacatalogV1DatabaseTableSpecTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDatacatalogV1DatabaseTableSpecType] { - return pulumix.Output[*GoogleCloudDatacatalogV1DatabaseTableSpecType]{ - OutputState: in.ToGoogleCloudDatacatalogV1DatabaseTableSpecTypePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies whether the argument is input or output. type GoogleCloudDatacatalogV1RoutineSpecArgumentMode string @@ -1124,12 +1093,6 @@ func (in *googleCloudDatacatalogV1RoutineSpecArgumentModePtr) ToGoogleCloudDatac return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDatacatalogV1RoutineSpecArgumentModePtrOutput) } -func (in *googleCloudDatacatalogV1RoutineSpecArgumentModePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDatacatalogV1RoutineSpecArgumentMode] { - return pulumix.Output[*GoogleCloudDatacatalogV1RoutineSpecArgumentMode]{ - OutputState: in.ToGoogleCloudDatacatalogV1RoutineSpecArgumentModePtrOutputWithContext(ctx).OutputState, - } -} - // The type of the routine. type GoogleCloudDatacatalogV1RoutineSpecRoutineType string @@ -1301,12 +1264,6 @@ func (in *googleCloudDatacatalogV1RoutineSpecRoutineTypePtr) ToGoogleCloudDataca return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDatacatalogV1RoutineSpecRoutineTypePtrOutput) } -func (in *googleCloudDatacatalogV1RoutineSpecRoutineTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDatacatalogV1RoutineSpecRoutineType] { - return pulumix.Output[*GoogleCloudDatacatalogV1RoutineSpecRoutineType]{ - OutputState: in.ToGoogleCloudDatacatalogV1RoutineSpecRoutineTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of the dataset. type GoogleCloudDatacatalogV1VertexDatasetSpecDataType string @@ -1508,12 +1465,6 @@ func (in *googleCloudDatacatalogV1VertexDatasetSpecDataTypePtr) ToGoogleCloudDat return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDatacatalogV1VertexDatasetSpecDataTypePtrOutput) } -func (in *googleCloudDatacatalogV1VertexDatasetSpecDataTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDatacatalogV1VertexDatasetSpecDataType] { - return pulumix.Output[*GoogleCloudDatacatalogV1VertexDatasetSpecDataType]{ - OutputState: in.ToGoogleCloudDatacatalogV1VertexDatasetSpecDataTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of the model source. type GoogleCloudDatacatalogV1VertexModelSourceInfoSourceType string @@ -1691,12 +1642,6 @@ func (in *googleCloudDatacatalogV1VertexModelSourceInfoSourceTypePtr) ToGoogleCl return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDatacatalogV1VertexModelSourceInfoSourceTypePtrOutput) } -func (in *googleCloudDatacatalogV1VertexModelSourceInfoSourceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDatacatalogV1VertexModelSourceInfoSourceType] { - return pulumix.Output[*GoogleCloudDatacatalogV1VertexModelSourceInfoSourceType]{ - OutputState: in.ToGoogleCloudDatacatalogV1VertexModelSourceInfoSourceTypePtrOutputWithContext(ctx).OutputState, - } -} - type TaxonomyActivatedPolicyTypesItem string const ( @@ -1864,12 +1809,6 @@ func (in *taxonomyActivatedPolicyTypesItemPtr) ToTaxonomyActivatedPolicyTypesIte return pulumi.ToOutputWithContext(ctx, in).(TaxonomyActivatedPolicyTypesItemPtrOutput) } -func (in *taxonomyActivatedPolicyTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*TaxonomyActivatedPolicyTypesItem] { - return pulumix.Output[*TaxonomyActivatedPolicyTypesItem]{ - OutputState: in.ToTaxonomyActivatedPolicyTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // TaxonomyActivatedPolicyTypesItemArrayInput is an input type that accepts TaxonomyActivatedPolicyTypesItemArray and TaxonomyActivatedPolicyTypesItemArrayOutput values. // You can construct a concrete instance of `TaxonomyActivatedPolicyTypesItemArrayInput` via: // diff --git a/sdk/go/google/datacatalog/v1beta1/pulumiEnums.go b/sdk/go/google/datacatalog/v1beta1/pulumiEnums.go index 9632312878..3b03fb0a50 100644 --- a/sdk/go/google/datacatalog/v1beta1/pulumiEnums.go +++ b/sdk/go/google/datacatalog/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The type of the entry. Only used for Entries with types in the EntryType enum. @@ -188,12 +187,6 @@ func (in *entryTypePtr) ToEntryTypePtrOutputWithContext(ctx context.Context) Ent return pulumi.ToOutputWithContext(ctx, in).(EntryTypePtrOutput) } -func (in *entryTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EntryType] { - return pulumix.Output[*EntryType]{ - OutputState: in.ToEntryTypePtrOutputWithContext(ctx).OutputState, - } -} - type TaxonomyActivatedPolicyTypesItem string const ( @@ -361,12 +354,6 @@ func (in *taxonomyActivatedPolicyTypesItemPtr) ToTaxonomyActivatedPolicyTypesIte return pulumi.ToOutputWithContext(ctx, in).(TaxonomyActivatedPolicyTypesItemPtrOutput) } -func (in *taxonomyActivatedPolicyTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*TaxonomyActivatedPolicyTypesItem] { - return pulumix.Output[*TaxonomyActivatedPolicyTypesItem]{ - OutputState: in.ToTaxonomyActivatedPolicyTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // TaxonomyActivatedPolicyTypesItemArrayInput is an input type that accepts TaxonomyActivatedPolicyTypesItemArray and TaxonomyActivatedPolicyTypesItemArrayOutput values. // You can construct a concrete instance of `TaxonomyActivatedPolicyTypesItemArrayInput` via: // diff --git a/sdk/go/google/dataflow/v1b3/pulumiEnums.go b/sdk/go/google/dataflow/v1b3/pulumiEnums.go index 7f0a7dd5d1..c8eccf87de 100644 --- a/sdk/go/google/dataflow/v1b3/pulumiEnums.go +++ b/sdk/go/google/dataflow/v1b3/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The algorithm to use for autoscaling. @@ -182,12 +181,6 @@ func (in *autoscalingSettingsAlgorithmPtr) ToAutoscalingSettingsAlgorithmPtrOutp return pulumi.ToOutputWithContext(ctx, in).(AutoscalingSettingsAlgorithmPtrOutput) } -func (in *autoscalingSettingsAlgorithmPtr) ToOutput(ctx context.Context) pulumix.Output[*AutoscalingSettingsAlgorithm] { - return pulumix.Output[*AutoscalingSettingsAlgorithm]{ - OutputState: in.ToAutoscalingSettingsAlgorithmPtrOutputWithContext(ctx).OutputState, - } -} - type DataSamplingConfigBehaviorsItem string const ( @@ -361,12 +354,6 @@ func (in *dataSamplingConfigBehaviorsItemPtr) ToDataSamplingConfigBehaviorsItemP return pulumi.ToOutputWithContext(ctx, in).(DataSamplingConfigBehaviorsItemPtrOutput) } -func (in *dataSamplingConfigBehaviorsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*DataSamplingConfigBehaviorsItem] { - return pulumix.Output[*DataSamplingConfigBehaviorsItem]{ - OutputState: in.ToDataSamplingConfigBehaviorsItemPtrOutputWithContext(ctx).OutputState, - } -} - // DataSamplingConfigBehaviorsItemArrayInput is an input type that accepts DataSamplingConfigBehaviorsItemArray and DataSamplingConfigBehaviorsItemArrayOutput values. // You can construct a concrete instance of `DataSamplingConfigBehaviorsItemArrayInput` via: // @@ -583,12 +570,6 @@ func (in *environmentFlexResourceSchedulingGoalPtr) ToEnvironmentFlexResourceSch return pulumi.ToOutputWithContext(ctx, in).(EnvironmentFlexResourceSchedulingGoalPtrOutput) } -func (in *environmentFlexResourceSchedulingGoalPtr) ToOutput(ctx context.Context) pulumix.Output[*EnvironmentFlexResourceSchedulingGoal] { - return pulumix.Output[*EnvironmentFlexResourceSchedulingGoal]{ - OutputState: in.ToEnvironmentFlexResourceSchedulingGoalPtrOutputWithContext(ctx).OutputState, - } -} - // Executions stage states allow the same set of values as JobState. type ExecutionStageStateExecutionStageState string @@ -790,12 +771,6 @@ func (in *executionStageStateExecutionStageStatePtr) ToExecutionStageStateExecut return pulumi.ToOutputWithContext(ctx, in).(ExecutionStageStateExecutionStageStatePtrOutput) } -func (in *executionStageStateExecutionStageStatePtr) ToOutput(ctx context.Context) pulumix.Output[*ExecutionStageStateExecutionStageState] { - return pulumix.Output[*ExecutionStageStateExecutionStageState]{ - OutputState: in.ToExecutionStageStateExecutionStageStatePtrOutputWithContext(ctx).OutputState, - } -} - // Type of transform this stage is executing. type ExecutionStageSummaryKind string @@ -985,12 +960,6 @@ func (in *executionStageSummaryKindPtr) ToExecutionStageSummaryKindPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(ExecutionStageSummaryKindPtrOutput) } -func (in *executionStageSummaryKindPtr) ToOutput(ctx context.Context) pulumix.Output[*ExecutionStageSummaryKind] { - return pulumix.Output[*ExecutionStageSummaryKind]{ - OutputState: in.ToExecutionStageSummaryKindPtrOutputWithContext(ctx).OutputState, - } -} - // The current state of the job. Jobs are created in the `JOB_STATE_STOPPED` state unless otherwise specified. A job in the `JOB_STATE_RUNNING` state may asynchronously enter a terminal state. After a job has reached a terminal state, no further state updates may be made. This field might be mutated by the Dataflow service; callers cannot mutate it. type JobCurrentState string @@ -1192,12 +1161,6 @@ func (in *jobCurrentStatePtr) ToJobCurrentStatePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(JobCurrentStatePtrOutput) } -func (in *jobCurrentStatePtr) ToOutput(ctx context.Context) pulumix.Output[*JobCurrentState] { - return pulumix.Output[*JobCurrentState]{ - OutputState: in.ToJobCurrentStatePtrOutputWithContext(ctx).OutputState, - } -} - // The job's requested state. Applies to `UpdateJob` requests. Set `requested_state` with `UpdateJob` requests to switch between the states `JOB_STATE_STOPPED` and `JOB_STATE_RUNNING`. You can also use `UpdateJob` requests to change a job's state from `JOB_STATE_RUNNING` to `JOB_STATE_CANCELLED`, `JOB_STATE_DONE`, or `JOB_STATE_DRAINED`. These states irrevocably terminate the job if it hasn't already reached a terminal state. This field has no effect on `CreateJob` requests. type JobRequestedState string @@ -1399,12 +1362,6 @@ func (in *jobRequestedStatePtr) ToJobRequestedStatePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(JobRequestedStatePtrOutput) } -func (in *jobRequestedStatePtr) ToOutput(ctx context.Context) pulumix.Output[*JobRequestedState] { - return pulumix.Output[*JobRequestedState]{ - OutputState: in.ToJobRequestedStatePtrOutputWithContext(ctx).OutputState, - } -} - // The type of Dataflow job. type JobType string @@ -1576,12 +1533,6 @@ func (in *jobTypePtr) ToJobTypePtrOutputWithContext(ctx context.Context) JobType return pulumi.ToOutputWithContext(ctx, in).(JobTypePtrOutput) } -func (in *jobTypePtr) ToOutput(ctx context.Context) pulumix.Output[*JobType] { - return pulumix.Output[*JobType]{ - OutputState: in.ToJobTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Configuration for VM IPs. type RuntimeEnvironmentIpConfiguration string @@ -1753,12 +1704,6 @@ func (in *runtimeEnvironmentIpConfigurationPtr) ToRuntimeEnvironmentIpConfigurat return pulumi.ToOutputWithContext(ctx, in).(RuntimeEnvironmentIpConfigurationPtrOutput) } -func (in *runtimeEnvironmentIpConfigurationPtr) ToOutput(ctx context.Context) pulumix.Output[*RuntimeEnvironmentIpConfiguration] { - return pulumix.Output[*RuntimeEnvironmentIpConfiguration]{ - OutputState: in.ToRuntimeEnvironmentIpConfigurationPtrOutputWithContext(ctx).OutputState, - } -} - // The support status for this SDK version. type SdkVersionSdkSupportStatus string @@ -1936,12 +1881,6 @@ func (in *sdkVersionSdkSupportStatusPtr) ToSdkVersionSdkSupportStatusPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(SdkVersionSdkSupportStatusPtrOutput) } -func (in *sdkVersionSdkSupportStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*SdkVersionSdkSupportStatus] { - return pulumix.Output[*SdkVersionSdkSupportStatus]{ - OutputState: in.ToSdkVersionSdkSupportStatusPtrOutputWithContext(ctx).OutputState, - } -} - // Type of transform. type TransformSummaryKind string @@ -2131,12 +2070,6 @@ func (in *transformSummaryKindPtr) ToTransformSummaryKindPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(TransformSummaryKindPtrOutput) } -func (in *transformSummaryKindPtr) ToOutput(ctx context.Context) pulumix.Output[*TransformSummaryKind] { - return pulumix.Output[*TransformSummaryKind]{ - OutputState: in.ToTransformSummaryKindPtrOutputWithContext(ctx).OutputState, - } -} - // The default package set to install. This allows the service to select a default set of packages which are useful to worker harnesses written in a particular language. type WorkerPoolDefaultPackageSet string @@ -2311,12 +2244,6 @@ func (in *workerPoolDefaultPackageSetPtr) ToWorkerPoolDefaultPackageSetPtrOutput return pulumi.ToOutputWithContext(ctx, in).(WorkerPoolDefaultPackageSetPtrOutput) } -func (in *workerPoolDefaultPackageSetPtr) ToOutput(ctx context.Context) pulumix.Output[*WorkerPoolDefaultPackageSet] { - return pulumix.Output[*WorkerPoolDefaultPackageSet]{ - OutputState: in.ToWorkerPoolDefaultPackageSetPtrOutputWithContext(ctx).OutputState, - } -} - // Configuration for VM IPs. type WorkerPoolIpConfiguration string @@ -2488,12 +2415,6 @@ func (in *workerPoolIpConfigurationPtr) ToWorkerPoolIpConfigurationPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(WorkerPoolIpConfigurationPtrOutput) } -func (in *workerPoolIpConfigurationPtr) ToOutput(ctx context.Context) pulumix.Output[*WorkerPoolIpConfiguration] { - return pulumix.Output[*WorkerPoolIpConfiguration]{ - OutputState: in.ToWorkerPoolIpConfigurationPtrOutputWithContext(ctx).OutputState, - } -} - // Sets the policy for determining when to turndown worker pool. Allowed values are: `TEARDOWN_ALWAYS`, `TEARDOWN_ON_SUCCESS`, and `TEARDOWN_NEVER`. `TEARDOWN_ALWAYS` means workers are always torn down regardless of whether the job succeeds. `TEARDOWN_ON_SUCCESS` means workers are torn down if the job succeeds. `TEARDOWN_NEVER` means the workers are never torn down. If the workers are not torn down by the service, they will continue to run and use Google Compute Engine VM resources in the user's project until they are explicitly terminated by the user. Because of this, Google recommends using the `TEARDOWN_ALWAYS` policy except for small, manually supervised test jobs. If unknown or unspecified, the service will attempt to choose a reasonable default. type WorkerPoolTeardownPolicy string @@ -2668,12 +2589,6 @@ func (in *workerPoolTeardownPolicyPtr) ToWorkerPoolTeardownPolicyPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(WorkerPoolTeardownPolicyPtrOutput) } -func (in *workerPoolTeardownPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*WorkerPoolTeardownPolicy] { - return pulumix.Output[*WorkerPoolTeardownPolicy]{ - OutputState: in.ToWorkerPoolTeardownPolicyPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AutoscalingSettingsAlgorithmInput)(nil)).Elem(), AutoscalingSettingsAlgorithm("AUTOSCALING_ALGORITHM_UNKNOWN")) pulumi.RegisterInputType(reflect.TypeOf((*AutoscalingSettingsAlgorithmPtrInput)(nil)).Elem(), AutoscalingSettingsAlgorithm("AUTOSCALING_ALGORITHM_UNKNOWN")) diff --git a/sdk/go/google/datafusion/v1/pulumiEnums.go b/sdk/go/google/datafusion/v1/pulumiEnums.go index 93421d0e1a..a82fba7c1a 100644 --- a/sdk/go/google/datafusion/v1/pulumiEnums.go +++ b/sdk/go/google/datafusion/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Instance type. type InstanceType string @@ -365,12 +358,6 @@ func (in *instanceTypePtr) ToInstanceTypePtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(InstanceTypePtrOutput) } -func (in *instanceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceType] { - return pulumix.Output[*InstanceType]{ - OutputState: in.ToInstanceTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Type of connection for establishing private IP connectivity between the Data Fusion customer project VPC and the corresponding tenant project from a predefined list of available connection modes. If this field is unspecified for a private instance, VPC peering is used. type NetworkConfigConnectionType string @@ -542,12 +529,6 @@ func (in *networkConfigConnectionTypePtr) ToNetworkConfigConnectionTypePtrOutput return pulumi.ToOutputWithContext(ctx, in).(NetworkConfigConnectionTypePtrOutput) } -func (in *networkConfigConnectionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkConfigConnectionType] { - return pulumix.Output[*NetworkConfigConnectionType]{ - OutputState: in.ToNetworkConfigConnectionTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/datafusion/v1beta1/pulumiEnums.go b/sdk/go/google/datafusion/v1beta1/pulumiEnums.go index 76de14a5f7..15c446df21 100644 --- a/sdk/go/google/datafusion/v1beta1/pulumiEnums.go +++ b/sdk/go/google/datafusion/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Instance type. type InstanceType string @@ -365,12 +358,6 @@ func (in *instanceTypePtr) ToInstanceTypePtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(InstanceTypePtrOutput) } -func (in *instanceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceType] { - return pulumix.Output[*InstanceType]{ - OutputState: in.ToInstanceTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Type of connection for establishing private IP connectivity between the Data Fusion customer project VPC and the corresponding tenant project from a predefined list of available connection modes. If this field is unspecified for a private instance, VPC peering is used. type NetworkConfigConnectionType string @@ -542,12 +529,6 @@ func (in *networkConfigConnectionTypePtr) ToNetworkConfigConnectionTypePtrOutput return pulumi.ToOutputWithContext(ctx, in).(NetworkConfigConnectionTypePtrOutput) } -func (in *networkConfigConnectionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkConfigConnectionType] { - return pulumix.Output[*NetworkConfigConnectionType]{ - OutputState: in.ToNetworkConfigConnectionTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/datalabeling/v1beta1/pulumiEnums.go b/sdk/go/google/datalabeling/v1beta1/pulumiEnums.go index 2bbf4c7312..ac17969369 100644 --- a/sdk/go/google/datalabeling/v1beta1/pulumiEnums.go +++ b/sdk/go/google/datalabeling/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Optional. The type of how to aggregate answers. @@ -184,12 +183,6 @@ func (in *googleCloudDatalabelingV1beta1ImageClassificationConfigAnswerAggregati return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDatalabelingV1beta1ImageClassificationConfigAnswerAggregationTypePtrOutput) } -func (in *googleCloudDatalabelingV1beta1ImageClassificationConfigAnswerAggregationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDatalabelingV1beta1ImageClassificationConfigAnswerAggregationType] { - return pulumix.Output[*GoogleCloudDatalabelingV1beta1ImageClassificationConfigAnswerAggregationType]{ - OutputState: in.ToGoogleCloudDatalabelingV1beta1ImageClassificationConfigAnswerAggregationTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The type of annotation to be performed on this data. You must specify this field if you are using this InputConfig in an EvaluationJob. type GoogleCloudDatalabelingV1beta1InputConfigAnnotationType string @@ -393,12 +386,6 @@ func (in *googleCloudDatalabelingV1beta1InputConfigAnnotationTypePtr) ToGoogleCl return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDatalabelingV1beta1InputConfigAnnotationTypePtrOutput) } -func (in *googleCloudDatalabelingV1beta1InputConfigAnnotationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDatalabelingV1beta1InputConfigAnnotationType] { - return pulumix.Output[*GoogleCloudDatalabelingV1beta1InputConfigAnnotationType]{ - OutputState: in.ToGoogleCloudDatalabelingV1beta1InputConfigAnnotationTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Data type must be specifed when user tries to import data. type GoogleCloudDatalabelingV1beta1InputConfigDataType string @@ -576,12 +563,6 @@ func (in *googleCloudDatalabelingV1beta1InputConfigDataTypePtr) ToGoogleCloudDat return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDatalabelingV1beta1InputConfigDataTypePtrOutput) } -func (in *googleCloudDatalabelingV1beta1InputConfigDataTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDatalabelingV1beta1InputConfigDataType] { - return pulumix.Output[*GoogleCloudDatalabelingV1beta1InputConfigDataType]{ - OutputState: in.ToGoogleCloudDatalabelingV1beta1InputConfigDataTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The data type of this instruction. type InstructionDataType string @@ -759,12 +740,6 @@ func (in *instructionDataTypePtr) ToInstructionDataTypePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(InstructionDataTypePtrOutput) } -func (in *instructionDataTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstructionDataType] { - return pulumix.Output[*InstructionDataType]{ - OutputState: in.ToInstructionDataTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudDatalabelingV1beta1ImageClassificationConfigAnswerAggregationTypeInput)(nil)).Elem(), GoogleCloudDatalabelingV1beta1ImageClassificationConfigAnswerAggregationType("STRING_AGGREGATION_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudDatalabelingV1beta1ImageClassificationConfigAnswerAggregationTypePtrInput)(nil)).Elem(), GoogleCloudDatalabelingV1beta1ImageClassificationConfigAnswerAggregationType("STRING_AGGREGATION_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/datalineage/v1/pulumiEnums.go b/sdk/go/google/datalineage/v1/pulumiEnums.go index f5c1265737..e983fdff19 100644 --- a/sdk/go/google/datalineage/v1/pulumiEnums.go +++ b/sdk/go/google/datalineage/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Type of the source. Use of a source_type other than `CUSTOM` for process creation or updating is highly discouraged, and may be restricted in the future without notice. @@ -194,12 +193,6 @@ func (in *googleCloudDatacatalogLineageV1OriginSourceTypePtr) ToGoogleCloudDatac return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDatacatalogLineageV1OriginSourceTypePtrOutput) } -func (in *googleCloudDatacatalogLineageV1OriginSourceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDatacatalogLineageV1OriginSourceType] { - return pulumix.Output[*GoogleCloudDatacatalogLineageV1OriginSourceType]{ - OutputState: in.ToGoogleCloudDatacatalogLineageV1OriginSourceTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The state of the run. type RunStateEnum string @@ -377,12 +370,6 @@ func (in *runStateEnumPtr) ToRunStateEnumPtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(RunStateEnumPtrOutput) } -func (in *runStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*RunStateEnum] { - return pulumix.Output[*RunStateEnum]{ - OutputState: in.ToRunStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudDatacatalogLineageV1OriginSourceTypeInput)(nil)).Elem(), GoogleCloudDatacatalogLineageV1OriginSourceType("SOURCE_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudDatacatalogLineageV1OriginSourceTypePtrInput)(nil)).Elem(), GoogleCloudDatacatalogLineageV1OriginSourceType("SOURCE_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/datamigration/v1/pulumiEnums.go b/sdk/go/google/datamigration/v1/pulumiEnums.go index 10500d7907..0a9a16a8c9 100644 --- a/sdk/go/google/datamigration/v1/pulumiEnums.go +++ b/sdk/go/google/datamigration/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Optional. The database engine major version. This is an optional field. If a database version is not supplied at cluster creation time, then a default database version will be used. @@ -182,12 +181,6 @@ func (in *alloyDbSettingsDatabaseVersionPtr) ToAlloyDbSettingsDatabaseVersionPtr return pulumi.ToOutputWithContext(ctx, in).(AlloyDbSettingsDatabaseVersionPtrOutput) } -func (in *alloyDbSettingsDatabaseVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*AlloyDbSettingsDatabaseVersion] { - return pulumix.Output[*AlloyDbSettingsDatabaseVersion]{ - OutputState: in.ToAlloyDbSettingsDatabaseVersionPtrOutputWithContext(ctx).OutputState, - } -} - // The log type that this config enables. type AuditLogConfigLogType string @@ -362,12 +355,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // The activation policy specifies when the instance is activated; it is applicable only when the instance state is 'RUNNABLE'. Valid values: 'ALWAYS': The instance is on, and remains so even in the absence of connection requests. `NEVER`: The instance is off; it is not activated, even if a connection request arrives. type CloudSqlSettingsActivationPolicy string @@ -539,12 +526,6 @@ func (in *cloudSqlSettingsActivationPolicyPtr) ToCloudSqlSettingsActivationPolic return pulumi.ToOutputWithContext(ctx, in).(CloudSqlSettingsActivationPolicyPtrOutput) } -func (in *cloudSqlSettingsActivationPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*CloudSqlSettingsActivationPolicy] { - return pulumix.Output[*CloudSqlSettingsActivationPolicy]{ - OutputState: in.ToCloudSqlSettingsActivationPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Availability type. Potential values: * `ZONAL`: The instance serves data from only one zone. Outages in that zone affect data availability. * `REGIONAL`: The instance can serve data from more than one zone in a region (it is highly available). type CloudSqlSettingsAvailabilityType string @@ -716,12 +697,6 @@ func (in *cloudSqlSettingsAvailabilityTypePtr) ToCloudSqlSettingsAvailabilityTyp return pulumi.ToOutputWithContext(ctx, in).(CloudSqlSettingsAvailabilityTypePtrOutput) } -func (in *cloudSqlSettingsAvailabilityTypePtr) ToOutput(ctx context.Context) pulumix.Output[*CloudSqlSettingsAvailabilityType] { - return pulumix.Output[*CloudSqlSettingsAvailabilityType]{ - OutputState: in.ToCloudSqlSettingsAvailabilityTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of storage: `PD_SSD` (default) or `PD_HDD`. type CloudSqlSettingsDataDiskType string @@ -893,12 +868,6 @@ func (in *cloudSqlSettingsDataDiskTypePtr) ToCloudSqlSettingsDataDiskTypePtrOutp return pulumi.ToOutputWithContext(ctx, in).(CloudSqlSettingsDataDiskTypePtrOutput) } -func (in *cloudSqlSettingsDataDiskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*CloudSqlSettingsDataDiskType] { - return pulumix.Output[*CloudSqlSettingsDataDiskType]{ - OutputState: in.ToCloudSqlSettingsDataDiskTypePtrOutputWithContext(ctx).OutputState, - } -} - // The database engine type and version. type CloudSqlSettingsDatabaseVersion string @@ -1121,12 +1090,6 @@ func (in *cloudSqlSettingsDatabaseVersionPtr) ToCloudSqlSettingsDatabaseVersionP return pulumi.ToOutputWithContext(ctx, in).(CloudSqlSettingsDatabaseVersionPtrOutput) } -func (in *cloudSqlSettingsDatabaseVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*CloudSqlSettingsDatabaseVersion] { - return pulumix.Output[*CloudSqlSettingsDatabaseVersion]{ - OutputState: in.ToCloudSqlSettingsDatabaseVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The edition of the given Cloud SQL instance. type CloudSqlSettingsEdition string @@ -1298,12 +1261,6 @@ func (in *cloudSqlSettingsEditionPtr) ToCloudSqlSettingsEditionPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(CloudSqlSettingsEditionPtrOutput) } -func (in *cloudSqlSettingsEditionPtr) ToOutput(ctx context.Context) pulumix.Output[*CloudSqlSettingsEdition] { - return pulumix.Output[*CloudSqlSettingsEdition]{ - OutputState: in.ToCloudSqlSettingsEditionPtrOutputWithContext(ctx).OutputState, - } -} - // The database provider. type ConnectionProfileProvider string @@ -1481,12 +1438,6 @@ func (in *connectionProfileProviderPtr) ToConnectionProfileProviderPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(ConnectionProfileProviderPtrOutput) } -func (in *connectionProfileProviderPtr) ToOutput(ctx context.Context) pulumix.Output[*ConnectionProfileProvider] { - return pulumix.Output[*ConnectionProfileProvider]{ - OutputState: in.ToConnectionProfileProviderPtrOutputWithContext(ctx).OutputState, - } -} - // The current connection profile state (e.g. DRAFT, READY, or FAILED). type ConnectionProfileStateEnum string @@ -1673,12 +1624,6 @@ func (in *connectionProfileStateEnumPtr) ToConnectionProfileStateEnumPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(ConnectionProfileStateEnumPtrOutput) } -func (in *connectionProfileStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*ConnectionProfileStateEnum] { - return pulumix.Output[*ConnectionProfileStateEnum]{ - OutputState: in.ToConnectionProfileStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Engine type. type DatabaseEngineInfoEngine string @@ -1853,12 +1798,6 @@ func (in *databaseEngineInfoEnginePtr) ToDatabaseEngineInfoEnginePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(DatabaseEngineInfoEnginePtrOutput) } -func (in *databaseEngineInfoEnginePtr) ToOutput(ctx context.Context) pulumix.Output[*DatabaseEngineInfoEngine] { - return pulumix.Output[*DatabaseEngineInfoEngine]{ - OutputState: in.ToDatabaseEngineInfoEnginePtrOutputWithContext(ctx).OutputState, - } -} - // The database engine. type DatabaseTypeEngine string @@ -2033,12 +1972,6 @@ func (in *databaseTypeEnginePtr) ToDatabaseTypeEnginePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(DatabaseTypeEnginePtrOutput) } -func (in *databaseTypeEnginePtr) ToOutput(ctx context.Context) pulumix.Output[*DatabaseTypeEngine] { - return pulumix.Output[*DatabaseTypeEngine]{ - OutputState: in.ToDatabaseTypeEnginePtrOutputWithContext(ctx).OutputState, - } -} - // The database provider. type DatabaseTypeProvider string @@ -2216,12 +2149,6 @@ func (in *databaseTypeProviderPtr) ToDatabaseTypeProviderPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(DatabaseTypeProviderPtrOutput) } -func (in *databaseTypeProviderPtr) ToOutput(ctx context.Context) pulumix.Output[*DatabaseTypeProvider] { - return pulumix.Output[*DatabaseTypeProvider]{ - OutputState: in.ToDatabaseTypeProviderPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Relation between source value and compare value type DoubleComparisonFilterValueComparison string @@ -2399,12 +2326,6 @@ func (in *doubleComparisonFilterValueComparisonPtr) ToDoubleComparisonFilterValu return pulumi.ToOutputWithContext(ctx, in).(DoubleComparisonFilterValueComparisonPtrOutput) } -func (in *doubleComparisonFilterValueComparisonPtr) ToOutput(ctx context.Context) pulumix.Output[*DoubleComparisonFilterValueComparison] { - return pulumix.Output[*DoubleComparisonFilterValueComparison]{ - OutputState: in.ToDoubleComparisonFilterValueComparisonPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Relation between source value and compare value type IntComparisonFilterValueComparison string @@ -2582,12 +2503,6 @@ func (in *intComparisonFilterValueComparisonPtr) ToIntComparisonFilterValueCompa return pulumi.ToOutputWithContext(ctx, in).(IntComparisonFilterValueComparisonPtrOutput) } -func (in *intComparisonFilterValueComparisonPtr) ToOutput(ctx context.Context) pulumix.Output[*IntComparisonFilterValueComparison] { - return pulumix.Output[*IntComparisonFilterValueComparison]{ - OutputState: in.ToIntComparisonFilterValueComparisonPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The rule scope type MappingRuleRuleScope string @@ -2798,12 +2713,6 @@ func (in *mappingRuleRuleScopePtr) ToMappingRuleRuleScopePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(MappingRuleRuleScopePtrOutput) } -func (in *mappingRuleRuleScopePtr) ToOutput(ctx context.Context) pulumix.Output[*MappingRuleRuleScope] { - return pulumix.Output[*MappingRuleRuleScope]{ - OutputState: in.ToMappingRuleRuleScopePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The mapping rule state type MappingRuleStateEnum string @@ -2978,12 +2887,6 @@ func (in *mappingRuleStateEnumPtr) ToMappingRuleStateEnumPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(MappingRuleStateEnumPtrOutput) } -func (in *mappingRuleStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*MappingRuleStateEnum] { - return pulumix.Output[*MappingRuleStateEnum]{ - OutputState: in.ToMappingRuleStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // The current migration job state. type MigrationJobStateEnum string @@ -3194,12 +3097,6 @@ func (in *migrationJobStateEnumPtr) ToMigrationJobStateEnumPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(MigrationJobStateEnumPtrOutput) } -func (in *migrationJobStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*MigrationJobStateEnum] { - return pulumix.Output[*MigrationJobStateEnum]{ - OutputState: in.ToMigrationJobStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The migration job type. type MigrationJobType string @@ -3371,12 +3268,6 @@ func (in *migrationJobTypePtr) ToMigrationJobTypePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(MigrationJobTypePtrOutput) } -func (in *migrationJobTypePtr) ToOutput(ctx context.Context) pulumix.Output[*MigrationJobType] { - return pulumix.Output[*MigrationJobType]{ - OutputState: in.ToMigrationJobTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Additional transformation that can be done on the source entity name before it is being used by the new_name_pattern, for example lower case. If no transformation is desired, use NO_TRANSFORMATION type MultiEntityRenameSourceNameTransformation string @@ -3554,12 +3445,6 @@ func (in *multiEntityRenameSourceNameTransformationPtr) ToMultiEntityRenameSourc return pulumi.ToOutputWithContext(ctx, in).(MultiEntityRenameSourceNameTransformationPtrOutput) } -func (in *multiEntityRenameSourceNameTransformationPtr) ToOutput(ctx context.Context) pulumix.Output[*MultiEntityRenameSourceNameTransformation] { - return pulumix.Output[*MultiEntityRenameSourceNameTransformation]{ - OutputState: in.ToMultiEntityRenameSourceNameTransformationPtrOutputWithContext(ctx).OutputState, - } -} - // Initial dump parallelism level. type PerformanceConfigDumpParallelLevel string @@ -3734,12 +3619,6 @@ func (in *performanceConfigDumpParallelLevelPtr) ToPerformanceConfigDumpParallel return pulumi.ToOutputWithContext(ctx, in).(PerformanceConfigDumpParallelLevelPtrOutput) } -func (in *performanceConfigDumpParallelLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*PerformanceConfigDumpParallelLevel] { - return pulumix.Output[*PerformanceConfigDumpParallelLevel]{ - OutputState: in.ToPerformanceConfigDumpParallelLevelPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Enum to set the option defining the datatypes numeric filter has to be applied to type SourceNumericFilterNumericFilterOption string @@ -3914,12 +3793,6 @@ func (in *sourceNumericFilterNumericFilterOptionPtr) ToSourceNumericFilterNumeri return pulumi.ToOutputWithContext(ctx, in).(SourceNumericFilterNumericFilterOptionPtrOutput) } -func (in *sourceNumericFilterNumericFilterOptionPtr) ToOutput(ctx context.Context) pulumix.Output[*SourceNumericFilterNumericFilterOption] { - return pulumix.Output[*SourceNumericFilterNumericFilterOption]{ - OutputState: in.ToSourceNumericFilterNumericFilterOptionPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Indicates whether the filter matches rows with values that are present in the list or those with values not present in it. type ValueListFilterValuePresentList string @@ -4091,12 +3964,6 @@ func (in *valueListFilterValuePresentListPtr) ToValueListFilterValuePresentListP return pulumi.ToOutputWithContext(ctx, in).(ValueListFilterValuePresentListPtrOutput) } -func (in *valueListFilterValuePresentListPtr) ToOutput(ctx context.Context) pulumix.Output[*ValueListFilterValuePresentList] { - return pulumix.Output[*ValueListFilterValuePresentList]{ - OutputState: in.ToValueListFilterValuePresentListPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AlloyDbSettingsDatabaseVersionInput)(nil)).Elem(), AlloyDbSettingsDatabaseVersion("DATABASE_VERSION_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AlloyDbSettingsDatabaseVersionPtrInput)(nil)).Elem(), AlloyDbSettingsDatabaseVersion("DATABASE_VERSION_UNSPECIFIED")) diff --git a/sdk/go/google/datamigration/v1beta1/pulumiEnums.go b/sdk/go/google/datamigration/v1beta1/pulumiEnums.go index cb4aa8af49..a29a358f9a 100644 --- a/sdk/go/google/datamigration/v1beta1/pulumiEnums.go +++ b/sdk/go/google/datamigration/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // The activation policy specifies when the instance is activated; it is applicable only when the instance state is 'RUNNABLE'. Valid values: 'ALWAYS': The instance is on, and remains so even in the absence of connection requests. `NEVER`: The instance is off; it is not activated, even if a connection request arrives. type CloudSqlSettingsActivationPolicy string @@ -362,12 +355,6 @@ func (in *cloudSqlSettingsActivationPolicyPtr) ToCloudSqlSettingsActivationPolic return pulumi.ToOutputWithContext(ctx, in).(CloudSqlSettingsActivationPolicyPtrOutput) } -func (in *cloudSqlSettingsActivationPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*CloudSqlSettingsActivationPolicy] { - return pulumix.Output[*CloudSqlSettingsActivationPolicy]{ - OutputState: in.ToCloudSqlSettingsActivationPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // The type of storage: `PD_SSD` (default) or `PD_HDD`. type CloudSqlSettingsDataDiskType string @@ -539,12 +526,6 @@ func (in *cloudSqlSettingsDataDiskTypePtr) ToCloudSqlSettingsDataDiskTypePtrOutp return pulumi.ToOutputWithContext(ctx, in).(CloudSqlSettingsDataDiskTypePtrOutput) } -func (in *cloudSqlSettingsDataDiskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*CloudSqlSettingsDataDiskType] { - return pulumix.Output[*CloudSqlSettingsDataDiskType]{ - OutputState: in.ToCloudSqlSettingsDataDiskTypePtrOutputWithContext(ctx).OutputState, - } -} - // The database engine type and version. type CloudSqlSettingsDatabaseVersion string @@ -719,12 +700,6 @@ func (in *cloudSqlSettingsDatabaseVersionPtr) ToCloudSqlSettingsDatabaseVersionP return pulumi.ToOutputWithContext(ctx, in).(CloudSqlSettingsDatabaseVersionPtrOutput) } -func (in *cloudSqlSettingsDatabaseVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*CloudSqlSettingsDatabaseVersion] { - return pulumix.Output[*CloudSqlSettingsDatabaseVersion]{ - OutputState: in.ToCloudSqlSettingsDatabaseVersionPtrOutputWithContext(ctx).OutputState, - } -} - // The database provider. type ConnectionProfileProvider string @@ -896,12 +871,6 @@ func (in *connectionProfileProviderPtr) ToConnectionProfileProviderPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(ConnectionProfileProviderPtrOutput) } -func (in *connectionProfileProviderPtr) ToOutput(ctx context.Context) pulumix.Output[*ConnectionProfileProvider] { - return pulumix.Output[*ConnectionProfileProvider]{ - OutputState: in.ToConnectionProfileProviderPtrOutputWithContext(ctx).OutputState, - } -} - // The current connection profile state (e.g. DRAFT, READY, or FAILED). type ConnectionProfileStateEnum string @@ -1088,12 +1057,6 @@ func (in *connectionProfileStateEnumPtr) ToConnectionProfileStateEnumPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(ConnectionProfileStateEnumPtrOutput) } -func (in *connectionProfileStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*ConnectionProfileStateEnum] { - return pulumix.Output[*ConnectionProfileStateEnum]{ - OutputState: in.ToConnectionProfileStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // The database engine. type DatabaseTypeEngine string @@ -1262,12 +1225,6 @@ func (in *databaseTypeEnginePtr) ToDatabaseTypeEnginePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(DatabaseTypeEnginePtrOutput) } -func (in *databaseTypeEnginePtr) ToOutput(ctx context.Context) pulumix.Output[*DatabaseTypeEngine] { - return pulumix.Output[*DatabaseTypeEngine]{ - OutputState: in.ToDatabaseTypeEnginePtrOutputWithContext(ctx).OutputState, - } -} - // The database provider. type DatabaseTypeProvider string @@ -1439,12 +1396,6 @@ func (in *databaseTypeProviderPtr) ToDatabaseTypeProviderPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(DatabaseTypeProviderPtrOutput) } -func (in *databaseTypeProviderPtr) ToOutput(ctx context.Context) pulumix.Output[*DatabaseTypeProvider] { - return pulumix.Output[*DatabaseTypeProvider]{ - OutputState: in.ToDatabaseTypeProviderPtrOutputWithContext(ctx).OutputState, - } -} - // The current migration job state. type MigrationJobStateEnum string @@ -1655,12 +1606,6 @@ func (in *migrationJobStateEnumPtr) ToMigrationJobStateEnumPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(MigrationJobStateEnumPtrOutput) } -func (in *migrationJobStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*MigrationJobStateEnum] { - return pulumix.Output[*MigrationJobStateEnum]{ - OutputState: in.ToMigrationJobStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The migration job type. type MigrationJobType string @@ -1832,12 +1777,6 @@ func (in *migrationJobTypePtr) ToMigrationJobTypePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(MigrationJobTypePtrOutput) } -func (in *migrationJobTypePtr) ToOutput(ctx context.Context) pulumix.Output[*MigrationJobType] { - return pulumix.Output[*MigrationJobType]{ - OutputState: in.ToMigrationJobTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/datapipelines/v1/pulumiEnums.go b/sdk/go/google/datapipelines/v1/pulumiEnums.go index c1f193ee97..c54363f3aa 100644 --- a/sdk/go/google/datapipelines/v1/pulumiEnums.go +++ b/sdk/go/google/datapipelines/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Set FlexRS goal for the job. https://cloud.google.com/dataflow/docs/guides/flexrs @@ -182,12 +181,6 @@ func (in *googleCloudDatapipelinesV1FlexTemplateRuntimeEnvironmentFlexrsGoalPtr) return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDatapipelinesV1FlexTemplateRuntimeEnvironmentFlexrsGoalPtrOutput) } -func (in *googleCloudDatapipelinesV1FlexTemplateRuntimeEnvironmentFlexrsGoalPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDatapipelinesV1FlexTemplateRuntimeEnvironmentFlexrsGoal] { - return pulumix.Output[*GoogleCloudDatapipelinesV1FlexTemplateRuntimeEnvironmentFlexrsGoal]{ - OutputState: in.ToGoogleCloudDatapipelinesV1FlexTemplateRuntimeEnvironmentFlexrsGoalPtrOutputWithContext(ctx).OutputState, - } -} - // Configuration for VM IPs. type GoogleCloudDatapipelinesV1FlexTemplateRuntimeEnvironmentIpConfiguration string @@ -359,12 +352,6 @@ func (in *googleCloudDatapipelinesV1FlexTemplateRuntimeEnvironmentIpConfiguratio return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDatapipelinesV1FlexTemplateRuntimeEnvironmentIpConfigurationPtrOutput) } -func (in *googleCloudDatapipelinesV1FlexTemplateRuntimeEnvironmentIpConfigurationPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDatapipelinesV1FlexTemplateRuntimeEnvironmentIpConfiguration] { - return pulumix.Output[*GoogleCloudDatapipelinesV1FlexTemplateRuntimeEnvironmentIpConfiguration]{ - OutputState: in.ToGoogleCloudDatapipelinesV1FlexTemplateRuntimeEnvironmentIpConfigurationPtrOutputWithContext(ctx).OutputState, - } -} - // Configuration for VM IPs. type GoogleCloudDatapipelinesV1RuntimeEnvironmentIpConfiguration string @@ -536,12 +523,6 @@ func (in *googleCloudDatapipelinesV1RuntimeEnvironmentIpConfigurationPtr) ToGoog return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDatapipelinesV1RuntimeEnvironmentIpConfigurationPtrOutput) } -func (in *googleCloudDatapipelinesV1RuntimeEnvironmentIpConfigurationPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDatapipelinesV1RuntimeEnvironmentIpConfiguration] { - return pulumix.Output[*GoogleCloudDatapipelinesV1RuntimeEnvironmentIpConfiguration]{ - OutputState: in.ToGoogleCloudDatapipelinesV1RuntimeEnvironmentIpConfigurationPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The state of the pipeline. When the pipeline is created, the state is set to 'PIPELINE_STATE_ACTIVE' by default. State changes can be requested by setting the state to stopping, paused, or resuming. State cannot be changed through UpdatePipeline requests. type PipelineStateEnum string @@ -722,12 +703,6 @@ func (in *pipelineStateEnumPtr) ToPipelineStateEnumPtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(PipelineStateEnumPtrOutput) } -func (in *pipelineStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*PipelineStateEnum] { - return pulumix.Output[*PipelineStateEnum]{ - OutputState: in.ToPipelineStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of the pipeline. This field affects the scheduling of the pipeline and the type of metrics to show for the pipeline. type PipelineType string @@ -899,12 +874,6 @@ func (in *pipelineTypePtr) ToPipelineTypePtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(PipelineTypePtrOutput) } -func (in *pipelineTypePtr) ToOutput(ctx context.Context) pulumix.Output[*PipelineType] { - return pulumix.Output[*PipelineType]{ - OutputState: in.ToPipelineTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudDatapipelinesV1FlexTemplateRuntimeEnvironmentFlexrsGoalInput)(nil)).Elem(), GoogleCloudDatapipelinesV1FlexTemplateRuntimeEnvironmentFlexrsGoal("FLEXRS_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudDatapipelinesV1FlexTemplateRuntimeEnvironmentFlexrsGoalPtrInput)(nil)).Elem(), GoogleCloudDatapipelinesV1FlexTemplateRuntimeEnvironmentFlexrsGoal("FLEXRS_UNSPECIFIED")) diff --git a/sdk/go/google/dataplex/v1/pulumiEnums.go b/sdk/go/google/dataplex/v1/pulumiEnums.go index 26e89323bd..320155029f 100644 --- a/sdk/go/google/dataplex/v1/pulumiEnums.go +++ b/sdk/go/google/dataplex/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Required. Immutable. Identifies the storage system of the entity data. @@ -182,12 +181,6 @@ func (in *entitySystemPtr) ToEntitySystemPtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(EntitySystemPtrOutput) } -func (in *entitySystemPtr) ToOutput(ctx context.Context) pulumix.Output[*EntitySystem] { - return pulumix.Output[*EntitySystem]{ - OutputState: in.ToEntitySystemPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Immutable. The type of entity. type EntityType string @@ -359,12 +352,6 @@ func (in *entityTypePtr) ToEntityTypePtrOutputWithContext(ctx context.Context) E return pulumi.ToOutputWithContext(ctx, in).(EntityTypePtrOutput) } -func (in *entityTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EntityType] { - return pulumix.Output[*EntityType]{ - OutputState: in.ToEntityTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Determines how read permissions are handled for each asset and their associated tables. Only available to storage buckets assets. type GoogleCloudDataplexV1AssetResourceSpecReadAccessMode string @@ -536,12 +523,6 @@ func (in *googleCloudDataplexV1AssetResourceSpecReadAccessModePtr) ToGoogleCloud return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDataplexV1AssetResourceSpecReadAccessModePtrOutput) } -func (in *googleCloudDataplexV1AssetResourceSpecReadAccessModePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDataplexV1AssetResourceSpecReadAccessMode] { - return pulumix.Output[*GoogleCloudDataplexV1AssetResourceSpecReadAccessMode]{ - OutputState: in.ToGoogleCloudDataplexV1AssetResourceSpecReadAccessModePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Immutable. Type of resource. type GoogleCloudDataplexV1AssetResourceSpecType string @@ -713,12 +694,6 @@ func (in *googleCloudDataplexV1AssetResourceSpecTypePtr) ToGoogleCloudDataplexV1 return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDataplexV1AssetResourceSpecTypePtrOutput) } -func (in *googleCloudDataplexV1AssetResourceSpecTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDataplexV1AssetResourceSpecType] { - return pulumix.Output[*GoogleCloudDataplexV1AssetResourceSpecType]{ - OutputState: in.ToGoogleCloudDataplexV1AssetResourceSpecTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Kernel Type of the notebook. type GoogleCloudDataplexV1ContentNotebookKernelType string @@ -887,12 +862,6 @@ func (in *googleCloudDataplexV1ContentNotebookKernelTypePtr) ToGoogleCloudDatapl return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDataplexV1ContentNotebookKernelTypePtrOutput) } -func (in *googleCloudDataplexV1ContentNotebookKernelTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDataplexV1ContentNotebookKernelType] { - return pulumix.Output[*GoogleCloudDataplexV1ContentNotebookKernelType]{ - OutputState: in.ToGoogleCloudDataplexV1ContentNotebookKernelTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Query Engine to be used for the Sql Query. type GoogleCloudDataplexV1ContentSqlScriptEngine string @@ -1061,12 +1030,6 @@ func (in *googleCloudDataplexV1ContentSqlScriptEnginePtr) ToGoogleCloudDataplexV return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDataplexV1ContentSqlScriptEnginePtrOutput) } -func (in *googleCloudDataplexV1ContentSqlScriptEnginePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDataplexV1ContentSqlScriptEngine] { - return pulumix.Output[*GoogleCloudDataplexV1ContentSqlScriptEngine]{ - OutputState: in.ToGoogleCloudDataplexV1ContentSqlScriptEnginePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The aggregate metric to evaluate. type GoogleCloudDataplexV1DataQualityRuleStatisticRangeExpectationStatistic string @@ -1241,12 +1204,6 @@ func (in *googleCloudDataplexV1DataQualityRuleStatisticRangeExpectationStatistic return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDataplexV1DataQualityRuleStatisticRangeExpectationStatisticPtrOutput) } -func (in *googleCloudDataplexV1DataQualityRuleStatisticRangeExpectationStatisticPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDataplexV1DataQualityRuleStatisticRangeExpectationStatistic] { - return pulumix.Output[*GoogleCloudDataplexV1DataQualityRuleStatisticRangeExpectationStatistic]{ - OutputState: in.ToGoogleCloudDataplexV1DataQualityRuleStatisticRangeExpectationStatisticPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Immutable. The type of field. type GoogleCloudDataplexV1SchemaPartitionFieldType string @@ -1457,12 +1414,6 @@ func (in *googleCloudDataplexV1SchemaPartitionFieldTypePtr) ToGoogleCloudDataple return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDataplexV1SchemaPartitionFieldTypePtrOutput) } -func (in *googleCloudDataplexV1SchemaPartitionFieldTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDataplexV1SchemaPartitionFieldType] { - return pulumix.Output[*GoogleCloudDataplexV1SchemaPartitionFieldType]{ - OutputState: in.ToGoogleCloudDataplexV1SchemaPartitionFieldTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The structure of paths containing partition data within the entity. type GoogleCloudDataplexV1SchemaPartitionStyle string @@ -1631,12 +1582,6 @@ func (in *googleCloudDataplexV1SchemaPartitionStylePtr) ToGoogleCloudDataplexV1S return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDataplexV1SchemaPartitionStylePtrOutput) } -func (in *googleCloudDataplexV1SchemaPartitionStylePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDataplexV1SchemaPartitionStyle] { - return pulumix.Output[*GoogleCloudDataplexV1SchemaPartitionStyle]{ - OutputState: in.ToGoogleCloudDataplexV1SchemaPartitionStylePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Additional field semantics. type GoogleCloudDataplexV1SchemaSchemaFieldMode string @@ -1811,12 +1756,6 @@ func (in *googleCloudDataplexV1SchemaSchemaFieldModePtr) ToGoogleCloudDataplexV1 return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDataplexV1SchemaSchemaFieldModePtrOutput) } -func (in *googleCloudDataplexV1SchemaSchemaFieldModePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDataplexV1SchemaSchemaFieldMode] { - return pulumix.Output[*GoogleCloudDataplexV1SchemaSchemaFieldMode]{ - OutputState: in.ToGoogleCloudDataplexV1SchemaSchemaFieldModePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of field. type GoogleCloudDataplexV1SchemaSchemaFieldType string @@ -2027,12 +1966,6 @@ func (in *googleCloudDataplexV1SchemaSchemaFieldTypePtr) ToGoogleCloudDataplexV1 return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDataplexV1SchemaSchemaFieldTypePtrOutput) } -func (in *googleCloudDataplexV1SchemaSchemaFieldTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDataplexV1SchemaSchemaFieldType] { - return pulumix.Output[*GoogleCloudDataplexV1SchemaSchemaFieldType]{ - OutputState: in.ToGoogleCloudDataplexV1SchemaSchemaFieldTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The compression type associated with the stored data. If unspecified, the data is uncompressed. type GoogleCloudDataplexV1StorageFormatCompressionFormat string @@ -2204,12 +2137,6 @@ func (in *googleCloudDataplexV1StorageFormatCompressionFormatPtr) ToGoogleCloudD return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDataplexV1StorageFormatCompressionFormatPtrOutput) } -func (in *googleCloudDataplexV1StorageFormatCompressionFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDataplexV1StorageFormatCompressionFormat] { - return pulumix.Output[*GoogleCloudDataplexV1StorageFormatCompressionFormat]{ - OutputState: in.ToGoogleCloudDataplexV1StorageFormatCompressionFormatPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Immutable. Trigger type of the user-specified Task. type GoogleCloudDataplexV1TaskTriggerSpecType string @@ -2381,12 +2308,6 @@ func (in *googleCloudDataplexV1TaskTriggerSpecTypePtr) ToGoogleCloudDataplexV1Ta return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDataplexV1TaskTriggerSpecTypePtrOutput) } -func (in *googleCloudDataplexV1TaskTriggerSpecTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDataplexV1TaskTriggerSpecType] { - return pulumix.Output[*GoogleCloudDataplexV1TaskTriggerSpecType]{ - OutputState: in.ToGoogleCloudDataplexV1TaskTriggerSpecTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Immutable. The location type of the resources that are allowed to be attached to the assets within this zone. type GoogleCloudDataplexV1ZoneResourceSpecLocationType string @@ -2558,12 +2479,6 @@ func (in *googleCloudDataplexV1ZoneResourceSpecLocationTypePtr) ToGoogleCloudDat return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDataplexV1ZoneResourceSpecLocationTypePtrOutput) } -func (in *googleCloudDataplexV1ZoneResourceSpecLocationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDataplexV1ZoneResourceSpecLocationType] { - return pulumix.Output[*GoogleCloudDataplexV1ZoneResourceSpecLocationType]{ - OutputState: in.ToGoogleCloudDataplexV1ZoneResourceSpecLocationTypePtrOutputWithContext(ctx).OutputState, - } -} - // The log type that this config enables. type GoogleIamV1AuditLogConfigLogType string @@ -2738,12 +2653,6 @@ func (in *googleIamV1AuditLogConfigLogTypePtr) ToGoogleIamV1AuditLogConfigLogTyp return pulumi.ToOutputWithContext(ctx, in).(GoogleIamV1AuditLogConfigLogTypePtrOutput) } -func (in *googleIamV1AuditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleIamV1AuditLogConfigLogType] { - return pulumix.Output[*GoogleIamV1AuditLogConfigLogType]{ - OutputState: in.ToGoogleIamV1AuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Immutable. The type of the zone. type ZoneType string @@ -2915,12 +2824,6 @@ func (in *zoneTypePtr) ToZoneTypePtrOutputWithContext(ctx context.Context) ZoneT return pulumi.ToOutputWithContext(ctx, in).(ZoneTypePtrOutput) } -func (in *zoneTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ZoneType] { - return pulumix.Output[*ZoneType]{ - OutputState: in.ToZoneTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*EntitySystemInput)(nil)).Elem(), EntitySystem("STORAGE_SYSTEM_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*EntitySystemPtrInput)(nil)).Elem(), EntitySystem("STORAGE_SYSTEM_UNSPECIFIED")) diff --git a/sdk/go/google/dataproc/v1/pulumiEnums.go b/sdk/go/google/dataproc/v1/pulumiEnums.go index 812c616936..a3255ea010 100644 --- a/sdk/go/google/dataproc/v1/pulumiEnums.go +++ b/sdk/go/google/dataproc/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Optional. The type of IPv6 access for a cluster. @@ -185,12 +184,6 @@ func (in *gceClusterConfigPrivateIpv6GoogleAccessPtr) ToGceClusterConfigPrivateI return pulumi.ToOutputWithContext(ctx, in).(GceClusterConfigPrivateIpv6GoogleAccessPtrOutput) } -func (in *gceClusterConfigPrivateIpv6GoogleAccessPtr) ToOutput(ctx context.Context) pulumix.Output[*GceClusterConfigPrivateIpv6GoogleAccess] { - return pulumix.Output[*GceClusterConfigPrivateIpv6GoogleAccess]{ - OutputState: in.ToGceClusterConfigPrivateIpv6GoogleAccessPtrOutputWithContext(ctx).OutputState, - } -} - type GkeNodePoolTargetRolesItem string const ( @@ -367,12 +360,6 @@ func (in *gkeNodePoolTargetRolesItemPtr) ToGkeNodePoolTargetRolesItemPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(GkeNodePoolTargetRolesItemPtrOutput) } -func (in *gkeNodePoolTargetRolesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*GkeNodePoolTargetRolesItem] { - return pulumix.Output[*GkeNodePoolTargetRolesItem]{ - OutputState: in.ToGkeNodePoolTargetRolesItemPtrOutputWithContext(ctx).OutputState, - } -} - // GkeNodePoolTargetRolesItemArrayInput is an input type that accepts GkeNodePoolTargetRolesItemArray and GkeNodePoolTargetRolesItemArrayOutput values. // You can construct a concrete instance of `GkeNodePoolTargetRolesItemArrayInput` via: // @@ -592,12 +579,6 @@ func (in *instanceGroupConfigPreemptibilityPtr) ToInstanceGroupConfigPreemptibil return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupConfigPreemptibilityPtrOutput) } -func (in *instanceGroupConfigPreemptibilityPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupConfigPreemptibility] { - return pulumix.Output[*InstanceGroupConfigPreemptibility]{ - OutputState: in.ToInstanceGroupConfigPreemptibilityPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Kernel type JupyterConfigKernel string @@ -769,12 +750,6 @@ func (in *jupyterConfigKernelPtr) ToJupyterConfigKernelPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(JupyterConfigKernelPtrOutput) } -func (in *jupyterConfigKernelPtr) ToOutput(ctx context.Context) pulumix.Output[*JupyterConfigKernel] { - return pulumix.Output[*JupyterConfigKernel]{ - OutputState: in.ToJupyterConfigKernelPtrOutputWithContext(ctx).OutputState, - } -} - // Required. A standard set of metrics is collected unless metricOverrides are specified for the metric source (see Custom metrics (https://cloud.google.com/dataproc/docs/guides/dataproc-metrics#custom_metrics) for more information). type MetricMetricSource string @@ -964,12 +939,6 @@ func (in *metricMetricSourcePtr) ToMetricMetricSourcePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(MetricMetricSourcePtrOutput) } -func (in *metricMetricSourcePtr) ToOutput(ctx context.Context) pulumix.Output[*MetricMetricSource] { - return pulumix.Output[*MetricMetricSource]{ - OutputState: in.ToMetricMetricSourcePtrOutputWithContext(ctx).OutputState, - } -} - type NodeGroupRolesItem string const ( @@ -1137,12 +1106,6 @@ func (in *nodeGroupRolesItemPtr) ToNodeGroupRolesItemPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(NodeGroupRolesItemPtrOutput) } -func (in *nodeGroupRolesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*NodeGroupRolesItem] { - return pulumix.Output[*NodeGroupRolesItem]{ - OutputState: in.ToNodeGroupRolesItemPtrOutputWithContext(ctx).OutputState, - } -} - // NodeGroupRolesItemArrayInput is an input type that accepts NodeGroupRolesItemArray and NodeGroupRolesItemArrayOutput values. // You can construct a concrete instance of `NodeGroupRolesItemArrayInput` via: // @@ -1361,12 +1324,6 @@ func (in *reservationAffinityConsumeReservationTypePtr) ToReservationAffinityCon return pulumi.ToOutputWithContext(ctx, in).(ReservationAffinityConsumeReservationTypePtrOutput) } -func (in *reservationAffinityConsumeReservationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ReservationAffinityConsumeReservationType] { - return pulumix.Output[*ReservationAffinityConsumeReservationType]{ - OutputState: in.ToReservationAffinityConsumeReservationTypePtrOutputWithContext(ctx).OutputState, - } -} - type SoftwareConfigOptionalComponentsItem string const ( @@ -1573,12 +1530,6 @@ func (in *softwareConfigOptionalComponentsItemPtr) ToSoftwareConfigOptionalCompo return pulumi.ToOutputWithContext(ctx, in).(SoftwareConfigOptionalComponentsItemPtrOutput) } -func (in *softwareConfigOptionalComponentsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*SoftwareConfigOptionalComponentsItem] { - return pulumix.Output[*SoftwareConfigOptionalComponentsItem]{ - OutputState: in.ToSoftwareConfigOptionalComponentsItemPtrOutputWithContext(ctx).OutputState, - } -} - // SoftwareConfigOptionalComponentsItemArrayInput is an input type that accepts SoftwareConfigOptionalComponentsItemArray and SoftwareConfigOptionalComponentsItemArrayOutput values. // You can construct a concrete instance of `SoftwareConfigOptionalComponentsItemArrayInput` via: // diff --git a/sdk/go/google/dataproc/v1beta2/pulumiEnums.go b/sdk/go/google/dataproc/v1beta2/pulumiEnums.go index 481d284cd1..4cbf021db6 100644 --- a/sdk/go/google/dataproc/v1beta2/pulumiEnums.go +++ b/sdk/go/google/dataproc/v1beta2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Optional. The type of IPv6 access for a cluster. @@ -185,12 +184,6 @@ func (in *gceClusterConfigPrivateIpv6GoogleAccessPtr) ToGceClusterConfigPrivateI return pulumi.ToOutputWithContext(ctx, in).(GceClusterConfigPrivateIpv6GoogleAccessPtrOutput) } -func (in *gceClusterConfigPrivateIpv6GoogleAccessPtr) ToOutput(ctx context.Context) pulumix.Output[*GceClusterConfigPrivateIpv6GoogleAccess] { - return pulumix.Output[*GceClusterConfigPrivateIpv6GoogleAccess]{ - OutputState: in.ToGceClusterConfigPrivateIpv6GoogleAccessPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Specifies the preemptibility of the instance group.The default value for master and worker groups is NON_PREEMPTIBLE. This default cannot be changed.The default value for secondary instances is PREEMPTIBLE. type InstanceGroupConfigPreemptibility string @@ -362,12 +355,6 @@ func (in *instanceGroupConfigPreemptibilityPtr) ToInstanceGroupConfigPreemptibil return pulumi.ToOutputWithContext(ctx, in).(InstanceGroupConfigPreemptibilityPtrOutput) } -func (in *instanceGroupConfigPreemptibilityPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceGroupConfigPreemptibility] { - return pulumix.Output[*InstanceGroupConfigPreemptibility]{ - OutputState: in.ToInstanceGroupConfigPreemptibilityPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Type of reservation to consume type ReservationAffinityConsumeReservationType string @@ -541,12 +528,6 @@ func (in *reservationAffinityConsumeReservationTypePtr) ToReservationAffinityCon return pulumi.ToOutputWithContext(ctx, in).(ReservationAffinityConsumeReservationTypePtrOutput) } -func (in *reservationAffinityConsumeReservationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ReservationAffinityConsumeReservationType] { - return pulumix.Output[*ReservationAffinityConsumeReservationType]{ - OutputState: in.ToReservationAffinityConsumeReservationTypePtrOutputWithContext(ctx).OutputState, - } -} - type SoftwareConfigOptionalComponentsItem string const ( @@ -750,12 +731,6 @@ func (in *softwareConfigOptionalComponentsItemPtr) ToSoftwareConfigOptionalCompo return pulumi.ToOutputWithContext(ctx, in).(SoftwareConfigOptionalComponentsItemPtrOutput) } -func (in *softwareConfigOptionalComponentsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*SoftwareConfigOptionalComponentsItem] { - return pulumix.Output[*SoftwareConfigOptionalComponentsItem]{ - OutputState: in.ToSoftwareConfigOptionalComponentsItemPtrOutputWithContext(ctx).OutputState, - } -} - // SoftwareConfigOptionalComponentsItemArrayInput is an input type that accepts SoftwareConfigOptionalComponentsItemArray and SoftwareConfigOptionalComponentsItemArrayOutput values. // You can construct a concrete instance of `SoftwareConfigOptionalComponentsItemArrayInput` via: // diff --git a/sdk/go/google/datastore/v1/pulumiEnums.go b/sdk/go/google/datastore/v1/pulumiEnums.go index 5468589960..bb54bb5c5a 100644 --- a/sdk/go/google/datastore/v1/pulumiEnums.go +++ b/sdk/go/google/datastore/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Required. The indexed property's direction. Must not be DIRECTION_UNSPECIFIED. @@ -182,12 +181,6 @@ func (in *googleDatastoreAdminV1IndexedPropertyDirectionPtr) ToGoogleDatastoreAd return pulumi.ToOutputWithContext(ctx, in).(GoogleDatastoreAdminV1IndexedPropertyDirectionPtrOutput) } -func (in *googleDatastoreAdminV1IndexedPropertyDirectionPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleDatastoreAdminV1IndexedPropertyDirection] { - return pulumix.Output[*GoogleDatastoreAdminV1IndexedPropertyDirection]{ - OutputState: in.ToGoogleDatastoreAdminV1IndexedPropertyDirectionPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The index's ancestor mode. Must not be ANCESTOR_MODE_UNSPECIFIED. type IndexAncestor string @@ -359,12 +352,6 @@ func (in *indexAncestorPtr) ToIndexAncestorPtrOutputWithContext(ctx context.Cont return pulumi.ToOutputWithContext(ctx, in).(IndexAncestorPtrOutput) } -func (in *indexAncestorPtr) ToOutput(ctx context.Context) pulumix.Output[*IndexAncestor] { - return pulumix.Output[*IndexAncestor]{ - OutputState: in.ToIndexAncestorPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*GoogleDatastoreAdminV1IndexedPropertyDirectionInput)(nil)).Elem(), GoogleDatastoreAdminV1IndexedPropertyDirection("DIRECTION_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*GoogleDatastoreAdminV1IndexedPropertyDirectionPtrInput)(nil)).Elem(), GoogleDatastoreAdminV1IndexedPropertyDirection("DIRECTION_UNSPECIFIED")) diff --git a/sdk/go/google/datastream/v1/pulumiEnums.go b/sdk/go/google/datastream/v1/pulumiEnums.go index a1846a8cb9..cf31f3c0e4 100644 --- a/sdk/go/google/datastream/v1/pulumiEnums.go +++ b/sdk/go/google/datastream/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Compression of the loaded JSON file. @@ -182,12 +181,6 @@ func (in *jsonFileFormatCompressionPtr) ToJsonFileFormatCompressionPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(JsonFileFormatCompressionPtrOutput) } -func (in *jsonFileFormatCompressionPtr) ToOutput(ctx context.Context) pulumix.Output[*JsonFileFormatCompression] { - return pulumix.Output[*JsonFileFormatCompression]{ - OutputState: in.ToJsonFileFormatCompressionPtrOutputWithContext(ctx).OutputState, - } -} - // The schema file format along JSON data files. type JsonFileFormatSchemaFileFormat string @@ -359,12 +352,6 @@ func (in *jsonFileFormatSchemaFileFormatPtr) ToJsonFileFormatSchemaFileFormatPtr return pulumi.ToOutputWithContext(ctx, in).(JsonFileFormatSchemaFileFormatPtrOutput) } -func (in *jsonFileFormatSchemaFileFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*JsonFileFormatSchemaFileFormat] { - return pulumix.Output[*JsonFileFormatSchemaFileFormat]{ - OutputState: in.ToJsonFileFormatSchemaFileFormatPtrOutputWithContext(ctx).OutputState, - } -} - // The state of the stream. type StreamStateEnum string @@ -554,12 +541,6 @@ func (in *streamStateEnumPtr) ToStreamStateEnumPtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(StreamStateEnumPtrOutput) } -func (in *streamStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*StreamStateEnum] { - return pulumix.Output[*StreamStateEnum]{ - OutputState: in.ToStreamStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*JsonFileFormatCompressionInput)(nil)).Elem(), JsonFileFormatCompression("JSON_COMPRESSION_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*JsonFileFormatCompressionPtrInput)(nil)).Elem(), JsonFileFormatCompression("JSON_COMPRESSION_UNSPECIFIED")) diff --git a/sdk/go/google/datastream/v1alpha1/pulumiEnums.go b/sdk/go/google/datastream/v1alpha1/pulumiEnums.go index 9d5932b1ec..23fb788180 100644 --- a/sdk/go/google/datastream/v1alpha1/pulumiEnums.go +++ b/sdk/go/google/datastream/v1alpha1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // File format that data should be written in. Deprecated field (b/169501737) - use file_format instead. @@ -179,12 +178,6 @@ func (in *gcsDestinationConfigGcsFileFormatPtr) ToGcsDestinationConfigGcsFileFor return pulumi.ToOutputWithContext(ctx, in).(GcsDestinationConfigGcsFileFormatPtrOutput) } -func (in *gcsDestinationConfigGcsFileFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*GcsDestinationConfigGcsFileFormat] { - return pulumix.Output[*GcsDestinationConfigGcsFileFormat]{ - OutputState: in.ToGcsDestinationConfigGcsFileFormatPtrOutputWithContext(ctx).OutputState, - } -} - // Compression of the loaded JSON file. type JsonFileFormatCompression string @@ -356,12 +349,6 @@ func (in *jsonFileFormatCompressionPtr) ToJsonFileFormatCompressionPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(JsonFileFormatCompressionPtrOutput) } -func (in *jsonFileFormatCompressionPtr) ToOutput(ctx context.Context) pulumix.Output[*JsonFileFormatCompression] { - return pulumix.Output[*JsonFileFormatCompression]{ - OutputState: in.ToJsonFileFormatCompressionPtrOutputWithContext(ctx).OutputState, - } -} - // The schema file format along JSON data files. type JsonFileFormatSchemaFileFormat string @@ -533,12 +520,6 @@ func (in *jsonFileFormatSchemaFileFormatPtr) ToJsonFileFormatSchemaFileFormatPtr return pulumi.ToOutputWithContext(ctx, in).(JsonFileFormatSchemaFileFormatPtrOutput) } -func (in *jsonFileFormatSchemaFileFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*JsonFileFormatSchemaFileFormat] { - return pulumix.Output[*JsonFileFormatSchemaFileFormat]{ - OutputState: in.ToJsonFileFormatSchemaFileFormatPtrOutputWithContext(ctx).OutputState, - } -} - // The state of the stream. type StreamStateEnum string @@ -728,12 +709,6 @@ func (in *streamStateEnumPtr) ToStreamStateEnumPtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(StreamStateEnumPtrOutput) } -func (in *streamStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*StreamStateEnum] { - return pulumix.Output[*StreamStateEnum]{ - OutputState: in.ToStreamStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*GcsDestinationConfigGcsFileFormatInput)(nil)).Elem(), GcsDestinationConfigGcsFileFormat("GCS_FILE_FORMAT_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*GcsDestinationConfigGcsFileFormatPtrInput)(nil)).Elem(), GcsDestinationConfigGcsFileFormat("GCS_FILE_FORMAT_UNSPECIFIED")) diff --git a/sdk/go/google/deploymentmanager/alpha/pulumiEnums.go b/sdk/go/google/deploymentmanager/alpha/pulumiEnums.go index bbac47ee58..f98bf99b9e 100644 --- a/sdk/go/google/deploymentmanager/alpha/pulumiEnums.go +++ b/sdk/go/google/deploymentmanager/alpha/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - type CompositeTypeStatus string const ( @@ -373,12 +366,6 @@ func (in *diagnosticLevelPtr) ToDiagnosticLevelPtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(DiagnosticLevelPtrOutput) } -func (in *diagnosticLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*DiagnosticLevel] { - return pulumix.Output[*DiagnosticLevel]{ - OutputState: in.ToDiagnosticLevelPtrOutputWithContext(ctx).OutputState, - } -} - // The location where this mapping applies. type InputMappingLocation string @@ -551,12 +538,6 @@ func (in *inputMappingLocationPtr) ToInputMappingLocationPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(InputMappingLocationPtrOutput) } -func (in *inputMappingLocationPtr) ToOutput(ctx context.Context) pulumix.Output[*InputMappingLocation] { - return pulumix.Output[*InputMappingLocation]{ - OutputState: in.ToInputMappingLocationPtrOutputWithContext(ctx).OutputState, - } -} - // Which interpreter (python or jinja) should be used during expansion. type TemplateContentsInterpreter string @@ -725,12 +706,6 @@ func (in *templateContentsInterpreterPtr) ToTemplateContentsInterpreterPtrOutput return pulumi.ToOutputWithContext(ctx, in).(TemplateContentsInterpreterPtrOutput) } -func (in *templateContentsInterpreterPtr) ToOutput(ctx context.Context) pulumix.Output[*TemplateContentsInterpreter] { - return pulumix.Output[*TemplateContentsInterpreter]{ - OutputState: in.ToTemplateContentsInterpreterPtrOutputWithContext(ctx).OutputState, - } -} - // Customize how deployment manager will validate the resource against schema errors. type ValidationOptionsSchemaValidation string @@ -904,12 +879,6 @@ func (in *validationOptionsSchemaValidationPtr) ToValidationOptionsSchemaValidat return pulumi.ToOutputWithContext(ctx, in).(ValidationOptionsSchemaValidationPtrOutput) } -func (in *validationOptionsSchemaValidationPtr) ToOutput(ctx context.Context) pulumix.Output[*ValidationOptionsSchemaValidation] { - return pulumix.Output[*ValidationOptionsSchemaValidation]{ - OutputState: in.ToValidationOptionsSchemaValidationPtrOutputWithContext(ctx).OutputState, - } -} - // Specify what to do with extra properties when executing a request. type ValidationOptionsUndeclaredProperties string @@ -1089,12 +1058,6 @@ func (in *validationOptionsUndeclaredPropertiesPtr) ToValidationOptionsUndeclare return pulumi.ToOutputWithContext(ctx, in).(ValidationOptionsUndeclaredPropertiesPtrOutput) } -func (in *validationOptionsUndeclaredPropertiesPtr) ToOutput(ctx context.Context) pulumix.Output[*ValidationOptionsUndeclaredProperties] { - return pulumix.Output[*ValidationOptionsUndeclaredProperties]{ - OutputState: in.ToValidationOptionsUndeclaredPropertiesPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/deploymentmanager/v2/pulumiEnums.go b/sdk/go/google/deploymentmanager/v2/pulumiEnums.go index 8e1ef0b464..ddea542f6b 100644 --- a/sdk/go/google/deploymentmanager/v2/pulumiEnums.go +++ b/sdk/go/google/deploymentmanager/v2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/deploymentmanager/v2beta/pulumiEnums.go b/sdk/go/google/deploymentmanager/v2beta/pulumiEnums.go index 1a492ea6ff..2afd0bdff6 100644 --- a/sdk/go/google/deploymentmanager/v2beta/pulumiEnums.go +++ b/sdk/go/google/deploymentmanager/v2beta/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - type CompositeTypeStatus string const ( @@ -373,12 +366,6 @@ func (in *diagnosticLevelPtr) ToDiagnosticLevelPtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(DiagnosticLevelPtrOutput) } -func (in *diagnosticLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*DiagnosticLevel] { - return pulumix.Output[*DiagnosticLevel]{ - OutputState: in.ToDiagnosticLevelPtrOutputWithContext(ctx).OutputState, - } -} - // The location where this mapping applies. type InputMappingLocation string @@ -551,12 +538,6 @@ func (in *inputMappingLocationPtr) ToInputMappingLocationPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(InputMappingLocationPtrOutput) } -func (in *inputMappingLocationPtr) ToOutput(ctx context.Context) pulumix.Output[*InputMappingLocation] { - return pulumix.Output[*InputMappingLocation]{ - OutputState: in.ToInputMappingLocationPtrOutputWithContext(ctx).OutputState, - } -} - // Which interpreter (python or jinja) should be used during expansion. type TemplateContentsInterpreter string @@ -725,12 +706,6 @@ func (in *templateContentsInterpreterPtr) ToTemplateContentsInterpreterPtrOutput return pulumi.ToOutputWithContext(ctx, in).(TemplateContentsInterpreterPtrOutput) } -func (in *templateContentsInterpreterPtr) ToOutput(ctx context.Context) pulumix.Output[*TemplateContentsInterpreter] { - return pulumix.Output[*TemplateContentsInterpreter]{ - OutputState: in.ToTemplateContentsInterpreterPtrOutputWithContext(ctx).OutputState, - } -} - // Customize how deployment manager will validate the resource against schema errors. type ValidationOptionsSchemaValidation string @@ -904,12 +879,6 @@ func (in *validationOptionsSchemaValidationPtr) ToValidationOptionsSchemaValidat return pulumi.ToOutputWithContext(ctx, in).(ValidationOptionsSchemaValidationPtrOutput) } -func (in *validationOptionsSchemaValidationPtr) ToOutput(ctx context.Context) pulumix.Output[*ValidationOptionsSchemaValidation] { - return pulumix.Output[*ValidationOptionsSchemaValidation]{ - OutputState: in.ToValidationOptionsSchemaValidationPtrOutputWithContext(ctx).OutputState, - } -} - // Specify what to do with extra properties when executing a request. type ValidationOptionsUndeclaredProperties string @@ -1089,12 +1058,6 @@ func (in *validationOptionsUndeclaredPropertiesPtr) ToValidationOptionsUndeclare return pulumi.ToOutputWithContext(ctx, in).(ValidationOptionsUndeclaredPropertiesPtrOutput) } -func (in *validationOptionsUndeclaredPropertiesPtr) ToOutput(ctx context.Context) pulumix.Output[*ValidationOptionsUndeclaredProperties] { - return pulumix.Output[*ValidationOptionsUndeclaredProperties]{ - OutputState: in.ToValidationOptionsUndeclaredPropertiesPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/dialogflow/v2/pulumiEnums.go b/sdk/go/google/dialogflow/v2/pulumiEnums.go index be7e77f13b..cfa9ed29e7 100644 --- a/sdk/go/google/dialogflow/v2/pulumiEnums.go +++ b/sdk/go/google/dialogflow/v2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The stage of a conversation. It indicates whether the virtual agent or a human agent is handling the conversation. If the conversation is created with the conversation profile that has Dialogflow config set, defaults to ConversationStage.VIRTUAL_AGENT_STAGE; Otherwise, defaults to ConversationStage.HUMAN_ASSIST_STAGE. If the conversation is created with the conversation profile that has Dialogflow config set but explicitly sets conversation_stage to ConversationStage.HUMAN_ASSIST_STAGE, it skips ConversationStage.VIRTUAL_AGENT_STAGE stage and directly goes to ConversationStage.HUMAN_ASSIST_STAGE. @@ -182,12 +181,6 @@ func (in *conversationConversationStagePtr) ToConversationConversationStagePtrOu return pulumi.ToOutputWithContext(ctx, in).(ConversationConversationStagePtrOutput) } -func (in *conversationConversationStagePtr) ToOutput(ctx context.Context) pulumix.Output[*ConversationConversationStage] { - return pulumix.Output[*ConversationConversationStage]{ - OutputState: in.ToConversationConversationStagePtrOutputWithContext(ctx).OutputState, - } -} - type DocumentKnowledgeTypesItem string const ( @@ -364,12 +357,6 @@ func (in *documentKnowledgeTypesItemPtr) ToDocumentKnowledgeTypesItemPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(DocumentKnowledgeTypesItemPtrOutput) } -func (in *documentKnowledgeTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*DocumentKnowledgeTypesItem] { - return pulumix.Output[*DocumentKnowledgeTypesItem]{ - OutputState: in.ToDocumentKnowledgeTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // DocumentKnowledgeTypesItemArrayInput is an input type that accepts DocumentKnowledgeTypesItemArray and DocumentKnowledgeTypesItemArrayOutput values. // You can construct a concrete instance of `DocumentKnowledgeTypesItemArrayInput` via: // @@ -583,12 +570,6 @@ func (in *entityTypeAutoExpansionModePtr) ToEntityTypeAutoExpansionModePtrOutput return pulumi.ToOutputWithContext(ctx, in).(EntityTypeAutoExpansionModePtrOutput) } -func (in *entityTypeAutoExpansionModePtr) ToOutput(ctx context.Context) pulumix.Output[*EntityTypeAutoExpansionMode] { - return pulumix.Output[*EntityTypeAutoExpansionMode]{ - OutputState: in.ToEntityTypeAutoExpansionModePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Indicates the kind of entity type. type EntityTypeKind string @@ -763,12 +744,6 @@ func (in *entityTypeKindPtr) ToEntityTypeKindPtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(EntityTypeKindPtrOutput) } -func (in *entityTypeKindPtr) ToOutput(ctx context.Context) pulumix.Output[*EntityTypeKind] { - return pulumix.Output[*EntityTypeKind]{ - OutputState: in.ToEntityTypeKindPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Type of the article suggestion model. If not provided, model_type is used. type GoogleCloudDialogflowV2ArticleSuggestionModelMetadataTrainingModelType string @@ -940,12 +915,6 @@ func (in *googleCloudDialogflowV2ArticleSuggestionModelMetadataTrainingModelType return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2ArticleSuggestionModelMetadataTrainingModelTypePtrOutput) } -func (in *googleCloudDialogflowV2ArticleSuggestionModelMetadataTrainingModelTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2ArticleSuggestionModelMetadataTrainingModelType] { - return pulumix.Output[*GoogleCloudDialogflowV2ArticleSuggestionModelMetadataTrainingModelType]{ - OutputState: in.ToGoogleCloudDialogflowV2ArticleSuggestionModelMetadataTrainingModelTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of the feature that enabled for fulfillment. type GoogleCloudDialogflowV2FulfillmentFeatureType string @@ -1114,12 +1083,6 @@ func (in *googleCloudDialogflowV2FulfillmentFeatureTypePtr) ToGoogleCloudDialogf return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2FulfillmentFeatureTypePtrOutput) } -func (in *googleCloudDialogflowV2FulfillmentFeatureTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2FulfillmentFeatureType] { - return pulumix.Output[*GoogleCloudDialogflowV2FulfillmentFeatureType]{ - OutputState: in.ToGoogleCloudDialogflowV2FulfillmentFeatureTypePtrOutputWithContext(ctx).OutputState, - } -} - type GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigSectionsSectionTypesItem string const ( @@ -1302,12 +1265,6 @@ func (in *googleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigS return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigSectionsSectionTypesItemPtrOutput) } -func (in *googleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigSectionsSectionTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigSectionsSectionTypesItem] { - return pulumix.Output[*GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigSectionsSectionTypesItem]{ - OutputState: in.ToGoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigSectionsSectionTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigSectionsSectionTypesItemArrayInput is an input type that accepts GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigSectionsSectionTypesItemArray and GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigSectionsSectionTypesItemArrayOutput values. // You can construct a concrete instance of `GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionQueryConfigSectionsSectionTypesItemArrayInput` via: // @@ -1524,12 +1481,6 @@ func (in *googleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCa return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlActionUrlTypeHintPtrOutput) } -func (in *googleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlActionUrlTypeHintPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlActionUrlTypeHint] { - return pulumix.Output[*GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlActionUrlTypeHint]{ - OutputState: in.ToGoogleCloudDialogflowV2IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlActionUrlTypeHintPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Settings for displaying the image. Applies to every image in items. type GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardImageDisplayOptions string @@ -1707,12 +1658,6 @@ func (in *googleCloudDialogflowV2IntentMessageBrowseCarouselCardImageDisplayOpti return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardImageDisplayOptionsPtrOutput) } -func (in *googleCloudDialogflowV2IntentMessageBrowseCarouselCardImageDisplayOptionsPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardImageDisplayOptions] { - return pulumix.Output[*GoogleCloudDialogflowV2IntentMessageBrowseCarouselCardImageDisplayOptions]{ - OutputState: in.ToGoogleCloudDialogflowV2IntentMessageBrowseCarouselCardImageDisplayOptionsPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Defines text alignment for all cells in this column. type GoogleCloudDialogflowV2IntentMessageColumnPropertiesHorizontalAlignment string @@ -1887,12 +1832,6 @@ func (in *googleCloudDialogflowV2IntentMessageColumnPropertiesHorizontalAlignmen return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2IntentMessageColumnPropertiesHorizontalAlignmentPtrOutput) } -func (in *googleCloudDialogflowV2IntentMessageColumnPropertiesHorizontalAlignmentPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2IntentMessageColumnPropertiesHorizontalAlignment] { - return pulumix.Output[*GoogleCloudDialogflowV2IntentMessageColumnPropertiesHorizontalAlignment]{ - OutputState: in.ToGoogleCloudDialogflowV2IntentMessageColumnPropertiesHorizontalAlignmentPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. What type of media is the content (ie "audio"). type GoogleCloudDialogflowV2IntentMessageMediaContentMediaType string @@ -2061,12 +2000,6 @@ func (in *googleCloudDialogflowV2IntentMessageMediaContentMediaTypePtr) ToGoogle return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2IntentMessageMediaContentMediaTypePtrOutput) } -func (in *googleCloudDialogflowV2IntentMessageMediaContentMediaTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2IntentMessageMediaContentMediaType] { - return pulumix.Output[*GoogleCloudDialogflowV2IntentMessageMediaContentMediaType]{ - OutputState: in.ToGoogleCloudDialogflowV2IntentMessageMediaContentMediaTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The platform that this message is intended for. type GoogleCloudDialogflowV2IntentMessagePlatform string @@ -2259,12 +2192,6 @@ func (in *googleCloudDialogflowV2IntentMessagePlatformPtr) ToGoogleCloudDialogfl return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2IntentMessagePlatformPtrOutput) } -func (in *googleCloudDialogflowV2IntentMessagePlatformPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2IntentMessagePlatform] { - return pulumix.Output[*GoogleCloudDialogflowV2IntentMessagePlatform]{ - OutputState: in.ToGoogleCloudDialogflowV2IntentMessagePlatformPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of the training phrase. type GoogleCloudDialogflowV2IntentTrainingPhraseType string @@ -2436,12 +2363,6 @@ func (in *googleCloudDialogflowV2IntentTrainingPhraseTypePtr) ToGoogleCloudDialo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2IntentTrainingPhraseTypePtrOutput) } -func (in *googleCloudDialogflowV2IntentTrainingPhraseTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2IntentTrainingPhraseType] { - return pulumix.Output[*GoogleCloudDialogflowV2IntentTrainingPhraseType]{ - OutputState: in.ToGoogleCloudDialogflowV2IntentTrainingPhraseTypePtrOutputWithContext(ctx).OutputState, - } -} - // Format of message. type GoogleCloudDialogflowV2NotificationConfigMessageFormat string @@ -2613,12 +2534,6 @@ func (in *googleCloudDialogflowV2NotificationConfigMessageFormatPtr) ToGoogleClo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2NotificationConfigMessageFormatPtrOutput) } -func (in *googleCloudDialogflowV2NotificationConfigMessageFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2NotificationConfigMessageFormat] { - return pulumix.Output[*GoogleCloudDialogflowV2NotificationConfigMessageFormat]{ - OutputState: in.ToGoogleCloudDialogflowV2NotificationConfigMessageFormatPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Type of the smart reply model. If not provided, model_type is used. type GoogleCloudDialogflowV2SmartReplyModelMetadataTrainingModelType string @@ -2790,12 +2705,6 @@ func (in *googleCloudDialogflowV2SmartReplyModelMetadataTrainingModelTypePtr) To return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2SmartReplyModelMetadataTrainingModelTypePtrOutput) } -func (in *googleCloudDialogflowV2SmartReplyModelMetadataTrainingModelTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2SmartReplyModelMetadataTrainingModelType] { - return pulumix.Output[*GoogleCloudDialogflowV2SmartReplyModelMetadataTrainingModelType]{ - OutputState: in.ToGoogleCloudDialogflowV2SmartReplyModelMetadataTrainingModelTypePtrOutputWithContext(ctx).OutputState, - } -} - // The speech model used in speech to text. `SPEECH_MODEL_VARIANT_UNSPECIFIED`, `USE_BEST_AVAILABLE` will be treated as `USE_ENHANCED`. It can be overridden in AnalyzeContentRequest and StreamingAnalyzeContentRequest request. If enhanced model variant is specified and an enhanced version of the specified model for the language does not exist, then it would emit an error. type GoogleCloudDialogflowV2SpeechToTextConfigSpeechModelVariant string @@ -2970,12 +2879,6 @@ func (in *googleCloudDialogflowV2SpeechToTextConfigSpeechModelVariantPtr) ToGoog return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2SpeechToTextConfigSpeechModelVariantPtrOutput) } -func (in *googleCloudDialogflowV2SpeechToTextConfigSpeechModelVariantPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2SpeechToTextConfigSpeechModelVariant] { - return pulumix.Output[*GoogleCloudDialogflowV2SpeechToTextConfigSpeechModelVariant]{ - OutputState: in.ToGoogleCloudDialogflowV2SpeechToTextConfigSpeechModelVariantPtrOutputWithContext(ctx).OutputState, - } -} - // Type of Human Agent Assistant API feature to request. type GoogleCloudDialogflowV2SuggestionFeatureType string @@ -3153,12 +3056,6 @@ func (in *googleCloudDialogflowV2SuggestionFeatureTypePtr) ToGoogleCloudDialogfl return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2SuggestionFeatureTypePtrOutput) } -func (in *googleCloudDialogflowV2SuggestionFeatureTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2SuggestionFeatureType] { - return pulumix.Output[*GoogleCloudDialogflowV2SuggestionFeatureType]{ - OutputState: in.ToGoogleCloudDialogflowV2SuggestionFeatureTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Audio encoding of the synthesized audio content. type GoogleCloudDialogflowV2TextToSpeechSettingsOutputAudioEncoding string @@ -3339,12 +3236,6 @@ func (in *googleCloudDialogflowV2TextToSpeechSettingsOutputAudioEncodingPtr) ToG return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2TextToSpeechSettingsOutputAudioEncodingPtrOutput) } -func (in *googleCloudDialogflowV2TextToSpeechSettingsOutputAudioEncodingPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2TextToSpeechSettingsOutputAudioEncoding] { - return pulumix.Output[*GoogleCloudDialogflowV2TextToSpeechSettingsOutputAudioEncoding]{ - OutputState: in.ToGoogleCloudDialogflowV2TextToSpeechSettingsOutputAudioEncodingPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The preferred gender of the voice. If not set, the service will choose a voice based on the other parameters such as language_code and name. Note that this is only a preference, not requirement. If a voice of the appropriate gender is not available, the synthesizer should substitute a voice with a different gender rather than failing the request. type GoogleCloudDialogflowV2VoiceSelectionParamsSsmlGender string @@ -3519,12 +3410,6 @@ func (in *googleCloudDialogflowV2VoiceSelectionParamsSsmlGenderPtr) ToGoogleClou return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2VoiceSelectionParamsSsmlGenderPtrOutput) } -func (in *googleCloudDialogflowV2VoiceSelectionParamsSsmlGenderPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2VoiceSelectionParamsSsmlGender] { - return pulumix.Output[*GoogleCloudDialogflowV2VoiceSelectionParamsSsmlGender]{ - OutputState: in.ToGoogleCloudDialogflowV2VoiceSelectionParamsSsmlGenderPtrOutputWithContext(ctx).OutputState, - } -} - type IntentDefaultResponsePlatformsItem string const ( @@ -3716,12 +3601,6 @@ func (in *intentDefaultResponsePlatformsItemPtr) ToIntentDefaultResponsePlatform return pulumi.ToOutputWithContext(ctx, in).(IntentDefaultResponsePlatformsItemPtrOutput) } -func (in *intentDefaultResponsePlatformsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*IntentDefaultResponsePlatformsItem] { - return pulumix.Output[*IntentDefaultResponsePlatformsItem]{ - OutputState: in.ToIntentDefaultResponsePlatformsItemPtrOutputWithContext(ctx).OutputState, - } -} - // IntentDefaultResponsePlatformsItemArrayInput is an input type that accepts IntentDefaultResponsePlatformsItemArray and IntentDefaultResponsePlatformsItemArrayOutput values. // You can construct a concrete instance of `IntentDefaultResponsePlatformsItemArrayInput` via: // @@ -3938,12 +3817,6 @@ func (in *intentWebhookStatePtr) ToIntentWebhookStatePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(IntentWebhookStatePtrOutput) } -func (in *intentWebhookStatePtr) ToOutput(ctx context.Context) pulumix.Output[*IntentWebhookState] { - return pulumix.Output[*IntentWebhookState]{ - OutputState: in.ToIntentWebhookStatePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The role this participant plays in the conversation. This field must be set during participant creation and is then immutable. type ParticipantRole string @@ -4118,12 +3991,6 @@ func (in *participantRolePtr) ToParticipantRolePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(ParticipantRolePtrOutput) } -func (in *participantRolePtr) ToOutput(ctx context.Context) pulumix.Output[*ParticipantRole] { - return pulumix.Output[*ParticipantRole]{ - OutputState: in.ToParticipantRolePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Indicates whether the additional data should override or supplement the custom entity type definition. type SessionEntityTypeEntityOverrideMode string @@ -4295,12 +4162,6 @@ func (in *sessionEntityTypeEntityOverrideModePtr) ToSessionEntityTypeEntityOverr return pulumi.ToOutputWithContext(ctx, in).(SessionEntityTypeEntityOverrideModePtrOutput) } -func (in *sessionEntityTypeEntityOverrideModePtr) ToOutput(ctx context.Context) pulumix.Output[*SessionEntityTypeEntityOverrideMode] { - return pulumix.Output[*SessionEntityTypeEntityOverrideMode]{ - OutputState: in.ToSessionEntityTypeEntityOverrideModePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ConversationConversationStageInput)(nil)).Elem(), ConversationConversationStage("CONVERSATION_STAGE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*ConversationConversationStagePtrInput)(nil)).Elem(), ConversationConversationStage("CONVERSATION_STAGE_UNSPECIFIED")) diff --git a/sdk/go/google/dialogflow/v2beta1/pulumiEnums.go b/sdk/go/google/dialogflow/v2beta1/pulumiEnums.go index a23b4d2253..4713d48207 100644 --- a/sdk/go/google/dialogflow/v2beta1/pulumiEnums.go +++ b/sdk/go/google/dialogflow/v2beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The stage of a conversation. It indicates whether the virtual agent or a human agent is handling the conversation. If the conversation is created with the conversation profile that has Dialogflow config set, defaults to ConversationStage.VIRTUAL_AGENT_STAGE; Otherwise, defaults to ConversationStage.HUMAN_ASSIST_STAGE. If the conversation is created with the conversation profile that has Dialogflow config set but explicitly sets conversation_stage to ConversationStage.HUMAN_ASSIST_STAGE, it skips ConversationStage.VIRTUAL_AGENT_STAGE stage and directly goes to ConversationStage.HUMAN_ASSIST_STAGE. @@ -182,12 +181,6 @@ func (in *conversationConversationStagePtr) ToConversationConversationStagePtrOu return pulumi.ToOutputWithContext(ctx, in).(ConversationConversationStagePtrOutput) } -func (in *conversationConversationStagePtr) ToOutput(ctx context.Context) pulumix.Output[*ConversationConversationStage] { - return pulumix.Output[*ConversationConversationStage]{ - OutputState: in.ToConversationConversationStagePtrOutputWithContext(ctx).OutputState, - } -} - type DocumentKnowledgeTypesItem string const ( @@ -367,12 +360,6 @@ func (in *documentKnowledgeTypesItemPtr) ToDocumentKnowledgeTypesItemPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(DocumentKnowledgeTypesItemPtrOutput) } -func (in *documentKnowledgeTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*DocumentKnowledgeTypesItem] { - return pulumix.Output[*DocumentKnowledgeTypesItem]{ - OutputState: in.ToDocumentKnowledgeTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // DocumentKnowledgeTypesItemArrayInput is an input type that accepts DocumentKnowledgeTypesItemArray and DocumentKnowledgeTypesItemArrayOutput values. // You can construct a concrete instance of `DocumentKnowledgeTypesItemArrayInput` via: // @@ -586,12 +573,6 @@ func (in *entityTypeAutoExpansionModePtr) ToEntityTypeAutoExpansionModePtrOutput return pulumi.ToOutputWithContext(ctx, in).(EntityTypeAutoExpansionModePtrOutput) } -func (in *entityTypeAutoExpansionModePtr) ToOutput(ctx context.Context) pulumix.Output[*EntityTypeAutoExpansionMode] { - return pulumix.Output[*EntityTypeAutoExpansionMode]{ - OutputState: in.ToEntityTypeAutoExpansionModePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Indicates the kind of entity type. type EntityTypeKind string @@ -766,12 +747,6 @@ func (in *entityTypeKindPtr) ToEntityTypeKindPtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(EntityTypeKindPtrOutput) } -func (in *entityTypeKindPtr) ToOutput(ctx context.Context) pulumix.Output[*EntityTypeKind] { - return pulumix.Output[*EntityTypeKind]{ - OutputState: in.ToEntityTypeKindPtrOutputWithContext(ctx).OutputState, - } -} - // The type of the feature that enabled for fulfillment. type GoogleCloudDialogflowV2beta1FulfillmentFeatureType string @@ -940,12 +915,6 @@ func (in *googleCloudDialogflowV2beta1FulfillmentFeatureTypePtr) ToGoogleCloudDi return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2beta1FulfillmentFeatureTypePtrOutput) } -func (in *googleCloudDialogflowV2beta1FulfillmentFeatureTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2beta1FulfillmentFeatureType] { - return pulumix.Output[*GoogleCloudDialogflowV2beta1FulfillmentFeatureType]{ - OutputState: in.ToGoogleCloudDialogflowV2beta1FulfillmentFeatureTypePtrOutputWithContext(ctx).OutputState, - } -} - type GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigSectionsSectionTypesItem string const ( @@ -1128,12 +1097,6 @@ func (in *googleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryCo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigSectionsSectionTypesItemPtrOutput) } -func (in *googleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigSectionsSectionTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigSectionsSectionTypesItem] { - return pulumix.Output[*GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigSectionsSectionTypesItem]{ - OutputState: in.ToGoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigSectionsSectionTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigSectionsSectionTypesItemArrayInput is an input type that accepts GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigSectionsSectionTypesItemArray and GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigSectionsSectionTypesItemArrayOutput values. // You can construct a concrete instance of `GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigSectionsSectionTypesItemArrayInput` via: // @@ -1350,12 +1313,6 @@ func (in *googleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarou return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlActionUrlTypeHintPtrOutput) } -func (in *googleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlActionUrlTypeHintPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlActionUrlTypeHint] { - return pulumix.Output[*GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlActionUrlTypeHint]{ - OutputState: in.ToGoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardBrowseCarouselCardItemOpenUrlActionUrlTypeHintPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Settings for displaying the image. Applies to every image in items. type GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardImageDisplayOptions string @@ -1533,12 +1490,6 @@ func (in *googleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardImageDispla return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardImageDisplayOptionsPtrOutput) } -func (in *googleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardImageDisplayOptionsPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardImageDisplayOptions] { - return pulumix.Output[*GoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardImageDisplayOptions]{ - OutputState: in.ToGoogleCloudDialogflowV2beta1IntentMessageBrowseCarouselCardImageDisplayOptionsPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Defines text alignment for all cells in this column. type GoogleCloudDialogflowV2beta1IntentMessageColumnPropertiesHorizontalAlignment string @@ -1713,12 +1664,6 @@ func (in *googleCloudDialogflowV2beta1IntentMessageColumnPropertiesHorizontalAli return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2beta1IntentMessageColumnPropertiesHorizontalAlignmentPtrOutput) } -func (in *googleCloudDialogflowV2beta1IntentMessageColumnPropertiesHorizontalAlignmentPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2beta1IntentMessageColumnPropertiesHorizontalAlignment] { - return pulumix.Output[*GoogleCloudDialogflowV2beta1IntentMessageColumnPropertiesHorizontalAlignment]{ - OutputState: in.ToGoogleCloudDialogflowV2beta1IntentMessageColumnPropertiesHorizontalAlignmentPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. What type of media is the content (ie "audio"). type GoogleCloudDialogflowV2beta1IntentMessageMediaContentMediaType string @@ -1887,12 +1832,6 @@ func (in *googleCloudDialogflowV2beta1IntentMessageMediaContentMediaTypePtr) ToG return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2beta1IntentMessageMediaContentMediaTypePtrOutput) } -func (in *googleCloudDialogflowV2beta1IntentMessageMediaContentMediaTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2beta1IntentMessageMediaContentMediaType] { - return pulumix.Output[*GoogleCloudDialogflowV2beta1IntentMessageMediaContentMediaType]{ - OutputState: in.ToGoogleCloudDialogflowV2beta1IntentMessageMediaContentMediaTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The platform that this message is intended for. type GoogleCloudDialogflowV2beta1IntentMessagePlatform string @@ -2088,12 +2027,6 @@ func (in *googleCloudDialogflowV2beta1IntentMessagePlatformPtr) ToGoogleCloudDia return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2beta1IntentMessagePlatformPtrOutput) } -func (in *googleCloudDialogflowV2beta1IntentMessagePlatformPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2beta1IntentMessagePlatform] { - return pulumix.Output[*GoogleCloudDialogflowV2beta1IntentMessagePlatform]{ - OutputState: in.ToGoogleCloudDialogflowV2beta1IntentMessagePlatformPtrOutputWithContext(ctx).OutputState, - } -} - // Required for cards with vertical orientation. The height of the media within a rich card with a vertical layout. For a standalone card with horizontal layout, height is not customizable, and this field is ignored. type GoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMediaHeight string @@ -2268,12 +2201,6 @@ func (in *googleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMediaHeightP return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMediaHeightPtrOutput) } -func (in *googleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMediaHeightPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMediaHeight] { - return pulumix.Output[*GoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMediaHeight]{ - OutputState: in.ToGoogleCloudDialogflowV2beta1IntentMessageRbmCardContentRbmMediaHeightPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The width of the cards in the carousel. type GoogleCloudDialogflowV2beta1IntentMessageRbmCarouselCardCardWidth string @@ -2445,12 +2372,6 @@ func (in *googleCloudDialogflowV2beta1IntentMessageRbmCarouselCardCardWidthPtr) return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2beta1IntentMessageRbmCarouselCardCardWidthPtrOutput) } -func (in *googleCloudDialogflowV2beta1IntentMessageRbmCarouselCardCardWidthPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2beta1IntentMessageRbmCarouselCardCardWidth] { - return pulumix.Output[*GoogleCloudDialogflowV2beta1IntentMessageRbmCarouselCardCardWidth]{ - OutputState: in.ToGoogleCloudDialogflowV2beta1IntentMessageRbmCarouselCardCardWidthPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Orientation of the card. type GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCardCardOrientation string @@ -2622,12 +2543,6 @@ func (in *googleCloudDialogflowV2beta1IntentMessageRbmStandaloneCardCardOrientat return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCardCardOrientationPtrOutput) } -func (in *googleCloudDialogflowV2beta1IntentMessageRbmStandaloneCardCardOrientationPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCardCardOrientation] { - return pulumix.Output[*GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCardCardOrientation]{ - OutputState: in.ToGoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCardCardOrientationPtrOutputWithContext(ctx).OutputState, - } -} - // Required if orientation is horizontal. Image preview alignment for standalone cards with horizontal layout. type GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCardThumbnailImageAlignment string @@ -2799,12 +2714,6 @@ func (in *googleCloudDialogflowV2beta1IntentMessageRbmStandaloneCardThumbnailIma return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCardThumbnailImageAlignmentPtrOutput) } -func (in *googleCloudDialogflowV2beta1IntentMessageRbmStandaloneCardThumbnailImageAlignmentPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCardThumbnailImageAlignment] { - return pulumix.Output[*GoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCardThumbnailImageAlignment]{ - OutputState: in.ToGoogleCloudDialogflowV2beta1IntentMessageRbmStandaloneCardThumbnailImageAlignmentPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of the training phrase. type GoogleCloudDialogflowV2beta1IntentTrainingPhraseType string @@ -2976,12 +2885,6 @@ func (in *googleCloudDialogflowV2beta1IntentTrainingPhraseTypePtr) ToGoogleCloud return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2beta1IntentTrainingPhraseTypePtrOutput) } -func (in *googleCloudDialogflowV2beta1IntentTrainingPhraseTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2beta1IntentTrainingPhraseType] { - return pulumix.Output[*GoogleCloudDialogflowV2beta1IntentTrainingPhraseType]{ - OutputState: in.ToGoogleCloudDialogflowV2beta1IntentTrainingPhraseTypePtrOutputWithContext(ctx).OutputState, - } -} - // Format of message. type GoogleCloudDialogflowV2beta1NotificationConfigMessageFormat string @@ -3153,12 +3056,6 @@ func (in *googleCloudDialogflowV2beta1NotificationConfigMessageFormatPtr) ToGoog return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2beta1NotificationConfigMessageFormatPtrOutput) } -func (in *googleCloudDialogflowV2beta1NotificationConfigMessageFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2beta1NotificationConfigMessageFormat] { - return pulumix.Output[*GoogleCloudDialogflowV2beta1NotificationConfigMessageFormat]{ - OutputState: in.ToGoogleCloudDialogflowV2beta1NotificationConfigMessageFormatPtrOutputWithContext(ctx).OutputState, - } -} - // The speech model used in speech to text. `SPEECH_MODEL_VARIANT_UNSPECIFIED`, `USE_BEST_AVAILABLE` will be treated as `USE_ENHANCED`. It can be overridden in AnalyzeContentRequest and StreamingAnalyzeContentRequest request. If enhanced model variant is specified and an enhanced version of the specified model for the language does not exist, then it would emit an error. type GoogleCloudDialogflowV2beta1SpeechToTextConfigSpeechModelVariant string @@ -3333,12 +3230,6 @@ func (in *googleCloudDialogflowV2beta1SpeechToTextConfigSpeechModelVariantPtr) T return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2beta1SpeechToTextConfigSpeechModelVariantPtrOutput) } -func (in *googleCloudDialogflowV2beta1SpeechToTextConfigSpeechModelVariantPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2beta1SpeechToTextConfigSpeechModelVariant] { - return pulumix.Output[*GoogleCloudDialogflowV2beta1SpeechToTextConfigSpeechModelVariant]{ - OutputState: in.ToGoogleCloudDialogflowV2beta1SpeechToTextConfigSpeechModelVariantPtrOutputWithContext(ctx).OutputState, - } -} - // Type of Human Agent Assistant API feature to request. type GoogleCloudDialogflowV2beta1SuggestionFeatureType string @@ -3522,12 +3413,6 @@ func (in *googleCloudDialogflowV2beta1SuggestionFeatureTypePtr) ToGoogleCloudDia return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2beta1SuggestionFeatureTypePtrOutput) } -func (in *googleCloudDialogflowV2beta1SuggestionFeatureTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2beta1SuggestionFeatureType] { - return pulumix.Output[*GoogleCloudDialogflowV2beta1SuggestionFeatureType]{ - OutputState: in.ToGoogleCloudDialogflowV2beta1SuggestionFeatureTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Audio encoding of the synthesized audio content. type GoogleCloudDialogflowV2beta1TextToSpeechSettingsOutputAudioEncoding string @@ -3708,12 +3593,6 @@ func (in *googleCloudDialogflowV2beta1TextToSpeechSettingsOutputAudioEncodingPtr return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2beta1TextToSpeechSettingsOutputAudioEncodingPtrOutput) } -func (in *googleCloudDialogflowV2beta1TextToSpeechSettingsOutputAudioEncodingPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2beta1TextToSpeechSettingsOutputAudioEncoding] { - return pulumix.Output[*GoogleCloudDialogflowV2beta1TextToSpeechSettingsOutputAudioEncoding]{ - OutputState: in.ToGoogleCloudDialogflowV2beta1TextToSpeechSettingsOutputAudioEncodingPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The preferred gender of the voice. If not set, the service will choose a voice based on the other parameters such as language_code and name. Note that this is only a preference, not requirement. If a voice of the appropriate gender is not available, the synthesizer should substitute a voice with a different gender rather than failing the request. type GoogleCloudDialogflowV2beta1VoiceSelectionParamsSsmlGender string @@ -3888,12 +3767,6 @@ func (in *googleCloudDialogflowV2beta1VoiceSelectionParamsSsmlGenderPtr) ToGoogl return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowV2beta1VoiceSelectionParamsSsmlGenderPtrOutput) } -func (in *googleCloudDialogflowV2beta1VoiceSelectionParamsSsmlGenderPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowV2beta1VoiceSelectionParamsSsmlGender] { - return pulumix.Output[*GoogleCloudDialogflowV2beta1VoiceSelectionParamsSsmlGender]{ - OutputState: in.ToGoogleCloudDialogflowV2beta1VoiceSelectionParamsSsmlGenderPtrOutputWithContext(ctx).OutputState, - } -} - type IntentDefaultResponsePlatformsItem string const ( @@ -4088,12 +3961,6 @@ func (in *intentDefaultResponsePlatformsItemPtr) ToIntentDefaultResponsePlatform return pulumi.ToOutputWithContext(ctx, in).(IntentDefaultResponsePlatformsItemPtrOutput) } -func (in *intentDefaultResponsePlatformsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*IntentDefaultResponsePlatformsItem] { - return pulumix.Output[*IntentDefaultResponsePlatformsItem]{ - OutputState: in.ToIntentDefaultResponsePlatformsItemPtrOutputWithContext(ctx).OutputState, - } -} - // IntentDefaultResponsePlatformsItemArrayInput is an input type that accepts IntentDefaultResponsePlatformsItemArray and IntentDefaultResponsePlatformsItemArrayOutput values. // You can construct a concrete instance of `IntentDefaultResponsePlatformsItemArrayInput` via: // @@ -4310,12 +4177,6 @@ func (in *intentWebhookStatePtr) ToIntentWebhookStatePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(IntentWebhookStatePtrOutput) } -func (in *intentWebhookStatePtr) ToOutput(ctx context.Context) pulumix.Output[*IntentWebhookState] { - return pulumix.Output[*IntentWebhookState]{ - OutputState: in.ToIntentWebhookStatePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The role this participant plays in the conversation. This field must be set during participant creation and is then immutable. type ParticipantRole string @@ -4490,12 +4351,6 @@ func (in *participantRolePtr) ToParticipantRolePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(ParticipantRolePtrOutput) } -func (in *participantRolePtr) ToOutput(ctx context.Context) pulumix.Output[*ParticipantRole] { - return pulumix.Output[*ParticipantRole]{ - OutputState: in.ToParticipantRolePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Indicates whether the additional data should override or supplement the custom entity type definition. type SessionEntityTypeEntityOverrideMode string @@ -4667,12 +4522,6 @@ func (in *sessionEntityTypeEntityOverrideModePtr) ToSessionEntityTypeEntityOverr return pulumi.ToOutputWithContext(ctx, in).(SessionEntityTypeEntityOverrideModePtrOutput) } -func (in *sessionEntityTypeEntityOverrideModePtr) ToOutput(ctx context.Context) pulumix.Output[*SessionEntityTypeEntityOverrideMode] { - return pulumix.Output[*SessionEntityTypeEntityOverrideMode]{ - OutputState: in.ToSessionEntityTypeEntityOverrideModePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ConversationConversationStageInput)(nil)).Elem(), ConversationConversationStage("CONVERSATION_STAGE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*ConversationConversationStagePtrInput)(nil)).Elem(), ConversationConversationStage("CONVERSATION_STAGE_UNSPECIFIED")) diff --git a/sdk/go/google/dialogflow/v3/pulumiEnums.go b/sdk/go/google/dialogflow/v3/pulumiEnums.go index 816f8b3414..766a906b40 100644 --- a/sdk/go/google/dialogflow/v3/pulumiEnums.go +++ b/sdk/go/google/dialogflow/v3/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Indicates whether the entity type can be automatically expanded. @@ -179,12 +178,6 @@ func (in *entityTypeAutoExpansionModePtr) ToEntityTypeAutoExpansionModePtrOutput return pulumi.ToOutputWithContext(ctx, in).(EntityTypeAutoExpansionModePtrOutput) } -func (in *entityTypeAutoExpansionModePtr) ToOutput(ctx context.Context) pulumix.Output[*EntityTypeAutoExpansionMode] { - return pulumix.Output[*EntityTypeAutoExpansionMode]{ - OutputState: in.ToEntityTypeAutoExpansionModePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Indicates the kind of entity type. type EntityTypeKind string @@ -359,12 +352,6 @@ func (in *entityTypeKindPtr) ToEntityTypeKindPtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(EntityTypeKindPtrOutput) } -func (in *entityTypeKindPtr) ToOutput(ctx context.Context) pulumix.Output[*EntityTypeKind] { - return pulumix.Output[*EntityTypeKind]{ - OutputState: in.ToEntityTypeKindPtrOutputWithContext(ctx).OutputState, - } -} - // The current state of the experiment. Transition triggered by Experiments.StartExperiment: DRAFT->RUNNING. Transition triggered by Experiments.CancelExperiment: DRAFT->DONE or RUNNING->DONE. type ExperimentStateEnum string @@ -542,12 +529,6 @@ func (in *experimentStateEnumPtr) ToExperimentStateEnumPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(ExperimentStateEnumPtrOutput) } -func (in *experimentStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*ExperimentStateEnum] { - return pulumix.Output[*ExperimentStateEnum]{ - OutputState: in.ToExperimentStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // The type of the connected data store. type GoogleCloudDialogflowCxV3DataStoreConnectionDataStoreType string @@ -722,12 +703,6 @@ func (in *googleCloudDialogflowCxV3DataStoreConnectionDataStoreTypePtr) ToGoogle return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3DataStoreConnectionDataStoreTypePtrOutput) } -func (in *googleCloudDialogflowCxV3DataStoreConnectionDataStoreTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3DataStoreConnectionDataStoreType] { - return pulumix.Output[*GoogleCloudDialogflowCxV3DataStoreConnectionDataStoreType]{ - OutputState: in.ToGoogleCloudDialogflowCxV3DataStoreConnectionDataStoreTypePtrOutputWithContext(ctx).OutputState, - } -} - // Count-based metric type. Only one of type or count_type is specified in each Metric. type GoogleCloudDialogflowCxV3ExperimentResultMetricCountType string @@ -902,12 +877,6 @@ func (in *googleCloudDialogflowCxV3ExperimentResultMetricCountTypePtr) ToGoogleC return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3ExperimentResultMetricCountTypePtrOutput) } -func (in *googleCloudDialogflowCxV3ExperimentResultMetricCountTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3ExperimentResultMetricCountType] { - return pulumix.Output[*GoogleCloudDialogflowCxV3ExperimentResultMetricCountType]{ - OutputState: in.ToGoogleCloudDialogflowCxV3ExperimentResultMetricCountTypePtrOutputWithContext(ctx).OutputState, - } -} - // Ratio-based metric type. Only one of type or count_type is specified in each Metric. type GoogleCloudDialogflowCxV3ExperimentResultMetricType string @@ -1088,12 +1057,6 @@ func (in *googleCloudDialogflowCxV3ExperimentResultMetricTypePtr) ToGoogleCloudD return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3ExperimentResultMetricTypePtrOutput) } -func (in *googleCloudDialogflowCxV3ExperimentResultMetricTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3ExperimentResultMetricType] { - return pulumix.Output[*GoogleCloudDialogflowCxV3ExperimentResultMetricType]{ - OutputState: in.ToGoogleCloudDialogflowCxV3ExperimentResultMetricTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Audio encoding of the audio content to process. type GoogleCloudDialogflowCxV3InputAudioConfigAudioEncoding string @@ -1280,12 +1243,6 @@ func (in *googleCloudDialogflowCxV3InputAudioConfigAudioEncodingPtr) ToGoogleClo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3InputAudioConfigAudioEncodingPtrOutput) } -func (in *googleCloudDialogflowCxV3InputAudioConfigAudioEncodingPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3InputAudioConfigAudioEncoding] { - return pulumix.Output[*GoogleCloudDialogflowCxV3InputAudioConfigAudioEncoding]{ - OutputState: in.ToGoogleCloudDialogflowCxV3InputAudioConfigAudioEncodingPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Which variant of the Speech model to use. type GoogleCloudDialogflowCxV3InputAudioConfigModelVariant string @@ -1460,12 +1417,6 @@ func (in *googleCloudDialogflowCxV3InputAudioConfigModelVariantPtr) ToGoogleClou return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3InputAudioConfigModelVariantPtrOutput) } -func (in *googleCloudDialogflowCxV3InputAudioConfigModelVariantPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3InputAudioConfigModelVariant] { - return pulumix.Output[*GoogleCloudDialogflowCxV3InputAudioConfigModelVariant]{ - OutputState: in.ToGoogleCloudDialogflowCxV3InputAudioConfigModelVariantPtrOutputWithContext(ctx).OutputState, - } -} - // Indicates NLU model training mode. type GoogleCloudDialogflowCxV3NluSettingsModelTrainingMode string @@ -1637,12 +1588,6 @@ func (in *googleCloudDialogflowCxV3NluSettingsModelTrainingModePtr) ToGoogleClou return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3NluSettingsModelTrainingModePtrOutput) } -func (in *googleCloudDialogflowCxV3NluSettingsModelTrainingModePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3NluSettingsModelTrainingMode] { - return pulumix.Output[*GoogleCloudDialogflowCxV3NluSettingsModelTrainingMode]{ - OutputState: in.ToGoogleCloudDialogflowCxV3NluSettingsModelTrainingModePtrOutputWithContext(ctx).OutputState, - } -} - // Indicates the type of NLU model. type GoogleCloudDialogflowCxV3NluSettingsModelType string @@ -1814,12 +1759,6 @@ func (in *googleCloudDialogflowCxV3NluSettingsModelTypePtr) ToGoogleCloudDialogf return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3NluSettingsModelTypePtrOutput) } -func (in *googleCloudDialogflowCxV3NluSettingsModelTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3NluSettingsModelType] { - return pulumix.Output[*GoogleCloudDialogflowCxV3NluSettingsModelType]{ - OutputState: in.ToGoogleCloudDialogflowCxV3NluSettingsModelTypePtrOutputWithContext(ctx).OutputState, - } -} - // Response type. type GoogleCloudDialogflowCxV3ResponseMessageResponseType string @@ -1994,12 +1933,6 @@ func (in *googleCloudDialogflowCxV3ResponseMessageResponseTypePtr) ToGoogleCloud return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3ResponseMessageResponseTypePtrOutput) } -func (in *googleCloudDialogflowCxV3ResponseMessageResponseTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3ResponseMessageResponseType] { - return pulumix.Output[*GoogleCloudDialogflowCxV3ResponseMessageResponseType]{ - OutputState: in.ToGoogleCloudDialogflowCxV3ResponseMessageResponseTypePtrOutputWithContext(ctx).OutputState, - } -} - // File format for exported audio file. Currently only in telephony recordings. type GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettingsAudioFormat string @@ -2174,12 +2107,6 @@ func (in *googleCloudDialogflowCxV3SecuritySettingsAudioExportSettingsAudioForma return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettingsAudioFormatPtrOutput) } -func (in *googleCloudDialogflowCxV3SecuritySettingsAudioExportSettingsAudioFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettingsAudioFormat] { - return pulumix.Output[*GoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettingsAudioFormat]{ - OutputState: in.ToGoogleCloudDialogflowCxV3SecuritySettingsAudioExportSettingsAudioFormatPtrOutputWithContext(ctx).OutputState, - } -} - // Whether the test case passed in the agent environment. type GoogleCloudDialogflowCxV3TestCaseResultTestResult string @@ -2351,12 +2278,6 @@ func (in *googleCloudDialogflowCxV3TestCaseResultTestResultPtr) ToGoogleCloudDia return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3TestCaseResultTestResultPtrOutput) } -func (in *googleCloudDialogflowCxV3TestCaseResultTestResultPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3TestCaseResultTestResult] { - return pulumix.Output[*GoogleCloudDialogflowCxV3TestCaseResultTestResult]{ - OutputState: in.ToGoogleCloudDialogflowCxV3TestCaseResultTestResultPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. HTTP method for the flexible webhook calls. Standard webhook always uses POST. type GoogleCloudDialogflowCxV3WebhookGenericWebServiceHttpMethod string @@ -2543,12 +2464,6 @@ func (in *googleCloudDialogflowCxV3WebhookGenericWebServiceHttpMethodPtr) ToGoog return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3WebhookGenericWebServiceHttpMethodPtrOutput) } -func (in *googleCloudDialogflowCxV3WebhookGenericWebServiceHttpMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3WebhookGenericWebServiceHttpMethod] { - return pulumix.Output[*GoogleCloudDialogflowCxV3WebhookGenericWebServiceHttpMethod]{ - OutputState: in.ToGoogleCloudDialogflowCxV3WebhookGenericWebServiceHttpMethodPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Type of the webhook. type GoogleCloudDialogflowCxV3WebhookGenericWebServiceWebhookType string @@ -2720,12 +2635,6 @@ func (in *googleCloudDialogflowCxV3WebhookGenericWebServiceWebhookTypePtr) ToGoo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3WebhookGenericWebServiceWebhookTypePtrOutput) } -func (in *googleCloudDialogflowCxV3WebhookGenericWebServiceWebhookTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3WebhookGenericWebServiceWebhookType] { - return pulumix.Output[*GoogleCloudDialogflowCxV3WebhookGenericWebServiceWebhookType]{ - OutputState: in.ToGoogleCloudDialogflowCxV3WebhookGenericWebServiceWebhookTypePtrOutputWithContext(ctx).OutputState, - } -} - type SecuritySettingPurgeDataTypesItem string const ( @@ -2893,12 +2802,6 @@ func (in *securitySettingPurgeDataTypesItemPtr) ToSecuritySettingPurgeDataTypesI return pulumi.ToOutputWithContext(ctx, in).(SecuritySettingPurgeDataTypesItemPtrOutput) } -func (in *securitySettingPurgeDataTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*SecuritySettingPurgeDataTypesItem] { - return pulumix.Output[*SecuritySettingPurgeDataTypesItem]{ - OutputState: in.ToSecuritySettingPurgeDataTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // SecuritySettingPurgeDataTypesItemArrayInput is an input type that accepts SecuritySettingPurgeDataTypesItemArray and SecuritySettingPurgeDataTypesItemArrayOutput values. // You can construct a concrete instance of `SecuritySettingPurgeDataTypesItemArrayInput` via: // @@ -3112,12 +3015,6 @@ func (in *securitySettingRedactionScopePtr) ToSecuritySettingRedactionScopePtrOu return pulumi.ToOutputWithContext(ctx, in).(SecuritySettingRedactionScopePtrOutput) } -func (in *securitySettingRedactionScopePtr) ToOutput(ctx context.Context) pulumix.Output[*SecuritySettingRedactionScope] { - return pulumix.Output[*SecuritySettingRedactionScope]{ - OutputState: in.ToSecuritySettingRedactionScopePtrOutputWithContext(ctx).OutputState, - } -} - // Strategy that defines how we do redaction. type SecuritySettingRedactionStrategy string @@ -3286,12 +3183,6 @@ func (in *securitySettingRedactionStrategyPtr) ToSecuritySettingRedactionStrateg return pulumi.ToOutputWithContext(ctx, in).(SecuritySettingRedactionStrategyPtrOutput) } -func (in *securitySettingRedactionStrategyPtr) ToOutput(ctx context.Context) pulumix.Output[*SecuritySettingRedactionStrategy] { - return pulumix.Output[*SecuritySettingRedactionStrategy]{ - OutputState: in.ToSecuritySettingRedactionStrategyPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the retention behavior defined by SecuritySettings.RetentionStrategy. type SecuritySettingRetentionStrategy string @@ -3460,12 +3351,6 @@ func (in *securitySettingRetentionStrategyPtr) ToSecuritySettingRetentionStrateg return pulumi.ToOutputWithContext(ctx, in).(SecuritySettingRetentionStrategyPtrOutput) } -func (in *securitySettingRetentionStrategyPtr) ToOutput(ctx context.Context) pulumix.Output[*SecuritySettingRetentionStrategy] { - return pulumix.Output[*SecuritySettingRetentionStrategy]{ - OutputState: in.ToSecuritySettingRetentionStrategyPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Indicates whether the additional data should override or supplement the custom entity type definition. type SessionEntityTypeEntityOverrideMode string @@ -3637,12 +3522,6 @@ func (in *sessionEntityTypeEntityOverrideModePtr) ToSessionEntityTypeEntityOverr return pulumi.ToOutputWithContext(ctx, in).(SessionEntityTypeEntityOverrideModePtrOutput) } -func (in *sessionEntityTypeEntityOverrideModePtr) ToOutput(ctx context.Context) pulumix.Output[*SessionEntityTypeEntityOverrideMode] { - return pulumix.Output[*SessionEntityTypeEntityOverrideMode]{ - OutputState: in.ToSessionEntityTypeEntityOverrideModePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*EntityTypeAutoExpansionModeInput)(nil)).Elem(), EntityTypeAutoExpansionMode("AUTO_EXPANSION_MODE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*EntityTypeAutoExpansionModePtrInput)(nil)).Elem(), EntityTypeAutoExpansionMode("AUTO_EXPANSION_MODE_UNSPECIFIED")) diff --git a/sdk/go/google/dialogflow/v3beta1/pulumiEnums.go b/sdk/go/google/dialogflow/v3beta1/pulumiEnums.go index 57e192f5c3..23013a00b5 100644 --- a/sdk/go/google/dialogflow/v3beta1/pulumiEnums.go +++ b/sdk/go/google/dialogflow/v3beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Indicates whether the entity type can be automatically expanded. @@ -179,12 +178,6 @@ func (in *entityTypeAutoExpansionModePtr) ToEntityTypeAutoExpansionModePtrOutput return pulumi.ToOutputWithContext(ctx, in).(EntityTypeAutoExpansionModePtrOutput) } -func (in *entityTypeAutoExpansionModePtr) ToOutput(ctx context.Context) pulumix.Output[*EntityTypeAutoExpansionMode] { - return pulumix.Output[*EntityTypeAutoExpansionMode]{ - OutputState: in.ToEntityTypeAutoExpansionModePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Indicates the kind of entity type. type EntityTypeKind string @@ -359,12 +352,6 @@ func (in *entityTypeKindPtr) ToEntityTypeKindPtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(EntityTypeKindPtrOutput) } -func (in *entityTypeKindPtr) ToOutput(ctx context.Context) pulumix.Output[*EntityTypeKind] { - return pulumix.Output[*EntityTypeKind]{ - OutputState: in.ToEntityTypeKindPtrOutputWithContext(ctx).OutputState, - } -} - // The current state of the experiment. Transition triggered by Experiments.StartExperiment: DRAFT->RUNNING. Transition triggered by Experiments.CancelExperiment: DRAFT->DONE or RUNNING->DONE. type ExperimentStateEnum string @@ -542,12 +529,6 @@ func (in *experimentStateEnumPtr) ToExperimentStateEnumPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(ExperimentStateEnumPtrOutput) } -func (in *experimentStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*ExperimentStateEnum] { - return pulumix.Output[*ExperimentStateEnum]{ - OutputState: in.ToExperimentStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // The type of the connected data store. type GoogleCloudDialogflowCxV3beta1DataStoreConnectionDataStoreType string @@ -722,12 +703,6 @@ func (in *googleCloudDialogflowCxV3beta1DataStoreConnectionDataStoreTypePtr) ToG return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3beta1DataStoreConnectionDataStoreTypePtrOutput) } -func (in *googleCloudDialogflowCxV3beta1DataStoreConnectionDataStoreTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3beta1DataStoreConnectionDataStoreType] { - return pulumix.Output[*GoogleCloudDialogflowCxV3beta1DataStoreConnectionDataStoreType]{ - OutputState: in.ToGoogleCloudDialogflowCxV3beta1DataStoreConnectionDataStoreTypePtrOutputWithContext(ctx).OutputState, - } -} - // Count-based metric type. Only one of type or count_type is specified in each Metric. type GoogleCloudDialogflowCxV3beta1ExperimentResultMetricCountType string @@ -902,12 +877,6 @@ func (in *googleCloudDialogflowCxV3beta1ExperimentResultMetricCountTypePtr) ToGo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3beta1ExperimentResultMetricCountTypePtrOutput) } -func (in *googleCloudDialogflowCxV3beta1ExperimentResultMetricCountTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3beta1ExperimentResultMetricCountType] { - return pulumix.Output[*GoogleCloudDialogflowCxV3beta1ExperimentResultMetricCountType]{ - OutputState: in.ToGoogleCloudDialogflowCxV3beta1ExperimentResultMetricCountTypePtrOutputWithContext(ctx).OutputState, - } -} - // Ratio-based metric type. Only one of type or count_type is specified in each Metric. type GoogleCloudDialogflowCxV3beta1ExperimentResultMetricType string @@ -1088,12 +1057,6 @@ func (in *googleCloudDialogflowCxV3beta1ExperimentResultMetricTypePtr) ToGoogleC return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3beta1ExperimentResultMetricTypePtrOutput) } -func (in *googleCloudDialogflowCxV3beta1ExperimentResultMetricTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3beta1ExperimentResultMetricType] { - return pulumix.Output[*GoogleCloudDialogflowCxV3beta1ExperimentResultMetricType]{ - OutputState: in.ToGoogleCloudDialogflowCxV3beta1ExperimentResultMetricTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Audio encoding of the audio content to process. type GoogleCloudDialogflowCxV3beta1InputAudioConfigAudioEncoding string @@ -1280,12 +1243,6 @@ func (in *googleCloudDialogflowCxV3beta1InputAudioConfigAudioEncodingPtr) ToGoog return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3beta1InputAudioConfigAudioEncodingPtrOutput) } -func (in *googleCloudDialogflowCxV3beta1InputAudioConfigAudioEncodingPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3beta1InputAudioConfigAudioEncoding] { - return pulumix.Output[*GoogleCloudDialogflowCxV3beta1InputAudioConfigAudioEncoding]{ - OutputState: in.ToGoogleCloudDialogflowCxV3beta1InputAudioConfigAudioEncodingPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Which variant of the Speech model to use. type GoogleCloudDialogflowCxV3beta1InputAudioConfigModelVariant string @@ -1460,12 +1417,6 @@ func (in *googleCloudDialogflowCxV3beta1InputAudioConfigModelVariantPtr) ToGoogl return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3beta1InputAudioConfigModelVariantPtrOutput) } -func (in *googleCloudDialogflowCxV3beta1InputAudioConfigModelVariantPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3beta1InputAudioConfigModelVariant] { - return pulumix.Output[*GoogleCloudDialogflowCxV3beta1InputAudioConfigModelVariant]{ - OutputState: in.ToGoogleCloudDialogflowCxV3beta1InputAudioConfigModelVariantPtrOutputWithContext(ctx).OutputState, - } -} - // Indicates NLU model training mode. type GoogleCloudDialogflowCxV3beta1NluSettingsModelTrainingMode string @@ -1637,12 +1588,6 @@ func (in *googleCloudDialogflowCxV3beta1NluSettingsModelTrainingModePtr) ToGoogl return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3beta1NluSettingsModelTrainingModePtrOutput) } -func (in *googleCloudDialogflowCxV3beta1NluSettingsModelTrainingModePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3beta1NluSettingsModelTrainingMode] { - return pulumix.Output[*GoogleCloudDialogflowCxV3beta1NluSettingsModelTrainingMode]{ - OutputState: in.ToGoogleCloudDialogflowCxV3beta1NluSettingsModelTrainingModePtrOutputWithContext(ctx).OutputState, - } -} - // Indicates the type of NLU model. type GoogleCloudDialogflowCxV3beta1NluSettingsModelType string @@ -1814,12 +1759,6 @@ func (in *googleCloudDialogflowCxV3beta1NluSettingsModelTypePtr) ToGoogleCloudDi return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3beta1NluSettingsModelTypePtrOutput) } -func (in *googleCloudDialogflowCxV3beta1NluSettingsModelTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3beta1NluSettingsModelType] { - return pulumix.Output[*GoogleCloudDialogflowCxV3beta1NluSettingsModelType]{ - OutputState: in.ToGoogleCloudDialogflowCxV3beta1NluSettingsModelTypePtrOutputWithContext(ctx).OutputState, - } -} - // File format for exported audio file. Currently only in telephony recordings. type GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettingsAudioFormat string @@ -1994,12 +1933,6 @@ func (in *googleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettingsAudio return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettingsAudioFormatPtrOutput) } -func (in *googleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettingsAudioFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettingsAudioFormat] { - return pulumix.Output[*GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettingsAudioFormat]{ - OutputState: in.ToGoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettingsAudioFormatPtrOutputWithContext(ctx).OutputState, - } -} - // Whether the test case passed in the agent environment. type GoogleCloudDialogflowCxV3beta1TestCaseResultTestResult string @@ -2171,12 +2104,6 @@ func (in *googleCloudDialogflowCxV3beta1TestCaseResultTestResultPtr) ToGoogleClo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3beta1TestCaseResultTestResultPtrOutput) } -func (in *googleCloudDialogflowCxV3beta1TestCaseResultTestResultPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3beta1TestCaseResultTestResult] { - return pulumix.Output[*GoogleCloudDialogflowCxV3beta1TestCaseResultTestResult]{ - OutputState: in.ToGoogleCloudDialogflowCxV3beta1TestCaseResultTestResultPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. HTTP method for the flexible webhook calls. Standard webhook always uses POST. type GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceHttpMethod string @@ -2363,12 +2290,6 @@ func (in *googleCloudDialogflowCxV3beta1WebhookGenericWebServiceHttpMethodPtr) T return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceHttpMethodPtrOutput) } -func (in *googleCloudDialogflowCxV3beta1WebhookGenericWebServiceHttpMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceHttpMethod] { - return pulumix.Output[*GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceHttpMethod]{ - OutputState: in.ToGoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceHttpMethodPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Type of the webhook. type GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceWebhookType string @@ -2540,12 +2461,6 @@ func (in *googleCloudDialogflowCxV3beta1WebhookGenericWebServiceWebhookTypePtr) return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceWebhookTypePtrOutput) } -func (in *googleCloudDialogflowCxV3beta1WebhookGenericWebServiceWebhookTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceWebhookType] { - return pulumix.Output[*GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceWebhookType]{ - OutputState: in.ToGoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceWebhookTypePtrOutputWithContext(ctx).OutputState, - } -} - type SecuritySettingPurgeDataTypesItem string const ( @@ -2713,12 +2628,6 @@ func (in *securitySettingPurgeDataTypesItemPtr) ToSecuritySettingPurgeDataTypesI return pulumi.ToOutputWithContext(ctx, in).(SecuritySettingPurgeDataTypesItemPtrOutput) } -func (in *securitySettingPurgeDataTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*SecuritySettingPurgeDataTypesItem] { - return pulumix.Output[*SecuritySettingPurgeDataTypesItem]{ - OutputState: in.ToSecuritySettingPurgeDataTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // SecuritySettingPurgeDataTypesItemArrayInput is an input type that accepts SecuritySettingPurgeDataTypesItemArray and SecuritySettingPurgeDataTypesItemArrayOutput values. // You can construct a concrete instance of `SecuritySettingPurgeDataTypesItemArrayInput` via: // @@ -2932,12 +2841,6 @@ func (in *securitySettingRedactionScopePtr) ToSecuritySettingRedactionScopePtrOu return pulumi.ToOutputWithContext(ctx, in).(SecuritySettingRedactionScopePtrOutput) } -func (in *securitySettingRedactionScopePtr) ToOutput(ctx context.Context) pulumix.Output[*SecuritySettingRedactionScope] { - return pulumix.Output[*SecuritySettingRedactionScope]{ - OutputState: in.ToSecuritySettingRedactionScopePtrOutputWithContext(ctx).OutputState, - } -} - // Strategy that defines how we do redaction. type SecuritySettingRedactionStrategy string @@ -3106,12 +3009,6 @@ func (in *securitySettingRedactionStrategyPtr) ToSecuritySettingRedactionStrateg return pulumi.ToOutputWithContext(ctx, in).(SecuritySettingRedactionStrategyPtrOutput) } -func (in *securitySettingRedactionStrategyPtr) ToOutput(ctx context.Context) pulumix.Output[*SecuritySettingRedactionStrategy] { - return pulumix.Output[*SecuritySettingRedactionStrategy]{ - OutputState: in.ToSecuritySettingRedactionStrategyPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the retention behavior defined by SecuritySettings.RetentionStrategy. type SecuritySettingRetentionStrategy string @@ -3280,12 +3177,6 @@ func (in *securitySettingRetentionStrategyPtr) ToSecuritySettingRetentionStrateg return pulumi.ToOutputWithContext(ctx, in).(SecuritySettingRetentionStrategyPtrOutput) } -func (in *securitySettingRetentionStrategyPtr) ToOutput(ctx context.Context) pulumix.Output[*SecuritySettingRetentionStrategy] { - return pulumix.Output[*SecuritySettingRetentionStrategy]{ - OutputState: in.ToSecuritySettingRetentionStrategyPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Indicates whether the additional data should override or supplement the custom entity type definition. type SessionEntityTypeEntityOverrideMode string @@ -3457,12 +3348,6 @@ func (in *sessionEntityTypeEntityOverrideModePtr) ToSessionEntityTypeEntityOverr return pulumi.ToOutputWithContext(ctx, in).(SessionEntityTypeEntityOverrideModePtrOutput) } -func (in *sessionEntityTypeEntityOverrideModePtr) ToOutput(ctx context.Context) pulumix.Output[*SessionEntityTypeEntityOverrideMode] { - return pulumix.Output[*SessionEntityTypeEntityOverrideMode]{ - OutputState: in.ToSessionEntityTypeEntityOverrideModePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*EntityTypeAutoExpansionModeInput)(nil)).Elem(), EntityTypeAutoExpansionMode("AUTO_EXPANSION_MODE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*EntityTypeAutoExpansionModePtrInput)(nil)).Elem(), EntityTypeAutoExpansionMode("AUTO_EXPANSION_MODE_UNSPECIFIED")) diff --git a/sdk/go/google/discoveryengine/v1alpha/pulumiEnums.go b/sdk/go/google/discoveryengine/v1alpha/pulumiEnums.go index b9e60fb55f..c4c5eb2433 100644 --- a/sdk/go/google/discoveryengine/v1alpha/pulumiEnums.go +++ b/sdk/go/google/discoveryengine/v1alpha/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The state of the Conversation. @@ -182,12 +181,6 @@ func (in *conversationStateEnumPtr) ToConversationStateEnumPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ConversationStateEnumPtrOutput) } -func (in *conversationStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*ConversationStateEnum] { - return pulumix.Output[*ConversationStateEnum]{ - OutputState: in.ToConversationStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The content config of the data store. If this field is unset, the server behavior defaults to ContentConfig.NO_CONTENT. type DataStoreContentConfig string @@ -362,12 +355,6 @@ func (in *dataStoreContentConfigPtr) ToDataStoreContentConfigPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(DataStoreContentConfigPtrOutput) } -func (in *dataStoreContentConfigPtr) ToOutput(ctx context.Context) pulumix.Output[*DataStoreContentConfig] { - return pulumix.Output[*DataStoreContentConfig]{ - OutputState: in.ToDataStoreContentConfigPtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The industry vertical that the data store registers. type DataStoreIndustryVertical string @@ -539,12 +526,6 @@ func (in *dataStoreIndustryVerticalPtr) ToDataStoreIndustryVerticalPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(DataStoreIndustryVerticalPtrOutput) } -func (in *dataStoreIndustryVerticalPtr) ToOutput(ctx context.Context) pulumix.Output[*DataStoreIndustryVertical] { - return pulumix.Output[*DataStoreIndustryVertical]{ - OutputState: in.ToDataStoreIndustryVerticalPtrOutputWithContext(ctx).OutputState, - } -} - type DataStoreSolutionTypesItem string const ( @@ -718,12 +699,6 @@ func (in *dataStoreSolutionTypesItemPtr) ToDataStoreSolutionTypesItemPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(DataStoreSolutionTypesItemPtrOutput) } -func (in *dataStoreSolutionTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*DataStoreSolutionTypesItem] { - return pulumix.Output[*DataStoreSolutionTypesItem]{ - OutputState: in.ToDataStoreSolutionTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // DataStoreSolutionTypesItemArrayInput is an input type that accepts DataStoreSolutionTypesItemArray and DataStoreSolutionTypesItemArrayOutput values. // You can construct a concrete instance of `DataStoreSolutionTypesItemArrayInput` via: // @@ -940,12 +915,6 @@ func (in *engineIndustryVerticalPtr) ToEngineIndustryVerticalPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(EngineIndustryVerticalPtrOutput) } -func (in *engineIndustryVerticalPtr) ToOutput(ctx context.Context) pulumix.Output[*EngineIndustryVertical] { - return pulumix.Output[*EngineIndustryVertical]{ - OutputState: in.ToEngineIndustryVerticalPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The solutions of the engine. type EngineSolutionType string @@ -1120,12 +1089,6 @@ func (in *engineSolutionTypePtr) ToEngineSolutionTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(EngineSolutionTypePtrOutput) } -func (in *engineSolutionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EngineSolutionType] { - return pulumix.Output[*EngineSolutionType]{ - OutputState: in.ToEngineSolutionTypePtrOutputWithContext(ctx).OutputState, - } -} - // The training state that the engine is in (e.g. `TRAINING` or `PAUSED`). Since part of the cost of running the service is frequency of training - this can be used to determine when to train engine in order to control cost. If not specified: the default value for `CreateEngine` method is `TRAINING`. The default value for `UpdateEngine` method is to keep the state the same as before. type GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfigTrainingState string @@ -1297,12 +1260,6 @@ func (in *googleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfigTrainingStatePtrOutput) } -func (in *googleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfigTrainingStatePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfigTrainingState] { - return pulumix.Output[*GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfigTrainingState]{ - OutputState: in.ToGoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfigTrainingStatePtrOutputWithContext(ctx).OutputState, - } -} - type GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfigSearchAddOnsItem string const ( @@ -1470,12 +1427,6 @@ func (in *googleCloudDiscoveryengineV1alphaEngineSearchEngineConfigSearchAddOnsI return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfigSearchAddOnsItemPtrOutput) } -func (in *googleCloudDiscoveryengineV1alphaEngineSearchEngineConfigSearchAddOnsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfigSearchAddOnsItem] { - return pulumix.Output[*GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfigSearchAddOnsItem]{ - OutputState: in.ToGoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfigSearchAddOnsItemPtrOutputWithContext(ctx).OutputState, - } -} - // GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfigSearchAddOnsItemArrayInput is an input type that accepts GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfigSearchAddOnsItemArray and GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfigSearchAddOnsItemArrayOutput values. // You can construct a concrete instance of `GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfigSearchAddOnsItemArrayInput` via: // @@ -1692,12 +1643,6 @@ func (in *googleCloudDiscoveryengineV1alphaEngineSearchEngineConfigSearchTierPtr return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfigSearchTierPtrOutput) } -func (in *googleCloudDiscoveryengineV1alphaEngineSearchEngineConfigSearchTierPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfigSearchTier] { - return pulumix.Output[*GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfigSearchTier]{ - OutputState: in.ToGoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfigSearchTierPtrOutputWithContext(ctx).OutputState, - } -} - type GoogleCloudDiscoveryengineV1alphaSearchResponseSummarySummarySkippedReasonsItem string const ( @@ -1877,12 +1822,6 @@ func (in *googleCloudDiscoveryengineV1alphaSearchResponseSummarySummarySkippedRe return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDiscoveryengineV1alphaSearchResponseSummarySummarySkippedReasonsItemPtrOutput) } -func (in *googleCloudDiscoveryengineV1alphaSearchResponseSummarySummarySkippedReasonsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDiscoveryengineV1alphaSearchResponseSummarySummarySkippedReasonsItem] { - return pulumix.Output[*GoogleCloudDiscoveryengineV1alphaSearchResponseSummarySummarySkippedReasonsItem]{ - OutputState: in.ToGoogleCloudDiscoveryengineV1alphaSearchResponseSummarySummarySkippedReasonsItemPtrOutputWithContext(ctx).OutputState, - } -} - // GoogleCloudDiscoveryengineV1alphaSearchResponseSummarySummarySkippedReasonsItemArrayInput is an input type that accepts GoogleCloudDiscoveryengineV1alphaSearchResponseSummarySummarySkippedReasonsItemArray and GoogleCloudDiscoveryengineV1alphaSearchResponseSummarySummarySkippedReasonsItemArrayOutput values. // You can construct a concrete instance of `GoogleCloudDiscoveryengineV1alphaSearchResponseSummarySummarySkippedReasonsItemArrayInput` via: // diff --git a/sdk/go/google/discoveryengine/v1beta/pulumiEnums.go b/sdk/go/google/discoveryengine/v1beta/pulumiEnums.go index 33190d70fd..27768795a2 100644 --- a/sdk/go/google/discoveryengine/v1beta/pulumiEnums.go +++ b/sdk/go/google/discoveryengine/v1beta/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The state of the Conversation. @@ -182,12 +181,6 @@ func (in *conversationStateEnumPtr) ToConversationStateEnumPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ConversationStateEnumPtrOutput) } -func (in *conversationStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*ConversationStateEnum] { - return pulumix.Output[*ConversationStateEnum]{ - OutputState: in.ToConversationStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - type GoogleCloudDiscoveryengineV1betaSearchResponseSummarySummarySkippedReasonsItem string const ( @@ -367,12 +360,6 @@ func (in *googleCloudDiscoveryengineV1betaSearchResponseSummarySummarySkippedRea return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudDiscoveryengineV1betaSearchResponseSummarySummarySkippedReasonsItemPtrOutput) } -func (in *googleCloudDiscoveryengineV1betaSearchResponseSummarySummarySkippedReasonsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudDiscoveryengineV1betaSearchResponseSummarySummarySkippedReasonsItem] { - return pulumix.Output[*GoogleCloudDiscoveryengineV1betaSearchResponseSummarySummarySkippedReasonsItem]{ - OutputState: in.ToGoogleCloudDiscoveryengineV1betaSearchResponseSummarySummarySkippedReasonsItemPtrOutputWithContext(ctx).OutputState, - } -} - // GoogleCloudDiscoveryengineV1betaSearchResponseSummarySummarySkippedReasonsItemArrayInput is an input type that accepts GoogleCloudDiscoveryengineV1betaSearchResponseSummarySummarySkippedReasonsItemArray and GoogleCloudDiscoveryengineV1betaSearchResponseSummarySummarySkippedReasonsItemArrayOutput values. // You can construct a concrete instance of `GoogleCloudDiscoveryengineV1betaSearchResponseSummarySummarySkippedReasonsItemArrayInput` via: // diff --git a/sdk/go/google/dlp/v2/pulumiEnums.go b/sdk/go/google/dlp/v2/pulumiEnums.go index b2180fb6ce..0a5813dbf1 100644 --- a/sdk/go/google/dlp/v2/pulumiEnums.go +++ b/sdk/go/google/dlp/v2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Required. A status for this configuration. @@ -182,12 +181,6 @@ func (in *discoveryConfigStatusPtr) ToDiscoveryConfigStatusPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(DiscoveryConfigStatusPtrOutput) } -func (in *discoveryConfigStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*DiscoveryConfigStatus] { - return pulumix.Output[*DiscoveryConfigStatus]{ - OutputState: in.ToDiscoveryConfigStatusPtrOutputWithContext(ctx).OutputState, - } -} - type GooglePrivacyDlpV2BigQueryOptionsSampleMethod string const ( @@ -357,12 +350,6 @@ func (in *googlePrivacyDlpV2BigQueryOptionsSampleMethodPtr) ToGooglePrivacyDlpV2 return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2BigQueryOptionsSampleMethodPtrOutput) } -func (in *googlePrivacyDlpV2BigQueryOptionsSampleMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2BigQueryOptionsSampleMethod] { - return pulumix.Output[*GooglePrivacyDlpV2BigQueryOptionsSampleMethod]{ - OutputState: in.ToGooglePrivacyDlpV2BigQueryOptionsSampleMethodPtrOutputWithContext(ctx).OutputState, - } -} - type GooglePrivacyDlpV2BigQueryTableTypesTypesItem string const ( @@ -533,12 +520,6 @@ func (in *googlePrivacyDlpV2BigQueryTableTypesTypesItemPtr) ToGooglePrivacyDlpV2 return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2BigQueryTableTypesTypesItemPtrOutput) } -func (in *googlePrivacyDlpV2BigQueryTableTypesTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2BigQueryTableTypesTypesItem] { - return pulumix.Output[*GooglePrivacyDlpV2BigQueryTableTypesTypesItem]{ - OutputState: in.ToGooglePrivacyDlpV2BigQueryTableTypesTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // GooglePrivacyDlpV2BigQueryTableTypesTypesItemArrayInput is an input type that accepts GooglePrivacyDlpV2BigQueryTableTypesTypesItemArray and GooglePrivacyDlpV2BigQueryTableTypesTypesItemArrayOutput values. // You can construct a concrete instance of `GooglePrivacyDlpV2BigQueryTableTypesTypesItemArrayInput` via: // @@ -764,12 +745,6 @@ func (in *googlePrivacyDlpV2CharsToIgnoreCommonCharactersToIgnorePtr) ToGooglePr return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2CharsToIgnoreCommonCharactersToIgnorePtrOutput) } -func (in *googlePrivacyDlpV2CharsToIgnoreCommonCharactersToIgnorePtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2CharsToIgnoreCommonCharactersToIgnore] { - return pulumix.Output[*GooglePrivacyDlpV2CharsToIgnoreCommonCharactersToIgnore]{ - OutputState: in.ToGooglePrivacyDlpV2CharsToIgnoreCommonCharactersToIgnorePtrOutputWithContext(ctx).OutputState, - } -} - type GooglePrivacyDlpV2CloudStorageOptionsFileTypesItem string const ( @@ -964,12 +939,6 @@ func (in *googlePrivacyDlpV2CloudStorageOptionsFileTypesItemPtr) ToGooglePrivacy return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2CloudStorageOptionsFileTypesItemPtrOutput) } -func (in *googlePrivacyDlpV2CloudStorageOptionsFileTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2CloudStorageOptionsFileTypesItem] { - return pulumix.Output[*GooglePrivacyDlpV2CloudStorageOptionsFileTypesItem]{ - OutputState: in.ToGooglePrivacyDlpV2CloudStorageOptionsFileTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // GooglePrivacyDlpV2CloudStorageOptionsFileTypesItemArrayInput is an input type that accepts GooglePrivacyDlpV2CloudStorageOptionsFileTypesItemArray and GooglePrivacyDlpV2CloudStorageOptionsFileTypesItemArrayOutput values. // You can construct a concrete instance of `GooglePrivacyDlpV2CloudStorageOptionsFileTypesItemArrayInput` via: // @@ -1184,12 +1153,6 @@ func (in *googlePrivacyDlpV2CloudStorageOptionsSampleMethodPtr) ToGooglePrivacyD return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2CloudStorageOptionsSampleMethodPtrOutput) } -func (in *googlePrivacyDlpV2CloudStorageOptionsSampleMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2CloudStorageOptionsSampleMethod] { - return pulumix.Output[*GooglePrivacyDlpV2CloudStorageOptionsSampleMethod]{ - OutputState: in.ToGooglePrivacyDlpV2CloudStorageOptionsSampleMethodPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Operator used to compare the field or infoType to the value. type GooglePrivacyDlpV2ConditionOperator string @@ -1376,12 +1339,6 @@ func (in *googlePrivacyDlpV2ConditionOperatorPtr) ToGooglePrivacyDlpV2ConditionO return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2ConditionOperatorPtrOutput) } -func (in *googlePrivacyDlpV2ConditionOperatorPtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2ConditionOperator] { - return pulumix.Output[*GooglePrivacyDlpV2ConditionOperator]{ - OutputState: in.ToGooglePrivacyDlpV2ConditionOperatorPtrOutputWithContext(ctx).OutputState, - } -} - // Common alphabets. type GooglePrivacyDlpV2CryptoReplaceFfxFpeConfigCommonAlphabet string @@ -1559,12 +1516,6 @@ func (in *googlePrivacyDlpV2CryptoReplaceFfxFpeConfigCommonAlphabetPtr) ToGoogle return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2CryptoReplaceFfxFpeConfigCommonAlphabetPtrOutput) } -func (in *googlePrivacyDlpV2CryptoReplaceFfxFpeConfigCommonAlphabetPtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2CryptoReplaceFfxFpeConfigCommonAlphabet] { - return pulumix.Output[*GooglePrivacyDlpV2CryptoReplaceFfxFpeConfigCommonAlphabet]{ - OutputState: in.ToGooglePrivacyDlpV2CryptoReplaceFfxFpeConfigCommonAlphabetPtrOutputWithContext(ctx).OutputState, - } -} - // If set to EXCLUSION_TYPE_EXCLUDE this infoType will not cause a finding to be returned. It still can be used for rules matching. type GooglePrivacyDlpV2CustomInfoTypeExclusionType string @@ -1733,12 +1684,6 @@ func (in *googlePrivacyDlpV2CustomInfoTypeExclusionTypePtr) ToGooglePrivacyDlpV2 return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2CustomInfoTypeExclusionTypePtrOutput) } -func (in *googlePrivacyDlpV2CustomInfoTypeExclusionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2CustomInfoTypeExclusionType] { - return pulumix.Output[*GooglePrivacyDlpV2CustomInfoTypeExclusionType]{ - OutputState: in.ToGooglePrivacyDlpV2CustomInfoTypeExclusionTypePtrOutputWithContext(ctx).OutputState, - } -} - // Likelihood to return for this CustomInfoType. This base value can be altered by a detection rule if the finding meets the criteria specified by the rule. Defaults to `VERY_LIKELY` if not specified. type GooglePrivacyDlpV2CustomInfoTypeLikelihood string @@ -1919,12 +1864,6 @@ func (in *googlePrivacyDlpV2CustomInfoTypeLikelihoodPtr) ToGooglePrivacyDlpV2Cus return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2CustomInfoTypeLikelihoodPtrOutput) } -func (in *googlePrivacyDlpV2CustomInfoTypeLikelihoodPtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2CustomInfoTypeLikelihood] { - return pulumix.Output[*GooglePrivacyDlpV2CustomInfoTypeLikelihood]{ - OutputState: in.ToGooglePrivacyDlpV2CustomInfoTypeLikelihoodPtrOutputWithContext(ctx).OutputState, - } -} - type GooglePrivacyDlpV2DeidentifyFileTypesToTransformItem string const ( @@ -2119,12 +2058,6 @@ func (in *googlePrivacyDlpV2DeidentifyFileTypesToTransformItemPtr) ToGooglePriva return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2DeidentifyFileTypesToTransformItemPtrOutput) } -func (in *googlePrivacyDlpV2DeidentifyFileTypesToTransformItemPtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2DeidentifyFileTypesToTransformItem] { - return pulumix.Output[*GooglePrivacyDlpV2DeidentifyFileTypesToTransformItem]{ - OutputState: in.ToGooglePrivacyDlpV2DeidentifyFileTypesToTransformItemPtrOutputWithContext(ctx).OutputState, - } -} - // GooglePrivacyDlpV2DeidentifyFileTypesToTransformItemArrayInput is an input type that accepts GooglePrivacyDlpV2DeidentifyFileTypesToTransformItemArray and GooglePrivacyDlpV2DeidentifyFileTypesToTransformItemArrayOutput values. // You can construct a concrete instance of `GooglePrivacyDlpV2DeidentifyFileTypesToTransformItemArrayInput` via: // @@ -2341,12 +2274,6 @@ func (in *googlePrivacyDlpV2DiscoveryBigQueryConditionsTypeCollectionPtr) ToGoog return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2DiscoveryBigQueryConditionsTypeCollectionPtrOutput) } -func (in *googlePrivacyDlpV2DiscoveryBigQueryConditionsTypeCollectionPtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2DiscoveryBigQueryConditionsTypeCollection] { - return pulumix.Output[*GooglePrivacyDlpV2DiscoveryBigQueryConditionsTypeCollection]{ - OutputState: in.ToGooglePrivacyDlpV2DiscoveryBigQueryConditionsTypeCollectionPtrOutputWithContext(ctx).OutputState, - } -} - // How frequently profiles may be updated when schemas are modified. Defaults to monthly. type GooglePrivacyDlpV2DiscoverySchemaModifiedCadenceFrequency string @@ -2521,12 +2448,6 @@ func (in *googlePrivacyDlpV2DiscoverySchemaModifiedCadenceFrequencyPtr) ToGoogle return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2DiscoverySchemaModifiedCadenceFrequencyPtrOutput) } -func (in *googlePrivacyDlpV2DiscoverySchemaModifiedCadenceFrequencyPtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2DiscoverySchemaModifiedCadenceFrequency] { - return pulumix.Output[*GooglePrivacyDlpV2DiscoverySchemaModifiedCadenceFrequency]{ - OutputState: in.ToGooglePrivacyDlpV2DiscoverySchemaModifiedCadenceFrequencyPtrOutputWithContext(ctx).OutputState, - } -} - type GooglePrivacyDlpV2DiscoverySchemaModifiedCadenceTypesItem string const ( @@ -2697,12 +2618,6 @@ func (in *googlePrivacyDlpV2DiscoverySchemaModifiedCadenceTypesItemPtr) ToGoogle return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2DiscoverySchemaModifiedCadenceTypesItemPtrOutput) } -func (in *googlePrivacyDlpV2DiscoverySchemaModifiedCadenceTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2DiscoverySchemaModifiedCadenceTypesItem] { - return pulumix.Output[*GooglePrivacyDlpV2DiscoverySchemaModifiedCadenceTypesItem]{ - OutputState: in.ToGooglePrivacyDlpV2DiscoverySchemaModifiedCadenceTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // GooglePrivacyDlpV2DiscoverySchemaModifiedCadenceTypesItemArrayInput is an input type that accepts GooglePrivacyDlpV2DiscoverySchemaModifiedCadenceTypesItemArray and GooglePrivacyDlpV2DiscoverySchemaModifiedCadenceTypesItemArrayOutput values. // You can construct a concrete instance of `GooglePrivacyDlpV2DiscoverySchemaModifiedCadenceTypesItemArrayInput` via: // @@ -2922,12 +2837,6 @@ func (in *googlePrivacyDlpV2DiscoveryTableModifiedCadenceFrequencyPtr) ToGoogleP return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2DiscoveryTableModifiedCadenceFrequencyPtrOutput) } -func (in *googlePrivacyDlpV2DiscoveryTableModifiedCadenceFrequencyPtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2DiscoveryTableModifiedCadenceFrequency] { - return pulumix.Output[*GooglePrivacyDlpV2DiscoveryTableModifiedCadenceFrequency]{ - OutputState: in.ToGooglePrivacyDlpV2DiscoveryTableModifiedCadenceFrequencyPtrOutputWithContext(ctx).OutputState, - } -} - type GooglePrivacyDlpV2DiscoveryTableModifiedCadenceTypesItem string const ( @@ -3095,12 +3004,6 @@ func (in *googlePrivacyDlpV2DiscoveryTableModifiedCadenceTypesItemPtr) ToGoogleP return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2DiscoveryTableModifiedCadenceTypesItemPtrOutput) } -func (in *googlePrivacyDlpV2DiscoveryTableModifiedCadenceTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2DiscoveryTableModifiedCadenceTypesItem] { - return pulumix.Output[*GooglePrivacyDlpV2DiscoveryTableModifiedCadenceTypesItem]{ - OutputState: in.ToGooglePrivacyDlpV2DiscoveryTableModifiedCadenceTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // GooglePrivacyDlpV2DiscoveryTableModifiedCadenceTypesItemArrayInput is an input type that accepts GooglePrivacyDlpV2DiscoveryTableModifiedCadenceTypesItemArray and GooglePrivacyDlpV2DiscoveryTableModifiedCadenceTypesItemArrayOutput values. // You can construct a concrete instance of `GooglePrivacyDlpV2DiscoveryTableModifiedCadenceTypesItemArrayInput` via: // @@ -3320,12 +3223,6 @@ func (in *googlePrivacyDlpV2ExclusionRuleMatchingTypePtr) ToGooglePrivacyDlpV2Ex return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2ExclusionRuleMatchingTypePtrOutput) } -func (in *googlePrivacyDlpV2ExclusionRuleMatchingTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2ExclusionRuleMatchingType] { - return pulumix.Output[*GooglePrivacyDlpV2ExclusionRuleMatchingType]{ - OutputState: in.ToGooglePrivacyDlpV2ExclusionRuleMatchingTypePtrOutputWithContext(ctx).OutputState, - } -} - // The operator to apply to the result of conditions. Default and currently only supported value is `AND`. type GooglePrivacyDlpV2ExpressionsLogicalOperator string @@ -3494,12 +3391,6 @@ func (in *googlePrivacyDlpV2ExpressionsLogicalOperatorPtr) ToGooglePrivacyDlpV2E return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2ExpressionsLogicalOperatorPtrOutput) } -func (in *googlePrivacyDlpV2ExpressionsLogicalOperatorPtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2ExpressionsLogicalOperator] { - return pulumix.Output[*GooglePrivacyDlpV2ExpressionsLogicalOperator]{ - OutputState: in.ToGooglePrivacyDlpV2ExpressionsLogicalOperatorPtrOutputWithContext(ctx).OutputState, - } -} - // Only returns findings equal to or above this threshold. This field is required or else the configuration fails. type GooglePrivacyDlpV2InfoTypeLikelihoodMinLikelihood string @@ -3680,12 +3571,6 @@ func (in *googlePrivacyDlpV2InfoTypeLikelihoodMinLikelihoodPtr) ToGooglePrivacyD return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2InfoTypeLikelihoodMinLikelihoodPtrOutput) } -func (in *googlePrivacyDlpV2InfoTypeLikelihoodMinLikelihoodPtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2InfoTypeLikelihoodMinLikelihood] { - return pulumix.Output[*GooglePrivacyDlpV2InfoTypeLikelihoodMinLikelihood]{ - OutputState: in.ToGooglePrivacyDlpV2InfoTypeLikelihoodMinLikelihoodPtrOutputWithContext(ctx).OutputState, - } -} - type GooglePrivacyDlpV2InspectConfigContentOptionsItem string const ( @@ -3856,12 +3741,6 @@ func (in *googlePrivacyDlpV2InspectConfigContentOptionsItemPtr) ToGooglePrivacyD return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2InspectConfigContentOptionsItemPtrOutput) } -func (in *googlePrivacyDlpV2InspectConfigContentOptionsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2InspectConfigContentOptionsItem] { - return pulumix.Output[*GooglePrivacyDlpV2InspectConfigContentOptionsItem]{ - OutputState: in.ToGooglePrivacyDlpV2InspectConfigContentOptionsItemPtrOutputWithContext(ctx).OutputState, - } -} - // GooglePrivacyDlpV2InspectConfigContentOptionsItemArrayInput is an input type that accepts GooglePrivacyDlpV2InspectConfigContentOptionsItemArray and GooglePrivacyDlpV2InspectConfigContentOptionsItemArrayOutput values. // You can construct a concrete instance of `GooglePrivacyDlpV2InspectConfigContentOptionsItemArrayInput` via: // @@ -4087,12 +3966,6 @@ func (in *googlePrivacyDlpV2InspectConfigMinLikelihoodPtr) ToGooglePrivacyDlpV2I return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2InspectConfigMinLikelihoodPtrOutput) } -func (in *googlePrivacyDlpV2InspectConfigMinLikelihoodPtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2InspectConfigMinLikelihood] { - return pulumix.Output[*GooglePrivacyDlpV2InspectConfigMinLikelihood]{ - OutputState: in.ToGooglePrivacyDlpV2InspectConfigMinLikelihoodPtrOutputWithContext(ctx).OutputState, - } -} - // Set the likelihood of a finding to a fixed value. type GooglePrivacyDlpV2LikelihoodAdjustmentFixedLikelihood string @@ -4273,12 +4146,6 @@ func (in *googlePrivacyDlpV2LikelihoodAdjustmentFixedLikelihoodPtr) ToGooglePriv return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2LikelihoodAdjustmentFixedLikelihoodPtrOutput) } -func (in *googlePrivacyDlpV2LikelihoodAdjustmentFixedLikelihoodPtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2LikelihoodAdjustmentFixedLikelihood] { - return pulumix.Output[*GooglePrivacyDlpV2LikelihoodAdjustmentFixedLikelihood]{ - OutputState: in.ToGooglePrivacyDlpV2LikelihoodAdjustmentFixedLikelihoodPtrOutputWithContext(ctx).OutputState, - } -} - // Schema used for writing the findings for Inspect jobs. This field is only used for Inspect and must be unspecified for Risk jobs. Columns are derived from the `Finding` object. If appending to an existing table, any columns from the predefined schema that are missing will be added. No columns in the existing table will be deleted. If unspecified, then all available columns will be used for a new table or an (existing) table with no schema, and no changes will be made to an existing table that has a schema. Only for use with external storage. type GooglePrivacyDlpV2OutputStorageConfigOutputSchema string @@ -4459,12 +4326,6 @@ func (in *googlePrivacyDlpV2OutputStorageConfigOutputSchemaPtr) ToGooglePrivacyD return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2OutputStorageConfigOutputSchemaPtrOutput) } -func (in *googlePrivacyDlpV2OutputStorageConfigOutputSchemaPtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2OutputStorageConfigOutputSchema] { - return pulumix.Output[*GooglePrivacyDlpV2OutputStorageConfigOutputSchema]{ - OutputState: in.ToGooglePrivacyDlpV2OutputStorageConfigOutputSchemaPtrOutputWithContext(ctx).OutputState, - } -} - // The minimum data risk score that triggers the condition. type GooglePrivacyDlpV2PubSubConditionMinimumRiskScore string @@ -4636,12 +4497,6 @@ func (in *googlePrivacyDlpV2PubSubConditionMinimumRiskScorePtr) ToGooglePrivacyD return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2PubSubConditionMinimumRiskScorePtrOutput) } -func (in *googlePrivacyDlpV2PubSubConditionMinimumRiskScorePtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2PubSubConditionMinimumRiskScore] { - return pulumix.Output[*GooglePrivacyDlpV2PubSubConditionMinimumRiskScore]{ - OutputState: in.ToGooglePrivacyDlpV2PubSubConditionMinimumRiskScorePtrOutputWithContext(ctx).OutputState, - } -} - // The minimum sensitivity level that triggers the condition. type GooglePrivacyDlpV2PubSubConditionMinimumSensitivityScore string @@ -4813,12 +4668,6 @@ func (in *googlePrivacyDlpV2PubSubConditionMinimumSensitivityScorePtr) ToGoogleP return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2PubSubConditionMinimumSensitivityScorePtrOutput) } -func (in *googlePrivacyDlpV2PubSubConditionMinimumSensitivityScorePtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2PubSubConditionMinimumSensitivityScore] { - return pulumix.Output[*GooglePrivacyDlpV2PubSubConditionMinimumSensitivityScore]{ - OutputState: in.ToGooglePrivacyDlpV2PubSubConditionMinimumSensitivityScorePtrOutputWithContext(ctx).OutputState, - } -} - // The operator to apply to the collection of conditions. type GooglePrivacyDlpV2PubSubExpressionsLogicalOperator string @@ -4990,12 +4839,6 @@ func (in *googlePrivacyDlpV2PubSubExpressionsLogicalOperatorPtr) ToGooglePrivacy return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2PubSubExpressionsLogicalOperatorPtrOutput) } -func (in *googlePrivacyDlpV2PubSubExpressionsLogicalOperatorPtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2PubSubExpressionsLogicalOperator] { - return pulumix.Output[*GooglePrivacyDlpV2PubSubExpressionsLogicalOperator]{ - OutputState: in.ToGooglePrivacyDlpV2PubSubExpressionsLogicalOperatorPtrOutputWithContext(ctx).OutputState, - } -} - // How much data to include in the Pub/Sub message. If the user wishes to limit the size of the message, they can use resource_name and fetch the profile fields they wish to. Per table profile (not per column). type GooglePrivacyDlpV2PubSubNotificationDetailOfMessage string @@ -5167,12 +5010,6 @@ func (in *googlePrivacyDlpV2PubSubNotificationDetailOfMessagePtr) ToGooglePrivac return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2PubSubNotificationDetailOfMessagePtrOutput) } -func (in *googlePrivacyDlpV2PubSubNotificationDetailOfMessagePtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2PubSubNotificationDetailOfMessage] { - return pulumix.Output[*GooglePrivacyDlpV2PubSubNotificationDetailOfMessage]{ - OutputState: in.ToGooglePrivacyDlpV2PubSubNotificationDetailOfMessagePtrOutputWithContext(ctx).OutputState, - } -} - // The type of event that triggers a Pub/Sub. At most one `PubSubNotification` per EventType is permitted. type GooglePrivacyDlpV2PubSubNotificationEvent string @@ -5350,12 +5187,6 @@ func (in *googlePrivacyDlpV2PubSubNotificationEventPtr) ToGooglePrivacyDlpV2PubS return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2PubSubNotificationEventPtrOutput) } -func (in *googlePrivacyDlpV2PubSubNotificationEventPtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2PubSubNotificationEvent] { - return pulumix.Output[*GooglePrivacyDlpV2PubSubNotificationEvent]{ - OutputState: in.ToGooglePrivacyDlpV2PubSubNotificationEventPtrOutputWithContext(ctx).OutputState, - } -} - // The sensitivity score applied to the resource. type GooglePrivacyDlpV2SensitivityScoreScore string @@ -5530,12 +5361,6 @@ func (in *googlePrivacyDlpV2SensitivityScoreScorePtr) ToGooglePrivacyDlpV2Sensit return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2SensitivityScoreScorePtrOutput) } -func (in *googlePrivacyDlpV2SensitivityScoreScorePtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2SensitivityScoreScore] { - return pulumix.Output[*GooglePrivacyDlpV2SensitivityScoreScore]{ - OutputState: in.ToGooglePrivacyDlpV2SensitivityScoreScorePtrOutputWithContext(ctx).OutputState, - } -} - // The part of the time to keep. type GooglePrivacyDlpV2TimePartConfigPartToExtract string @@ -5719,12 +5544,6 @@ func (in *googlePrivacyDlpV2TimePartConfigPartToExtractPtr) ToGooglePrivacyDlpV2 return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2TimePartConfigPartToExtractPtrOutput) } -func (in *googlePrivacyDlpV2TimePartConfigPartToExtractPtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2TimePartConfigPartToExtract] { - return pulumix.Output[*GooglePrivacyDlpV2TimePartConfigPartToExtract]{ - OutputState: in.ToGooglePrivacyDlpV2TimePartConfigPartToExtractPtrOutputWithContext(ctx).OutputState, - } -} - // day of week type GooglePrivacyDlpV2ValueDayOfWeekValue string @@ -5911,12 +5730,6 @@ func (in *googlePrivacyDlpV2ValueDayOfWeekValuePtr) ToGooglePrivacyDlpV2ValueDay return pulumi.ToOutputWithContext(ctx, in).(GooglePrivacyDlpV2ValueDayOfWeekValuePtrOutput) } -func (in *googlePrivacyDlpV2ValueDayOfWeekValuePtr) ToOutput(ctx context.Context) pulumix.Output[*GooglePrivacyDlpV2ValueDayOfWeekValue] { - return pulumix.Output[*GooglePrivacyDlpV2ValueDayOfWeekValue]{ - OutputState: in.ToGooglePrivacyDlpV2ValueDayOfWeekValuePtrOutputWithContext(ctx).OutputState, - } -} - // Required. A status for this trigger. type JobTriggerStatus string @@ -6091,12 +5904,6 @@ func (in *jobTriggerStatusPtr) ToJobTriggerStatusPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(JobTriggerStatusPtrOutput) } -func (in *jobTriggerStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*JobTriggerStatus] { - return pulumix.Output[*JobTriggerStatus]{ - OutputState: in.ToJobTriggerStatusPtrOutputWithContext(ctx).OutputState, - } -} - // Required. A status for this configuration. type OrganizationDiscoveryConfigStatus string @@ -6268,12 +6075,6 @@ func (in *organizationDiscoveryConfigStatusPtr) ToOrganizationDiscoveryConfigSta return pulumi.ToOutputWithContext(ctx, in).(OrganizationDiscoveryConfigStatusPtrOutput) } -func (in *organizationDiscoveryConfigStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*OrganizationDiscoveryConfigStatus] { - return pulumix.Output[*OrganizationDiscoveryConfigStatus]{ - OutputState: in.ToOrganizationDiscoveryConfigStatusPtrOutputWithContext(ctx).OutputState, - } -} - // Required. A status for this trigger. type OrganizationJobTriggerStatus string @@ -6448,12 +6249,6 @@ func (in *organizationJobTriggerStatusPtr) ToOrganizationJobTriggerStatusPtrOutp return pulumi.ToOutputWithContext(ctx, in).(OrganizationJobTriggerStatusPtrOutput) } -func (in *organizationJobTriggerStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*OrganizationJobTriggerStatus] { - return pulumix.Output[*OrganizationJobTriggerStatus]{ - OutputState: in.ToOrganizationJobTriggerStatusPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*DiscoveryConfigStatusInput)(nil)).Elem(), DiscoveryConfigStatus("STATUS_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*DiscoveryConfigStatusPtrInput)(nil)).Elem(), DiscoveryConfigStatus("STATUS_UNSPECIFIED")) diff --git a/sdk/go/google/dns/v1/pulumiEnums.go b/sdk/go/google/dns/v1/pulumiEnums.go index bd58cd758e..fe9472638e 100644 --- a/sdk/go/google/dns/v1/pulumiEnums.go +++ b/sdk/go/google/dns/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // String mnemonic specifying the DNSSEC algorithm of this key. @@ -183,12 +182,6 @@ func (in *dnsKeySpecAlgorithmPtr) ToDnsKeySpecAlgorithmPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(DnsKeySpecAlgorithmPtrOutput) } -func (in *dnsKeySpecAlgorithmPtr) ToOutput(ctx context.Context) pulumix.Output[*DnsKeySpecAlgorithm] { - return pulumix.Output[*DnsKeySpecAlgorithm]{ - OutputState: in.ToDnsKeySpecAlgorithmPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies whether this is a key signing key (KSK) or a zone signing key (ZSK). Key signing keys have the Secure Entry Point flag set and, when active, are only used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and are used to sign all other types of resource record sets. type DnsKeySpecKeyType string @@ -355,12 +348,6 @@ func (in *dnsKeySpecKeyTypePtr) ToDnsKeySpecKeyTypePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(DnsKeySpecKeyTypePtrOutput) } -func (in *dnsKeySpecKeyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DnsKeySpecKeyType] { - return pulumix.Output[*DnsKeySpecKeyType]{ - OutputState: in.ToDnsKeySpecKeyTypePtrOutputWithContext(ctx).OutputState, - } -} - // The log type that this config enables. type GoogleIamV1AuditLogConfigLogType string @@ -535,12 +522,6 @@ func (in *googleIamV1AuditLogConfigLogTypePtr) ToGoogleIamV1AuditLogConfigLogTyp return pulumi.ToOutputWithContext(ctx, in).(GoogleIamV1AuditLogConfigLogTypePtrOutput) } -func (in *googleIamV1AuditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleIamV1AuditLogConfigLogType] { - return pulumix.Output[*GoogleIamV1AuditLogConfigLogType]{ - OutputState: in.ToGoogleIamV1AuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the mechanism for authenticated denial-of-existence responses. Can only be changed while the state is OFF. type ManagedZoneDnsSecConfigNonExistence string @@ -707,12 +688,6 @@ func (in *managedZoneDnsSecConfigNonExistencePtr) ToManagedZoneDnsSecConfigNonEx return pulumi.ToOutputWithContext(ctx, in).(ManagedZoneDnsSecConfigNonExistencePtrOutput) } -func (in *managedZoneDnsSecConfigNonExistencePtr) ToOutput(ctx context.Context) pulumix.Output[*ManagedZoneDnsSecConfigNonExistence] { - return pulumix.Output[*ManagedZoneDnsSecConfigNonExistence]{ - OutputState: in.ToManagedZoneDnsSecConfigNonExistencePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies whether DNSSEC is enabled, and what mode it is in. type ManagedZoneDnsSecConfigState string @@ -884,12 +859,6 @@ func (in *managedZoneDnsSecConfigStatePtr) ToManagedZoneDnsSecConfigStatePtrOutp return pulumi.ToOutputWithContext(ctx, in).(ManagedZoneDnsSecConfigStatePtrOutput) } -func (in *managedZoneDnsSecConfigStatePtr) ToOutput(ctx context.Context) pulumix.Output[*ManagedZoneDnsSecConfigState] { - return pulumix.Output[*ManagedZoneDnsSecConfigState]{ - OutputState: in.ToManagedZoneDnsSecConfigStatePtrOutputWithContext(ctx).OutputState, - } -} - // Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on IP address ranges; that is, RFC1918 addresses go to the VPC network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target. type ManagedZoneForwardingConfigNameServerTargetForwardingPath string @@ -1058,12 +1027,6 @@ func (in *managedZoneForwardingConfigNameServerTargetForwardingPathPtr) ToManage return pulumi.ToOutputWithContext(ctx, in).(ManagedZoneForwardingConfigNameServerTargetForwardingPathPtrOutput) } -func (in *managedZoneForwardingConfigNameServerTargetForwardingPathPtr) ToOutput(ctx context.Context) pulumix.Output[*ManagedZoneForwardingConfigNameServerTargetForwardingPath] { - return pulumix.Output[*ManagedZoneForwardingConfigNameServerTargetForwardingPath]{ - OutputState: in.ToManagedZoneForwardingConfigNameServerTargetForwardingPathPtrOutputWithContext(ctx).OutputState, - } -} - // The zone's visibility: public zones are exposed to the Internet, while private zones are visible only to Virtual Private Cloud resources. type ManagedZoneVisibility string @@ -1230,12 +1193,6 @@ func (in *managedZoneVisibilityPtr) ToManagedZoneVisibilityPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ManagedZoneVisibilityPtrOutput) } -func (in *managedZoneVisibilityPtr) ToOutput(ctx context.Context) pulumix.Output[*ManagedZoneVisibility] { - return pulumix.Output[*ManagedZoneVisibility]{ - OutputState: in.ToManagedZoneVisibilityPtrOutputWithContext(ctx).OutputState, - } -} - // Forwarding path for this TargetNameServer. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on address ranges; that is, RFC1918 addresses go to the VPC network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target. type PolicyAlternativeNameServerConfigTargetNameServerForwardingPath string @@ -1404,12 +1361,6 @@ func (in *policyAlternativeNameServerConfigTargetNameServerForwardingPathPtr) To return pulumi.ToOutputWithContext(ctx, in).(PolicyAlternativeNameServerConfigTargetNameServerForwardingPathPtrOutput) } -func (in *policyAlternativeNameServerConfigTargetNameServerForwardingPathPtr) ToOutput(ctx context.Context) pulumix.Output[*PolicyAlternativeNameServerConfigTargetNameServerForwardingPath] { - return pulumix.Output[*PolicyAlternativeNameServerConfigTargetNameServerForwardingPath]{ - OutputState: in.ToPolicyAlternativeNameServerConfigTargetNameServerForwardingPathPtrOutputWithContext(ctx).OutputState, - } -} - // The protocol of the load balancer to health check. type RRSetRoutingPolicyLoadBalancerTargetIpProtocol string @@ -1578,12 +1529,6 @@ func (in *rrsetRoutingPolicyLoadBalancerTargetIpProtocolPtr) ToRRSetRoutingPolic return pulumi.ToOutputWithContext(ctx, in).(RRSetRoutingPolicyLoadBalancerTargetIpProtocolPtrOutput) } -func (in *rrsetRoutingPolicyLoadBalancerTargetIpProtocolPtr) ToOutput(ctx context.Context) pulumix.Output[*RRSetRoutingPolicyLoadBalancerTargetIpProtocol] { - return pulumix.Output[*RRSetRoutingPolicyLoadBalancerTargetIpProtocol]{ - OutputState: in.ToRRSetRoutingPolicyLoadBalancerTargetIpProtocolPtrOutputWithContext(ctx).OutputState, - } -} - // The type of load balancer specified by this target. This value must match the configuration of the load balancer located at the LoadBalancerTarget's IP address, port, and region. Use the following: - *regionalL4ilb*: for a regional internal passthrough Network Load Balancer. - *regionalL7ilb*: for a regional internal Application Load Balancer. - *globalL7ilb*: for a global internal Application Load Balancer. type RRSetRoutingPolicyLoadBalancerTargetLoadBalancerType string @@ -1754,12 +1699,6 @@ func (in *rrsetRoutingPolicyLoadBalancerTargetLoadBalancerTypePtr) ToRRSetRoutin return pulumi.ToOutputWithContext(ctx, in).(RRSetRoutingPolicyLoadBalancerTargetLoadBalancerTypePtrOutput) } -func (in *rrsetRoutingPolicyLoadBalancerTargetLoadBalancerTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RRSetRoutingPolicyLoadBalancerTargetLoadBalancerType] { - return pulumix.Output[*RRSetRoutingPolicyLoadBalancerTargetLoadBalancerType]{ - OutputState: in.ToRRSetRoutingPolicyLoadBalancerTargetLoadBalancerTypePtrOutputWithContext(ctx).OutputState, - } -} - // Answer this query with a behavior rather than DNS data. type ResponsePolicyRuleBehavior string diff --git a/sdk/go/google/dns/v1beta2/pulumiEnums.go b/sdk/go/google/dns/v1beta2/pulumiEnums.go index 4da6339f52..aaa8bbc945 100644 --- a/sdk/go/google/dns/v1beta2/pulumiEnums.go +++ b/sdk/go/google/dns/v1beta2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // String mnemonic specifying the DNSSEC algorithm of this key. @@ -183,12 +182,6 @@ func (in *dnsKeySpecAlgorithmPtr) ToDnsKeySpecAlgorithmPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(DnsKeySpecAlgorithmPtrOutput) } -func (in *dnsKeySpecAlgorithmPtr) ToOutput(ctx context.Context) pulumix.Output[*DnsKeySpecAlgorithm] { - return pulumix.Output[*DnsKeySpecAlgorithm]{ - OutputState: in.ToDnsKeySpecAlgorithmPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies whether this is a key signing key (KSK) or a zone signing key (ZSK). Key signing keys have the Secure Entry Point flag set and, when active, are only used to sign resource record sets of type DNSKEY. Zone signing keys do not have the Secure Entry Point flag set and are used to sign all other types of resource record sets. type DnsKeySpecKeyType string @@ -355,12 +348,6 @@ func (in *dnsKeySpecKeyTypePtr) ToDnsKeySpecKeyTypePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(DnsKeySpecKeyTypePtrOutput) } -func (in *dnsKeySpecKeyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DnsKeySpecKeyType] { - return pulumix.Output[*DnsKeySpecKeyType]{ - OutputState: in.ToDnsKeySpecKeyTypePtrOutputWithContext(ctx).OutputState, - } -} - // The log type that this config enables. type GoogleIamV1AuditLogConfigLogType string @@ -535,12 +522,6 @@ func (in *googleIamV1AuditLogConfigLogTypePtr) ToGoogleIamV1AuditLogConfigLogTyp return pulumi.ToOutputWithContext(ctx, in).(GoogleIamV1AuditLogConfigLogTypePtrOutput) } -func (in *googleIamV1AuditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleIamV1AuditLogConfigLogType] { - return pulumix.Output[*GoogleIamV1AuditLogConfigLogType]{ - OutputState: in.ToGoogleIamV1AuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the mechanism for authenticated denial-of-existence responses. Can only be changed while the state is OFF. type ManagedZoneDnsSecConfigNonExistence string @@ -707,12 +688,6 @@ func (in *managedZoneDnsSecConfigNonExistencePtr) ToManagedZoneDnsSecConfigNonEx return pulumi.ToOutputWithContext(ctx, in).(ManagedZoneDnsSecConfigNonExistencePtrOutput) } -func (in *managedZoneDnsSecConfigNonExistencePtr) ToOutput(ctx context.Context) pulumix.Output[*ManagedZoneDnsSecConfigNonExistence] { - return pulumix.Output[*ManagedZoneDnsSecConfigNonExistence]{ - OutputState: in.ToManagedZoneDnsSecConfigNonExistencePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies whether DNSSEC is enabled, and what mode it is in. type ManagedZoneDnsSecConfigState string @@ -884,12 +859,6 @@ func (in *managedZoneDnsSecConfigStatePtr) ToManagedZoneDnsSecConfigStatePtrOutp return pulumi.ToOutputWithContext(ctx, in).(ManagedZoneDnsSecConfigStatePtrOutput) } -func (in *managedZoneDnsSecConfigStatePtr) ToOutput(ctx context.Context) pulumix.Output[*ManagedZoneDnsSecConfigState] { - return pulumix.Output[*ManagedZoneDnsSecConfigState]{ - OutputState: in.ToManagedZoneDnsSecConfigStatePtrOutputWithContext(ctx).OutputState, - } -} - // Forwarding path for this NameServerTarget. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on IP address ranges; that is, RFC1918 addresses go to the VPC network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target. type ManagedZoneForwardingConfigNameServerTargetForwardingPath string @@ -1058,12 +1027,6 @@ func (in *managedZoneForwardingConfigNameServerTargetForwardingPathPtr) ToManage return pulumi.ToOutputWithContext(ctx, in).(ManagedZoneForwardingConfigNameServerTargetForwardingPathPtrOutput) } -func (in *managedZoneForwardingConfigNameServerTargetForwardingPathPtr) ToOutput(ctx context.Context) pulumix.Output[*ManagedZoneForwardingConfigNameServerTargetForwardingPath] { - return pulumix.Output[*ManagedZoneForwardingConfigNameServerTargetForwardingPath]{ - OutputState: in.ToManagedZoneForwardingConfigNameServerTargetForwardingPathPtrOutputWithContext(ctx).OutputState, - } -} - // The zone's visibility: public zones are exposed to the Internet, while private zones are visible only to Virtual Private Cloud resources. type ManagedZoneVisibility string @@ -1230,12 +1193,6 @@ func (in *managedZoneVisibilityPtr) ToManagedZoneVisibilityPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ManagedZoneVisibilityPtrOutput) } -func (in *managedZoneVisibilityPtr) ToOutput(ctx context.Context) pulumix.Output[*ManagedZoneVisibility] { - return pulumix.Output[*ManagedZoneVisibility]{ - OutputState: in.ToManagedZoneVisibilityPtrOutputWithContext(ctx).OutputState, - } -} - // Forwarding path for this TargetNameServer. If unset or set to DEFAULT, Cloud DNS makes forwarding decisions based on address ranges; that is, RFC1918 addresses go to the VPC network, non-RFC1918 addresses go to the internet. When set to PRIVATE, Cloud DNS always sends queries through the VPC network for this target. type PolicyAlternativeNameServerConfigTargetNameServerForwardingPath string @@ -1404,12 +1361,6 @@ func (in *policyAlternativeNameServerConfigTargetNameServerForwardingPathPtr) To return pulumi.ToOutputWithContext(ctx, in).(PolicyAlternativeNameServerConfigTargetNameServerForwardingPathPtrOutput) } -func (in *policyAlternativeNameServerConfigTargetNameServerForwardingPathPtr) ToOutput(ctx context.Context) pulumix.Output[*PolicyAlternativeNameServerConfigTargetNameServerForwardingPath] { - return pulumix.Output[*PolicyAlternativeNameServerConfigTargetNameServerForwardingPath]{ - OutputState: in.ToPolicyAlternativeNameServerConfigTargetNameServerForwardingPathPtrOutputWithContext(ctx).OutputState, - } -} - // The protocol of the load balancer to health check. type RRSetRoutingPolicyLoadBalancerTargetIpProtocol string @@ -1578,12 +1529,6 @@ func (in *rrsetRoutingPolicyLoadBalancerTargetIpProtocolPtr) ToRRSetRoutingPolic return pulumi.ToOutputWithContext(ctx, in).(RRSetRoutingPolicyLoadBalancerTargetIpProtocolPtrOutput) } -func (in *rrsetRoutingPolicyLoadBalancerTargetIpProtocolPtr) ToOutput(ctx context.Context) pulumix.Output[*RRSetRoutingPolicyLoadBalancerTargetIpProtocol] { - return pulumix.Output[*RRSetRoutingPolicyLoadBalancerTargetIpProtocol]{ - OutputState: in.ToRRSetRoutingPolicyLoadBalancerTargetIpProtocolPtrOutputWithContext(ctx).OutputState, - } -} - // The type of load balancer specified by this target. This value must match the configuration of the load balancer located at the LoadBalancerTarget's IP address, port, and region. Use the following: - *regionalL4ilb*: for a regional internal passthrough Network Load Balancer. - *regionalL7ilb*: for a regional internal Application Load Balancer. - *globalL7ilb*: for a global internal Application Load Balancer. type RRSetRoutingPolicyLoadBalancerTargetLoadBalancerType string @@ -1754,12 +1699,6 @@ func (in *rrsetRoutingPolicyLoadBalancerTargetLoadBalancerTypePtr) ToRRSetRoutin return pulumi.ToOutputWithContext(ctx, in).(RRSetRoutingPolicyLoadBalancerTargetLoadBalancerTypePtrOutput) } -func (in *rrsetRoutingPolicyLoadBalancerTargetLoadBalancerTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RRSetRoutingPolicyLoadBalancerTargetLoadBalancerType] { - return pulumix.Output[*RRSetRoutingPolicyLoadBalancerTargetLoadBalancerType]{ - OutputState: in.ToRRSetRoutingPolicyLoadBalancerTargetLoadBalancerTypePtrOutputWithContext(ctx).OutputState, - } -} - // Answer this query with a behavior rather than DNS data. type ResponsePolicyRuleBehavior string @@ -1927,12 +1866,6 @@ func (in *responsePolicyRuleBehaviorPtr) ToResponsePolicyRuleBehaviorPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(ResponsePolicyRuleBehaviorPtrOutput) } -func (in *responsePolicyRuleBehaviorPtr) ToOutput(ctx context.Context) pulumix.Output[*ResponsePolicyRuleBehavior] { - return pulumix.Output[*ResponsePolicyRuleBehavior]{ - OutputState: in.ToResponsePolicyRuleBehaviorPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*DnsKeySpecAlgorithmInput)(nil)).Elem(), DnsKeySpecAlgorithm("rsasha1")) pulumi.RegisterInputType(reflect.TypeOf((*DnsKeySpecAlgorithmPtrInput)(nil)).Elem(), DnsKeySpecAlgorithm("rsasha1")) diff --git a/sdk/go/google/domains/v1/pulumiEnums.go b/sdk/go/google/domains/v1/pulumiEnums.go index 3f577c2b38..5d387b41aa 100644 --- a/sdk/go/google/domains/v1/pulumiEnums.go +++ b/sdk/go/google/domains/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Privacy setting for the contacts associated with the `Registration`. type ContactSettingsPrivacy string @@ -365,12 +358,6 @@ func (in *contactSettingsPrivacyPtr) ToContactSettingsPrivacyPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(ContactSettingsPrivacyPtrOutput) } -func (in *contactSettingsPrivacyPtr) ToOutput(ctx context.Context) pulumix.Output[*ContactSettingsPrivacy] { - return pulumix.Output[*ContactSettingsPrivacy]{ - OutputState: in.ToContactSettingsPrivacyPtrOutputWithContext(ctx).OutputState, - } -} - // The algorithm used to generate the referenced DNSKEY. type DsRecordAlgorithm string @@ -587,12 +574,6 @@ func (in *dsRecordAlgorithmPtr) ToDsRecordAlgorithmPtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(DsRecordAlgorithmPtrOutput) } -func (in *dsRecordAlgorithmPtr) ToOutput(ctx context.Context) pulumix.Output[*DsRecordAlgorithm] { - return pulumix.Output[*DsRecordAlgorithm]{ - OutputState: in.ToDsRecordAlgorithmPtrOutputWithContext(ctx).OutputState, - } -} - // The hash function used to generate the digest of the referenced DNSKEY. type DsRecordDigestType string @@ -770,12 +751,6 @@ func (in *dsRecordDigestTypePtr) ToDsRecordDigestTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(DsRecordDigestTypePtrOutput) } -func (in *dsRecordDigestTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DsRecordDigestType] { - return pulumix.Output[*DsRecordDigestType]{ - OutputState: in.ToDsRecordDigestTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The state of DS records for this domain. Used to enable or disable automatic DNSSEC. type GoogleDomainsDnsDsState string @@ -947,12 +922,6 @@ func (in *googleDomainsDnsDsStatePtr) ToGoogleDomainsDnsDsStatePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(GoogleDomainsDnsDsStatePtrOutput) } -func (in *googleDomainsDnsDsStatePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleDomainsDnsDsState] { - return pulumix.Output[*GoogleDomainsDnsDsState]{ - OutputState: in.ToGoogleDomainsDnsDsStatePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The desired renewal method for this `Registration`. The actual `renewal_method` is automatically updated to reflect this choice. If unset or equal to `RENEWAL_METHOD_UNSPECIFIED`, it will be treated as if it were set to `AUTOMATIC_RENEWAL`. Can't be set to `RENEWAL_DISABLED` during resource creation and can only be updated when the `Registration` resource has state `ACTIVE` or `SUSPENDED`. When `preferred_renewal_method` is set to `AUTOMATIC_RENEWAL` the actual `renewal_method` can be set to `RENEWAL_DISABLED` in case of e.g. problems with the Billing Account or reported domain abuse. In such cases check the `issues` field on the `Registration`. After the problem is resolved the `renewal_method` will be automatically updated to `preferred_renewal_method` in a few hours. type ManagementSettingsPreferredRenewalMethod string @@ -1127,12 +1096,6 @@ func (in *managementSettingsPreferredRenewalMethodPtr) ToManagementSettingsPrefe return pulumi.ToOutputWithContext(ctx, in).(ManagementSettingsPreferredRenewalMethodPtrOutput) } -func (in *managementSettingsPreferredRenewalMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*ManagementSettingsPreferredRenewalMethod] { - return pulumix.Output[*ManagementSettingsPreferredRenewalMethod]{ - OutputState: in.ToManagementSettingsPreferredRenewalMethodPtrOutputWithContext(ctx).OutputState, - } -} - // Controls whether the domain can be transferred to another registrar. type ManagementSettingsTransferLockState string @@ -1304,12 +1267,6 @@ func (in *managementSettingsTransferLockStatePtr) ToManagementSettingsTransferLo return pulumi.ToOutputWithContext(ctx, in).(ManagementSettingsTransferLockStatePtrOutput) } -func (in *managementSettingsTransferLockStatePtr) ToOutput(ctx context.Context) pulumix.Output[*ManagementSettingsTransferLockState] { - return pulumix.Output[*ManagementSettingsTransferLockState]{ - OutputState: in.ToManagementSettingsTransferLockStatePtrOutputWithContext(ctx).OutputState, - } -} - type RegistrationContactNoticesItem string const ( @@ -1477,12 +1434,6 @@ func (in *registrationContactNoticesItemPtr) ToRegistrationContactNoticesItemPtr return pulumi.ToOutputWithContext(ctx, in).(RegistrationContactNoticesItemPtrOutput) } -func (in *registrationContactNoticesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*RegistrationContactNoticesItem] { - return pulumix.Output[*RegistrationContactNoticesItem]{ - OutputState: in.ToRegistrationContactNoticesItemPtrOutputWithContext(ctx).OutputState, - } -} - // RegistrationContactNoticesItemArrayInput is an input type that accepts RegistrationContactNoticesItemArray and RegistrationContactNoticesItemArrayOutput values. // You can construct a concrete instance of `RegistrationContactNoticesItemArrayInput` via: // @@ -1695,12 +1646,6 @@ func (in *registrationDomainNoticesItemPtr) ToRegistrationDomainNoticesItemPtrOu return pulumi.ToOutputWithContext(ctx, in).(RegistrationDomainNoticesItemPtrOutput) } -func (in *registrationDomainNoticesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*RegistrationDomainNoticesItem] { - return pulumix.Output[*RegistrationDomainNoticesItem]{ - OutputState: in.ToRegistrationDomainNoticesItemPtrOutputWithContext(ctx).OutputState, - } -} - // RegistrationDomainNoticesItemArrayInput is an input type that accepts RegistrationDomainNoticesItemArray and RegistrationDomainNoticesItemArrayOutput values. // You can construct a concrete instance of `RegistrationDomainNoticesItemArrayInput` via: // diff --git a/sdk/go/google/domains/v1alpha2/pulumiEnums.go b/sdk/go/google/domains/v1alpha2/pulumiEnums.go index 821684f465..090ee2b5dc 100644 --- a/sdk/go/google/domains/v1alpha2/pulumiEnums.go +++ b/sdk/go/google/domains/v1alpha2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Privacy setting for the contacts associated with the `Registration`. type ContactSettingsPrivacy string @@ -365,12 +358,6 @@ func (in *contactSettingsPrivacyPtr) ToContactSettingsPrivacyPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(ContactSettingsPrivacyPtrOutput) } -func (in *contactSettingsPrivacyPtr) ToOutput(ctx context.Context) pulumix.Output[*ContactSettingsPrivacy] { - return pulumix.Output[*ContactSettingsPrivacy]{ - OutputState: in.ToContactSettingsPrivacyPtrOutputWithContext(ctx).OutputState, - } -} - // The algorithm used to generate the referenced DNSKEY. type DsRecordAlgorithm string @@ -587,12 +574,6 @@ func (in *dsRecordAlgorithmPtr) ToDsRecordAlgorithmPtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(DsRecordAlgorithmPtrOutput) } -func (in *dsRecordAlgorithmPtr) ToOutput(ctx context.Context) pulumix.Output[*DsRecordAlgorithm] { - return pulumix.Output[*DsRecordAlgorithm]{ - OutputState: in.ToDsRecordAlgorithmPtrOutputWithContext(ctx).OutputState, - } -} - // The hash function used to generate the digest of the referenced DNSKEY. type DsRecordDigestType string @@ -770,12 +751,6 @@ func (in *dsRecordDigestTypePtr) ToDsRecordDigestTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(DsRecordDigestTypePtrOutput) } -func (in *dsRecordDigestTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DsRecordDigestType] { - return pulumix.Output[*DsRecordDigestType]{ - OutputState: in.ToDsRecordDigestTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The state of DS records for this domain. Used to enable or disable automatic DNSSEC. type GoogleDomainsDnsDsState string @@ -947,12 +922,6 @@ func (in *googleDomainsDnsDsStatePtr) ToGoogleDomainsDnsDsStatePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(GoogleDomainsDnsDsStatePtrOutput) } -func (in *googleDomainsDnsDsStatePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleDomainsDnsDsState] { - return pulumix.Output[*GoogleDomainsDnsDsState]{ - OutputState: in.ToGoogleDomainsDnsDsStatePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The desired renewal method for this `Registration`. The actual `renewal_method` is automatically updated to reflect this choice. If unset or equal to `RENEWAL_METHOD_UNSPECIFIED`, it will be treated as if it were set to `AUTOMATIC_RENEWAL`. Can't be set to `RENEWAL_DISABLED` during resource creation and can only be updated when the `Registration` resource has state `ACTIVE` or `SUSPENDED`. When `preferred_renewal_method` is set to `AUTOMATIC_RENEWAL` the actual `renewal_method` can be set to `RENEWAL_DISABLED` in case of e.g. problems with the Billing Account or reported domain abuse. In such cases check the `issues` field on the `Registration`. After the problem is resolved the `renewal_method` will be automatically updated to `preferred_renewal_method` in a few hours. type ManagementSettingsPreferredRenewalMethod string @@ -1127,12 +1096,6 @@ func (in *managementSettingsPreferredRenewalMethodPtr) ToManagementSettingsPrefe return pulumi.ToOutputWithContext(ctx, in).(ManagementSettingsPreferredRenewalMethodPtrOutput) } -func (in *managementSettingsPreferredRenewalMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*ManagementSettingsPreferredRenewalMethod] { - return pulumix.Output[*ManagementSettingsPreferredRenewalMethod]{ - OutputState: in.ToManagementSettingsPreferredRenewalMethodPtrOutputWithContext(ctx).OutputState, - } -} - // Controls whether the domain can be transferred to another registrar. type ManagementSettingsTransferLockState string @@ -1304,12 +1267,6 @@ func (in *managementSettingsTransferLockStatePtr) ToManagementSettingsTransferLo return pulumi.ToOutputWithContext(ctx, in).(ManagementSettingsTransferLockStatePtrOutput) } -func (in *managementSettingsTransferLockStatePtr) ToOutput(ctx context.Context) pulumix.Output[*ManagementSettingsTransferLockState] { - return pulumix.Output[*ManagementSettingsTransferLockState]{ - OutputState: in.ToManagementSettingsTransferLockStatePtrOutputWithContext(ctx).OutputState, - } -} - type RegistrationContactNoticesItem string const ( @@ -1477,12 +1434,6 @@ func (in *registrationContactNoticesItemPtr) ToRegistrationContactNoticesItemPtr return pulumi.ToOutputWithContext(ctx, in).(RegistrationContactNoticesItemPtrOutput) } -func (in *registrationContactNoticesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*RegistrationContactNoticesItem] { - return pulumix.Output[*RegistrationContactNoticesItem]{ - OutputState: in.ToRegistrationContactNoticesItemPtrOutputWithContext(ctx).OutputState, - } -} - // RegistrationContactNoticesItemArrayInput is an input type that accepts RegistrationContactNoticesItemArray and RegistrationContactNoticesItemArrayOutput values. // You can construct a concrete instance of `RegistrationContactNoticesItemArrayInput` via: // @@ -1695,12 +1646,6 @@ func (in *registrationDomainNoticesItemPtr) ToRegistrationDomainNoticesItemPtrOu return pulumi.ToOutputWithContext(ctx, in).(RegistrationDomainNoticesItemPtrOutput) } -func (in *registrationDomainNoticesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*RegistrationDomainNoticesItem] { - return pulumix.Output[*RegistrationDomainNoticesItem]{ - OutputState: in.ToRegistrationDomainNoticesItemPtrOutputWithContext(ctx).OutputState, - } -} - // RegistrationDomainNoticesItemArrayInput is an input type that accepts RegistrationDomainNoticesItemArray and RegistrationDomainNoticesItemArrayOutput values. // You can construct a concrete instance of `RegistrationDomainNoticesItemArrayInput` via: // diff --git a/sdk/go/google/domains/v1beta1/pulumiEnums.go b/sdk/go/google/domains/v1beta1/pulumiEnums.go index cfa0b40f31..10e2430f19 100644 --- a/sdk/go/google/domains/v1beta1/pulumiEnums.go +++ b/sdk/go/google/domains/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Privacy setting for the contacts associated with the `Registration`. type ContactSettingsPrivacy string @@ -365,12 +358,6 @@ func (in *contactSettingsPrivacyPtr) ToContactSettingsPrivacyPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(ContactSettingsPrivacyPtrOutput) } -func (in *contactSettingsPrivacyPtr) ToOutput(ctx context.Context) pulumix.Output[*ContactSettingsPrivacy] { - return pulumix.Output[*ContactSettingsPrivacy]{ - OutputState: in.ToContactSettingsPrivacyPtrOutputWithContext(ctx).OutputState, - } -} - // The algorithm used to generate the referenced DNSKEY. type DsRecordAlgorithm string @@ -587,12 +574,6 @@ func (in *dsRecordAlgorithmPtr) ToDsRecordAlgorithmPtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(DsRecordAlgorithmPtrOutput) } -func (in *dsRecordAlgorithmPtr) ToOutput(ctx context.Context) pulumix.Output[*DsRecordAlgorithm] { - return pulumix.Output[*DsRecordAlgorithm]{ - OutputState: in.ToDsRecordAlgorithmPtrOutputWithContext(ctx).OutputState, - } -} - // The hash function used to generate the digest of the referenced DNSKEY. type DsRecordDigestType string @@ -770,12 +751,6 @@ func (in *dsRecordDigestTypePtr) ToDsRecordDigestTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(DsRecordDigestTypePtrOutput) } -func (in *dsRecordDigestTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DsRecordDigestType] { - return pulumix.Output[*DsRecordDigestType]{ - OutputState: in.ToDsRecordDigestTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The state of DS records for this domain. Used to enable or disable automatic DNSSEC. type GoogleDomainsDnsDsState string @@ -947,12 +922,6 @@ func (in *googleDomainsDnsDsStatePtr) ToGoogleDomainsDnsDsStatePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(GoogleDomainsDnsDsStatePtrOutput) } -func (in *googleDomainsDnsDsStatePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleDomainsDnsDsState] { - return pulumix.Output[*GoogleDomainsDnsDsState]{ - OutputState: in.ToGoogleDomainsDnsDsStatePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The desired renewal method for this `Registration`. The actual `renewal_method` is automatically updated to reflect this choice. If unset or equal to `RENEWAL_METHOD_UNSPECIFIED`, it will be treated as if it were set to `AUTOMATIC_RENEWAL`. Can't be set to `RENEWAL_DISABLED` during resource creation and can only be updated when the `Registration` resource has state `ACTIVE` or `SUSPENDED`. When `preferred_renewal_method` is set to `AUTOMATIC_RENEWAL` the actual `renewal_method` can be set to `RENEWAL_DISABLED` in case of e.g. problems with the Billing Account or reported domain abuse. In such cases check the `issues` field on the `Registration`. After the problem is resolved the `renewal_method` will be automatically updated to `preferred_renewal_method` in a few hours. type ManagementSettingsPreferredRenewalMethod string @@ -1127,12 +1096,6 @@ func (in *managementSettingsPreferredRenewalMethodPtr) ToManagementSettingsPrefe return pulumi.ToOutputWithContext(ctx, in).(ManagementSettingsPreferredRenewalMethodPtrOutput) } -func (in *managementSettingsPreferredRenewalMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*ManagementSettingsPreferredRenewalMethod] { - return pulumix.Output[*ManagementSettingsPreferredRenewalMethod]{ - OutputState: in.ToManagementSettingsPreferredRenewalMethodPtrOutputWithContext(ctx).OutputState, - } -} - // Controls whether the domain can be transferred to another registrar. type ManagementSettingsTransferLockState string @@ -1304,12 +1267,6 @@ func (in *managementSettingsTransferLockStatePtr) ToManagementSettingsTransferLo return pulumi.ToOutputWithContext(ctx, in).(ManagementSettingsTransferLockStatePtrOutput) } -func (in *managementSettingsTransferLockStatePtr) ToOutput(ctx context.Context) pulumix.Output[*ManagementSettingsTransferLockState] { - return pulumix.Output[*ManagementSettingsTransferLockState]{ - OutputState: in.ToManagementSettingsTransferLockStatePtrOutputWithContext(ctx).OutputState, - } -} - type RegistrationContactNoticesItem string const ( @@ -1477,12 +1434,6 @@ func (in *registrationContactNoticesItemPtr) ToRegistrationContactNoticesItemPtr return pulumi.ToOutputWithContext(ctx, in).(RegistrationContactNoticesItemPtrOutput) } -func (in *registrationContactNoticesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*RegistrationContactNoticesItem] { - return pulumix.Output[*RegistrationContactNoticesItem]{ - OutputState: in.ToRegistrationContactNoticesItemPtrOutputWithContext(ctx).OutputState, - } -} - // RegistrationContactNoticesItemArrayInput is an input type that accepts RegistrationContactNoticesItemArray and RegistrationContactNoticesItemArrayOutput values. // You can construct a concrete instance of `RegistrationContactNoticesItemArrayInput` via: // @@ -1695,12 +1646,6 @@ func (in *registrationDomainNoticesItemPtr) ToRegistrationDomainNoticesItemPtrOu return pulumi.ToOutputWithContext(ctx, in).(RegistrationDomainNoticesItemPtrOutput) } -func (in *registrationDomainNoticesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*RegistrationDomainNoticesItem] { - return pulumix.Output[*RegistrationDomainNoticesItem]{ - OutputState: in.ToRegistrationDomainNoticesItemPtrOutputWithContext(ctx).OutputState, - } -} - // RegistrationDomainNoticesItemArrayInput is an input type that accepts RegistrationDomainNoticesItemArray and RegistrationDomainNoticesItemArrayOutput values. // You can construct a concrete instance of `RegistrationDomainNoticesItemArrayInput` via: // diff --git a/sdk/go/google/essentialcontacts/v1/pulumiEnums.go b/sdk/go/google/essentialcontacts/v1/pulumiEnums.go index 9248a04c90..3f61326c15 100644 --- a/sdk/go/google/essentialcontacts/v1/pulumiEnums.go +++ b/sdk/go/google/essentialcontacts/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) type ContactNotificationCategorySubscriptionsItem string @@ -199,12 +198,6 @@ func (in *contactNotificationCategorySubscriptionsItemPtr) ToContactNotification return pulumi.ToOutputWithContext(ctx, in).(ContactNotificationCategorySubscriptionsItemPtrOutput) } -func (in *contactNotificationCategorySubscriptionsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*ContactNotificationCategorySubscriptionsItem] { - return pulumix.Output[*ContactNotificationCategorySubscriptionsItem]{ - OutputState: in.ToContactNotificationCategorySubscriptionsItemPtrOutputWithContext(ctx).OutputState, - } -} - // ContactNotificationCategorySubscriptionsItemArrayInput is an input type that accepts ContactNotificationCategorySubscriptionsItemArray and ContactNotificationCategorySubscriptionsItemArrayOutput values. // You can construct a concrete instance of `ContactNotificationCategorySubscriptionsItemArrayInput` via: // @@ -421,12 +414,6 @@ func (in *contactValidationStatePtr) ToContactValidationStatePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(ContactValidationStatePtrOutput) } -func (in *contactValidationStatePtr) ToOutput(ctx context.Context) pulumix.Output[*ContactValidationState] { - return pulumix.Output[*ContactValidationState]{ - OutputState: in.ToContactValidationStatePtrOutputWithContext(ctx).OutputState, - } -} - type FolderContactNotificationCategorySubscriptionsItem string const ( @@ -615,12 +602,6 @@ func (in *folderContactNotificationCategorySubscriptionsItemPtr) ToFolderContact return pulumi.ToOutputWithContext(ctx, in).(FolderContactNotificationCategorySubscriptionsItemPtrOutput) } -func (in *folderContactNotificationCategorySubscriptionsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*FolderContactNotificationCategorySubscriptionsItem] { - return pulumix.Output[*FolderContactNotificationCategorySubscriptionsItem]{ - OutputState: in.ToFolderContactNotificationCategorySubscriptionsItemPtrOutputWithContext(ctx).OutputState, - } -} - // FolderContactNotificationCategorySubscriptionsItemArrayInput is an input type that accepts FolderContactNotificationCategorySubscriptionsItemArray and FolderContactNotificationCategorySubscriptionsItemArrayOutput values. // You can construct a concrete instance of `FolderContactNotificationCategorySubscriptionsItemArrayInput` via: // @@ -837,12 +818,6 @@ func (in *folderContactValidationStatePtr) ToFolderContactValidationStatePtrOutp return pulumi.ToOutputWithContext(ctx, in).(FolderContactValidationStatePtrOutput) } -func (in *folderContactValidationStatePtr) ToOutput(ctx context.Context) pulumix.Output[*FolderContactValidationState] { - return pulumix.Output[*FolderContactValidationState]{ - OutputState: in.ToFolderContactValidationStatePtrOutputWithContext(ctx).OutputState, - } -} - type OrganizationContactNotificationCategorySubscriptionsItem string const ( @@ -1031,12 +1006,6 @@ func (in *organizationContactNotificationCategorySubscriptionsItemPtr) ToOrganiz return pulumi.ToOutputWithContext(ctx, in).(OrganizationContactNotificationCategorySubscriptionsItemPtrOutput) } -func (in *organizationContactNotificationCategorySubscriptionsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*OrganizationContactNotificationCategorySubscriptionsItem] { - return pulumix.Output[*OrganizationContactNotificationCategorySubscriptionsItem]{ - OutputState: in.ToOrganizationContactNotificationCategorySubscriptionsItemPtrOutputWithContext(ctx).OutputState, - } -} - // OrganizationContactNotificationCategorySubscriptionsItemArrayInput is an input type that accepts OrganizationContactNotificationCategorySubscriptionsItemArray and OrganizationContactNotificationCategorySubscriptionsItemArrayOutput values. // You can construct a concrete instance of `OrganizationContactNotificationCategorySubscriptionsItemArrayInput` via: // @@ -1253,12 +1222,6 @@ func (in *organizationContactValidationStatePtr) ToOrganizationContactValidation return pulumi.ToOutputWithContext(ctx, in).(OrganizationContactValidationStatePtrOutput) } -func (in *organizationContactValidationStatePtr) ToOutput(ctx context.Context) pulumix.Output[*OrganizationContactValidationState] { - return pulumix.Output[*OrganizationContactValidationState]{ - OutputState: in.ToOrganizationContactValidationStatePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ContactNotificationCategorySubscriptionsItemInput)(nil)).Elem(), ContactNotificationCategorySubscriptionsItem("NOTIFICATION_CATEGORY_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*ContactNotificationCategorySubscriptionsItemPtrInput)(nil)).Elem(), ContactNotificationCategorySubscriptionsItem("NOTIFICATION_CATEGORY_UNSPECIFIED")) diff --git a/sdk/go/google/eventarc/v1/pulumiEnums.go b/sdk/go/google/eventarc/v1/pulumiEnums.go index 05bc5ef61a..d6528a471f 100644 --- a/sdk/go/google/eventarc/v1/pulumiEnums.go +++ b/sdk/go/google/eventarc/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/eventarc/v1beta1/pulumiEnums.go b/sdk/go/google/eventarc/v1beta1/pulumiEnums.go index 186b214402..623323d9f9 100644 --- a/sdk/go/google/eventarc/v1beta1/pulumiEnums.go +++ b/sdk/go/google/eventarc/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/file/v1/pulumiEnums.go b/sdk/go/google/file/v1/pulumiEnums.go index fa06bedd47..39d8ddeee1 100644 --- a/sdk/go/google/file/v1/pulumiEnums.go +++ b/sdk/go/google/file/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The service tier of the instance. @@ -200,12 +199,6 @@ func (in *instanceTierPtr) ToInstanceTierPtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(InstanceTierPtrOutput) } -func (in *instanceTierPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceTier] { - return pulumix.Output[*InstanceTier]{ - OutputState: in.ToInstanceTierPtrOutputWithContext(ctx).OutputState, - } -} - // The network connect mode of the Filestore instance. If not provided, the connect mode defaults to DIRECT_PEERING. type NetworkConfigConnectMode string @@ -377,12 +370,6 @@ func (in *networkConfigConnectModePtr) ToNetworkConfigConnectModePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(NetworkConfigConnectModePtrOutput) } -func (in *networkConfigConnectModePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkConfigConnectMode] { - return pulumix.Output[*NetworkConfigConnectMode]{ - OutputState: in.ToNetworkConfigConnectModePtrOutputWithContext(ctx).OutputState, - } -} - type NetworkConfigModesItem string const ( @@ -550,12 +537,6 @@ func (in *networkConfigModesItemPtr) ToNetworkConfigModesItemPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(NetworkConfigModesItemPtrOutput) } -func (in *networkConfigModesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkConfigModesItem] { - return pulumix.Output[*NetworkConfigModesItem]{ - OutputState: in.ToNetworkConfigModesItemPtrOutputWithContext(ctx).OutputState, - } -} - // NetworkConfigModesItemArrayInput is an input type that accepts NetworkConfigModesItemArray and NetworkConfigModesItemArrayOutput values. // You can construct a concrete instance of `NetworkConfigModesItemArrayInput` via: // @@ -772,12 +753,6 @@ func (in *nfsExportOptionsAccessModePtr) ToNfsExportOptionsAccessModePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(NfsExportOptionsAccessModePtrOutput) } -func (in *nfsExportOptionsAccessModePtr) ToOutput(ctx context.Context) pulumix.Output[*NfsExportOptionsAccessMode] { - return pulumix.Output[*NfsExportOptionsAccessMode]{ - OutputState: in.ToNfsExportOptionsAccessModePtrOutputWithContext(ctx).OutputState, - } -} - // Either NO_ROOT_SQUASH, for allowing root access on the exported directory, or ROOT_SQUASH, for not allowing root access. The default is NO_ROOT_SQUASH. type NfsExportOptionsSquashMode string @@ -949,12 +924,6 @@ func (in *nfsExportOptionsSquashModePtr) ToNfsExportOptionsSquashModePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(NfsExportOptionsSquashModePtrOutput) } -func (in *nfsExportOptionsSquashModePtr) ToOutput(ctx context.Context) pulumix.Output[*NfsExportOptionsSquashMode] { - return pulumix.Output[*NfsExportOptionsSquashMode]{ - OutputState: in.ToNfsExportOptionsSquashModePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*InstanceTierInput)(nil)).Elem(), InstanceTier("TIER_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*InstanceTierPtrInput)(nil)).Elem(), InstanceTier("TIER_UNSPECIFIED")) diff --git a/sdk/go/google/file/v1beta1/pulumiEnums.go b/sdk/go/google/file/v1beta1/pulumiEnums.go index 5dc373f40e..237c5bb8a2 100644 --- a/sdk/go/google/file/v1beta1/pulumiEnums.go +++ b/sdk/go/google/file/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Immutable. The protocol indicates the access protocol for all shares in the instance. This field is immutable and it cannot be changed after the instance has been created. Default value: `NFS_V3`. @@ -182,12 +181,6 @@ func (in *instanceProtocolPtr) ToInstanceProtocolPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(InstanceProtocolPtrOutput) } -func (in *instanceProtocolPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceProtocol] { - return pulumix.Output[*InstanceProtocol]{ - OutputState: in.ToInstanceProtocolPtrOutputWithContext(ctx).OutputState, - } -} - // The service tier of the instance. type InstanceTier string @@ -377,12 +370,6 @@ func (in *instanceTierPtr) ToInstanceTierPtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(InstanceTierPtrOutput) } -func (in *instanceTierPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceTier] { - return pulumix.Output[*InstanceTier]{ - OutputState: in.ToInstanceTierPtrOutputWithContext(ctx).OutputState, - } -} - // The network connect mode of the Filestore instance. If not provided, the connect mode defaults to DIRECT_PEERING. type NetworkConfigConnectMode string @@ -554,12 +541,6 @@ func (in *networkConfigConnectModePtr) ToNetworkConfigConnectModePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(NetworkConfigConnectModePtrOutput) } -func (in *networkConfigConnectModePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkConfigConnectMode] { - return pulumix.Output[*NetworkConfigConnectMode]{ - OutputState: in.ToNetworkConfigConnectModePtrOutputWithContext(ctx).OutputState, - } -} - type NetworkConfigModesItem string const ( @@ -727,12 +708,6 @@ func (in *networkConfigModesItemPtr) ToNetworkConfigModesItemPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(NetworkConfigModesItemPtrOutput) } -func (in *networkConfigModesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkConfigModesItem] { - return pulumix.Output[*NetworkConfigModesItem]{ - OutputState: in.ToNetworkConfigModesItemPtrOutputWithContext(ctx).OutputState, - } -} - // NetworkConfigModesItemArrayInput is an input type that accepts NetworkConfigModesItemArray and NetworkConfigModesItemArrayOutput values. // You can construct a concrete instance of `NetworkConfigModesItemArrayInput` via: // @@ -949,12 +924,6 @@ func (in *nfsExportOptionsAccessModePtr) ToNfsExportOptionsAccessModePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(NfsExportOptionsAccessModePtrOutput) } -func (in *nfsExportOptionsAccessModePtr) ToOutput(ctx context.Context) pulumix.Output[*NfsExportOptionsAccessMode] { - return pulumix.Output[*NfsExportOptionsAccessMode]{ - OutputState: in.ToNfsExportOptionsAccessModePtrOutputWithContext(ctx).OutputState, - } -} - type NfsExportOptionsSecurityFlavorsItem string const ( @@ -1131,12 +1100,6 @@ func (in *nfsExportOptionsSecurityFlavorsItemPtr) ToNfsExportOptionsSecurityFlav return pulumi.ToOutputWithContext(ctx, in).(NfsExportOptionsSecurityFlavorsItemPtrOutput) } -func (in *nfsExportOptionsSecurityFlavorsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*NfsExportOptionsSecurityFlavorsItem] { - return pulumix.Output[*NfsExportOptionsSecurityFlavorsItem]{ - OutputState: in.ToNfsExportOptionsSecurityFlavorsItemPtrOutputWithContext(ctx).OutputState, - } -} - // NfsExportOptionsSecurityFlavorsItemArrayInput is an input type that accepts NfsExportOptionsSecurityFlavorsItemArray and NfsExportOptionsSecurityFlavorsItemArrayOutput values. // You can construct a concrete instance of `NfsExportOptionsSecurityFlavorsItemArrayInput` via: // @@ -1353,12 +1316,6 @@ func (in *nfsExportOptionsSquashModePtr) ToNfsExportOptionsSquashModePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(NfsExportOptionsSquashModePtrOutput) } -func (in *nfsExportOptionsSquashModePtr) ToOutput(ctx context.Context) pulumix.Output[*NfsExportOptionsSquashMode] { - return pulumix.Output[*NfsExportOptionsSquashMode]{ - OutputState: in.ToNfsExportOptionsSquashModePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*InstanceProtocolInput)(nil)).Elem(), InstanceProtocol("FILE_PROTOCOL_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*InstanceProtocolPtrInput)(nil)).Elem(), InstanceProtocol("FILE_PROTOCOL_UNSPECIFIED")) diff --git a/sdk/go/google/firebasedatabase/v1beta/pulumiEnums.go b/sdk/go/google/firebasedatabase/v1beta/pulumiEnums.go index 81fc60865a..3c07186d79 100644 --- a/sdk/go/google/firebasedatabase/v1beta/pulumiEnums.go +++ b/sdk/go/google/firebasedatabase/v1beta/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Immutable. The database instance type. On creation only USER_DATABASE is allowed, which is also the default when omitted. @@ -182,12 +181,6 @@ func (in *instanceTypePtr) ToInstanceTypePtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(InstanceTypePtrOutput) } -func (in *instanceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceType] { - return pulumix.Output[*InstanceType]{ - OutputState: in.ToInstanceTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*InstanceTypeInput)(nil)).Elem(), InstanceType("DATABASE_INSTANCE_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*InstanceTypePtrInput)(nil)).Elem(), InstanceType("DATABASE_INSTANCE_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/firebasehosting/v1beta1/pulumiEnums.go b/sdk/go/google/firebasehosting/v1beta1/pulumiEnums.go index f774482789..4406795e73 100644 --- a/sdk/go/google/firebasehosting/v1beta1/pulumiEnums.go +++ b/sdk/go/google/firebasehosting/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // A field that lets you specify which SSL certificate type Hosting creates for your domain name. Spark plan custom domains only have access to the `GROUPED` cert type, while Blaze plan domains can select any option. @@ -188,12 +187,6 @@ func (in *customDomainCertPreferencePtr) ToCustomDomainCertPreferencePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(CustomDomainCertPreferencePtrOutput) } -func (in *customDomainCertPreferencePtr) ToOutput(ctx context.Context) pulumix.Output[*CustomDomainCertPreference] { - return pulumix.Output[*CustomDomainCertPreference]{ - OutputState: in.ToCustomDomainCertPreferencePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The redirect status code. type DomainRedirectType string @@ -362,12 +355,6 @@ func (in *domainRedirectTypePtr) ToDomainRedirectTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(DomainRedirectTypePtrOutput) } -func (in *domainRedirectTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DomainRedirectType] { - return pulumix.Output[*DomainRedirectType]{ - OutputState: in.ToDomainRedirectTypePtrOutputWithContext(ctx).OutputState, - } -} - // Explains the reason for the release. Specify a value for this field only when creating a `SITE_DISABLE` type release. type ReleaseType string @@ -542,12 +529,6 @@ func (in *releaseTypePtr) ToReleaseTypePtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(ReleaseTypePtrOutput) } -func (in *releaseTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ReleaseType] { - return pulumix.Output[*ReleaseType]{ - OutputState: in.ToReleaseTypePtrOutputWithContext(ctx).OutputState, - } -} - // How to handle well known App Association files. type ServingConfigAppAssociation string @@ -716,12 +697,6 @@ func (in *servingConfigAppAssociationPtr) ToServingConfigAppAssociationPtrOutput return pulumi.ToOutputWithContext(ctx, in).(ServingConfigAppAssociationPtrOutput) } -func (in *servingConfigAppAssociationPtr) ToOutput(ctx context.Context) pulumix.Output[*ServingConfigAppAssociation] { - return pulumix.Output[*ServingConfigAppAssociation]{ - OutputState: in.ToServingConfigAppAssociationPtrOutputWithContext(ctx).OutputState, - } -} - // Defines how to handle a trailing slash in the URL path. type ServingConfigTrailingSlashBehavior string @@ -893,12 +868,6 @@ func (in *servingConfigTrailingSlashBehaviorPtr) ToServingConfigTrailingSlashBeh return pulumi.ToOutputWithContext(ctx, in).(ServingConfigTrailingSlashBehaviorPtrOutput) } -func (in *servingConfigTrailingSlashBehaviorPtr) ToOutput(ctx context.Context) pulumix.Output[*ServingConfigTrailingSlashBehavior] { - return pulumix.Output[*ServingConfigTrailingSlashBehavior]{ - OutputState: in.ToServingConfigTrailingSlashBehaviorPtrOutputWithContext(ctx).OutputState, - } -} - // The deploy status of the version. For a successful deploy, call [`CreateVersion`](sites.versions/create) to make a new version (`CREATED` status), [upload all desired files](sites.versions/populateFiles) to the version, then [update](sites.versions/patch) the version to the `FINALIZED` status. Note that if you leave the version in the `CREATED` state for more than 12 hours, the system will automatically mark the version as `ABANDONED`. You can also change the status of a version to `DELETED` by calling [`DeleteVersion`](sites.versions/delete). type VersionStatus string diff --git a/sdk/go/google/firestore/v1/pulumiEnums.go b/sdk/go/google/firestore/v1/pulumiEnums.go index 38a4c099f8..35772b93e5 100644 --- a/sdk/go/google/firestore/v1/pulumiEnums.go +++ b/sdk/go/google/firestore/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The App Engine integration mode to use for this database. @@ -182,12 +181,6 @@ func (in *databaseAppEngineIntegrationModePtr) ToDatabaseAppEngineIntegrationMod return pulumi.ToOutputWithContext(ctx, in).(DatabaseAppEngineIntegrationModePtrOutput) } -func (in *databaseAppEngineIntegrationModePtr) ToOutput(ctx context.Context) pulumix.Output[*DatabaseAppEngineIntegrationMode] { - return pulumix.Output[*DatabaseAppEngineIntegrationMode]{ - OutputState: in.ToDatabaseAppEngineIntegrationModePtrOutputWithContext(ctx).OutputState, - } -} - // The concurrency control mode to use for this database. type DatabaseConcurrencyMode string @@ -362,12 +355,6 @@ func (in *databaseConcurrencyModePtr) ToDatabaseConcurrencyModePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(DatabaseConcurrencyModePtrOutput) } -func (in *databaseConcurrencyModePtr) ToOutput(ctx context.Context) pulumix.Output[*DatabaseConcurrencyMode] { - return pulumix.Output[*DatabaseConcurrencyMode]{ - OutputState: in.ToDatabaseConcurrencyModePtrOutputWithContext(ctx).OutputState, - } -} - // State of delete protection for the database. type DatabaseDeleteProtectionState string @@ -539,12 +526,6 @@ func (in *databaseDeleteProtectionStatePtr) ToDatabaseDeleteProtectionStatePtrOu return pulumi.ToOutputWithContext(ctx, in).(DatabaseDeleteProtectionStatePtrOutput) } -func (in *databaseDeleteProtectionStatePtr) ToOutput(ctx context.Context) pulumix.Output[*DatabaseDeleteProtectionState] { - return pulumix.Output[*DatabaseDeleteProtectionState]{ - OutputState: in.ToDatabaseDeleteProtectionStatePtrOutputWithContext(ctx).OutputState, - } -} - // Whether to enable the PITR feature on this database. type DatabasePointInTimeRecoveryEnablement string @@ -716,12 +697,6 @@ func (in *databasePointInTimeRecoveryEnablementPtr) ToDatabasePointInTimeRecover return pulumi.ToOutputWithContext(ctx, in).(DatabasePointInTimeRecoveryEnablementPtrOutput) } -func (in *databasePointInTimeRecoveryEnablementPtr) ToOutput(ctx context.Context) pulumix.Output[*DatabasePointInTimeRecoveryEnablement] { - return pulumix.Output[*DatabasePointInTimeRecoveryEnablement]{ - OutputState: in.ToDatabasePointInTimeRecoveryEnablementPtrOutputWithContext(ctx).OutputState, - } -} - // The type of the database. See https://cloud.google.com/datastore/docs/firestore-or-datastore for information about how to choose. type DatabaseType string @@ -893,12 +868,6 @@ func (in *databaseTypePtr) ToDatabaseTypePtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(DatabaseTypePtrOutput) } -func (in *databaseTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DatabaseType] { - return pulumix.Output[*DatabaseType]{ - OutputState: in.ToDatabaseTypePtrOutputWithContext(ctx).OutputState, - } -} - // Indicates that this field supports operations on `array_value`s. type GoogleFirestoreAdminV1IndexFieldArrayConfig string @@ -1067,12 +1036,6 @@ func (in *googleFirestoreAdminV1IndexFieldArrayConfigPtr) ToGoogleFirestoreAdmin return pulumi.ToOutputWithContext(ctx, in).(GoogleFirestoreAdminV1IndexFieldArrayConfigPtrOutput) } -func (in *googleFirestoreAdminV1IndexFieldArrayConfigPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleFirestoreAdminV1IndexFieldArrayConfig] { - return pulumix.Output[*GoogleFirestoreAdminV1IndexFieldArrayConfig]{ - OutputState: in.ToGoogleFirestoreAdminV1IndexFieldArrayConfigPtrOutputWithContext(ctx).OutputState, - } -} - // Indicates that this field supports ordering by the specified order or comparing using =, !=, <, <=, >, >=. type GoogleFirestoreAdminV1IndexFieldOrder string @@ -1244,12 +1207,6 @@ func (in *googleFirestoreAdminV1IndexFieldOrderPtr) ToGoogleFirestoreAdminV1Inde return pulumi.ToOutputWithContext(ctx, in).(GoogleFirestoreAdminV1IndexFieldOrderPtrOutput) } -func (in *googleFirestoreAdminV1IndexFieldOrderPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleFirestoreAdminV1IndexFieldOrder] { - return pulumix.Output[*GoogleFirestoreAdminV1IndexFieldOrder]{ - OutputState: in.ToGoogleFirestoreAdminV1IndexFieldOrderPtrOutputWithContext(ctx).OutputState, - } -} - // The day of week to run. DAY_OF_WEEK_UNSPECIFIED is not allowed. type GoogleFirestoreAdminV1WeeklyRecurrenceDay string @@ -1436,12 +1393,6 @@ func (in *googleFirestoreAdminV1WeeklyRecurrenceDayPtr) ToGoogleFirestoreAdminV1 return pulumi.ToOutputWithContext(ctx, in).(GoogleFirestoreAdminV1WeeklyRecurrenceDayPtrOutput) } -func (in *googleFirestoreAdminV1WeeklyRecurrenceDayPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleFirestoreAdminV1WeeklyRecurrenceDay] { - return pulumix.Output[*GoogleFirestoreAdminV1WeeklyRecurrenceDay]{ - OutputState: in.ToGoogleFirestoreAdminV1WeeklyRecurrenceDayPtrOutputWithContext(ctx).OutputState, - } -} - // The API scope supported by this index. type IndexApiScope string @@ -1610,12 +1561,6 @@ func (in *indexApiScopePtr) ToIndexApiScopePtrOutputWithContext(ctx context.Cont return pulumi.ToOutputWithContext(ctx, in).(IndexApiScopePtrOutput) } -func (in *indexApiScopePtr) ToOutput(ctx context.Context) pulumix.Output[*IndexApiScope] { - return pulumix.Output[*IndexApiScope]{ - OutputState: in.ToIndexApiScopePtrOutputWithContext(ctx).OutputState, - } -} - // Indexes with a collection query scope specified allow queries against a collection that is the child of a specific document, specified at query time, and that has the same collection id. Indexes with a collection group query scope specified allow queries against all collections descended from a specific document, specified at query time, and that have the same collection id as this index. type IndexQueryScope string @@ -1790,12 +1735,6 @@ func (in *indexQueryScopePtr) ToIndexQueryScopePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(IndexQueryScopePtrOutput) } -func (in *indexQueryScopePtr) ToOutput(ctx context.Context) pulumix.Output[*IndexQueryScope] { - return pulumix.Output[*IndexQueryScope]{ - OutputState: in.ToIndexQueryScopePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*DatabaseAppEngineIntegrationModeInput)(nil)).Elem(), DatabaseAppEngineIntegrationMode("APP_ENGINE_INTEGRATION_MODE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*DatabaseAppEngineIntegrationModePtrInput)(nil)).Elem(), DatabaseAppEngineIntegrationMode("APP_ENGINE_INTEGRATION_MODE_UNSPECIFIED")) diff --git a/sdk/go/google/firestore/v1beta1/pulumiEnums.go b/sdk/go/google/firestore/v1beta1/pulumiEnums.go index d04684a9cc..29c816730b 100644 --- a/sdk/go/google/firestore/v1beta1/pulumiEnums.go +++ b/sdk/go/google/firestore/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The field's mode. @@ -185,12 +184,6 @@ func (in *googleFirestoreAdminV1beta1IndexFieldModePtr) ToGoogleFirestoreAdminV1 return pulumi.ToOutputWithContext(ctx, in).(GoogleFirestoreAdminV1beta1IndexFieldModePtrOutput) } -func (in *googleFirestoreAdminV1beta1IndexFieldModePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleFirestoreAdminV1beta1IndexFieldMode] { - return pulumix.Output[*GoogleFirestoreAdminV1beta1IndexFieldMode]{ - OutputState: in.ToGoogleFirestoreAdminV1beta1IndexFieldModePtrOutputWithContext(ctx).OutputState, - } -} - // The state of the index. Output only. type IndexStateEnum string @@ -365,12 +358,6 @@ func (in *indexStateEnumPtr) ToIndexStateEnumPtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(IndexStateEnumPtrOutput) } -func (in *indexStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*IndexStateEnum] { - return pulumix.Output[*IndexStateEnum]{ - OutputState: in.ToIndexStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*GoogleFirestoreAdminV1beta1IndexFieldModeInput)(nil)).Elem(), GoogleFirestoreAdminV1beta1IndexFieldMode("MODE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*GoogleFirestoreAdminV1beta1IndexFieldModePtrInput)(nil)).Elem(), GoogleFirestoreAdminV1beta1IndexFieldMode("MODE_UNSPECIFIED")) diff --git a/sdk/go/google/firestore/v1beta2/pulumiEnums.go b/sdk/go/google/firestore/v1beta2/pulumiEnums.go index 522f03b4ac..cb2146501b 100644 --- a/sdk/go/google/firestore/v1beta2/pulumiEnums.go +++ b/sdk/go/google/firestore/v1beta2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Indicates that this field supports operations on `array_value`s. @@ -179,12 +178,6 @@ func (in *googleFirestoreAdminV1beta2IndexFieldArrayConfigPtr) ToGoogleFirestore return pulumi.ToOutputWithContext(ctx, in).(GoogleFirestoreAdminV1beta2IndexFieldArrayConfigPtrOutput) } -func (in *googleFirestoreAdminV1beta2IndexFieldArrayConfigPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleFirestoreAdminV1beta2IndexFieldArrayConfig] { - return pulumix.Output[*GoogleFirestoreAdminV1beta2IndexFieldArrayConfig]{ - OutputState: in.ToGoogleFirestoreAdminV1beta2IndexFieldArrayConfigPtrOutputWithContext(ctx).OutputState, - } -} - // Indicates that this field supports ordering by the specified order or comparing using =, <, <=, >, >=. type GoogleFirestoreAdminV1beta2IndexFieldOrder string @@ -356,12 +349,6 @@ func (in *googleFirestoreAdminV1beta2IndexFieldOrderPtr) ToGoogleFirestoreAdminV return pulumi.ToOutputWithContext(ctx, in).(GoogleFirestoreAdminV1beta2IndexFieldOrderPtrOutput) } -func (in *googleFirestoreAdminV1beta2IndexFieldOrderPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleFirestoreAdminV1beta2IndexFieldOrder] { - return pulumix.Output[*GoogleFirestoreAdminV1beta2IndexFieldOrder]{ - OutputState: in.ToGoogleFirestoreAdminV1beta2IndexFieldOrderPtrOutputWithContext(ctx).OutputState, - } -} - // Indexes with a collection query scope specified allow queries against a collection that is the child of a specific document, specified at query time, and that has the same collection id. Indexes with a collection group query scope specified allow queries against all collections descended from a specific document, specified at query time, and that have the same collection id as this index. type IndexQueryScope string @@ -533,12 +520,6 @@ func (in *indexQueryScopePtr) ToIndexQueryScopePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(IndexQueryScopePtrOutput) } -func (in *indexQueryScopePtr) ToOutput(ctx context.Context) pulumix.Output[*IndexQueryScope] { - return pulumix.Output[*IndexQueryScope]{ - OutputState: in.ToIndexQueryScopePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*GoogleFirestoreAdminV1beta2IndexFieldArrayConfigInput)(nil)).Elem(), GoogleFirestoreAdminV1beta2IndexFieldArrayConfig("ARRAY_CONFIG_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*GoogleFirestoreAdminV1beta2IndexFieldArrayConfigPtrInput)(nil)).Elem(), GoogleFirestoreAdminV1beta2IndexFieldArrayConfig("ARRAY_CONFIG_UNSPECIFIED")) diff --git a/sdk/go/google/gameservices/v1/pulumiEnums.go b/sdk/go/google/gameservices/v1/pulumiEnums.go index 6e35bada1f..78ee2079fd 100644 --- a/sdk/go/google/gameservices/v1/pulumiEnums.go +++ b/sdk/go/google/gameservices/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of the permission that was checked. type AuthorizationLoggingOptionsPermissionType string @@ -368,12 +361,6 @@ func (in *authorizationLoggingOptionsPermissionTypePtr) ToAuthorizationLoggingOp return pulumi.ToOutputWithContext(ctx, in).(AuthorizationLoggingOptionsPermissionTypePtrOutput) } -func (in *authorizationLoggingOptionsPermissionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuthorizationLoggingOptionsPermissionType] { - return pulumix.Output[*AuthorizationLoggingOptionsPermissionType]{ - OutputState: in.ToAuthorizationLoggingOptionsPermissionTypePtrOutputWithContext(ctx).OutputState, - } -} - // The log_name to populate in the Cloud Audit Record. type CloudAuditOptionsLogName string @@ -545,12 +532,6 @@ func (in *cloudAuditOptionsLogNamePtr) ToCloudAuditOptionsLogNamePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(CloudAuditOptionsLogNamePtrOutput) } -func (in *cloudAuditOptionsLogNamePtr) ToOutput(ctx context.Context) pulumix.Output[*CloudAuditOptionsLogName] { - return pulumix.Output[*CloudAuditOptionsLogName]{ - OutputState: in.ToCloudAuditOptionsLogNamePtrOutputWithContext(ctx).OutputState, - } -} - // Trusted attributes supplied by the IAM system. type ConditionIam string @@ -737,12 +718,6 @@ func (in *conditionIamPtr) ToConditionIamPtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(ConditionIamPtrOutput) } -func (in *conditionIamPtr) ToOutput(ctx context.Context) pulumix.Output[*ConditionIam] { - return pulumix.Output[*ConditionIam]{ - OutputState: in.ToConditionIamPtrOutputWithContext(ctx).OutputState, - } -} - // An operator to apply the subject with. type ConditionOp string @@ -923,12 +898,6 @@ func (in *conditionOpPtr) ToConditionOpPtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(ConditionOpPtrOutput) } -func (in *conditionOpPtr) ToOutput(ctx context.Context) pulumix.Output[*ConditionOp] { - return pulumix.Output[*ConditionOp]{ - OutputState: in.ToConditionOpPtrOutputWithContext(ctx).OutputState, - } -} - // Trusted attributes supplied by any service that owns resources and uses the IAM system for access control. type ConditionSys string @@ -1106,12 +1075,6 @@ func (in *conditionSysPtr) ToConditionSysPtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(ConditionSysPtrOutput) } -func (in *conditionSysPtr) ToOutput(ctx context.Context) pulumix.Output[*ConditionSys] { - return pulumix.Output[*ConditionSys]{ - OutputState: in.ToConditionSysPtrOutputWithContext(ctx).OutputState, - } -} - type DataAccessOptionsLogMode string const ( @@ -1279,12 +1242,6 @@ func (in *dataAccessOptionsLogModePtr) ToDataAccessOptionsLogModePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(DataAccessOptionsLogModePtrOutput) } -func (in *dataAccessOptionsLogModePtr) ToOutput(ctx context.Context) pulumix.Output[*DataAccessOptionsLogMode] { - return pulumix.Output[*DataAccessOptionsLogMode]{ - OutputState: in.ToDataAccessOptionsLogModePtrOutputWithContext(ctx).OutputState, - } -} - // Required type RuleAction string @@ -1465,12 +1422,6 @@ func (in *ruleActionPtr) ToRuleActionPtrOutputWithContext(ctx context.Context) R return pulumi.ToOutputWithContext(ctx, in).(RuleActionPtrOutput) } -func (in *ruleActionPtr) ToOutput(ctx context.Context) pulumix.Output[*RuleAction] { - return pulumix.Output[*RuleAction]{ - OutputState: in.ToRuleActionPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/gameservices/v1beta/pulumiEnums.go b/sdk/go/google/gameservices/v1beta/pulumiEnums.go index 488d1e5dc8..80d8bd5153 100644 --- a/sdk/go/google/gameservices/v1beta/pulumiEnums.go +++ b/sdk/go/google/gameservices/v1beta/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of the permission that was checked. type AuthorizationLoggingOptionsPermissionType string @@ -368,12 +361,6 @@ func (in *authorizationLoggingOptionsPermissionTypePtr) ToAuthorizationLoggingOp return pulumi.ToOutputWithContext(ctx, in).(AuthorizationLoggingOptionsPermissionTypePtrOutput) } -func (in *authorizationLoggingOptionsPermissionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuthorizationLoggingOptionsPermissionType] { - return pulumix.Output[*AuthorizationLoggingOptionsPermissionType]{ - OutputState: in.ToAuthorizationLoggingOptionsPermissionTypePtrOutputWithContext(ctx).OutputState, - } -} - // The log_name to populate in the Cloud Audit Record. type CloudAuditOptionsLogName string @@ -545,12 +532,6 @@ func (in *cloudAuditOptionsLogNamePtr) ToCloudAuditOptionsLogNamePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(CloudAuditOptionsLogNamePtrOutput) } -func (in *cloudAuditOptionsLogNamePtr) ToOutput(ctx context.Context) pulumix.Output[*CloudAuditOptionsLogName] { - return pulumix.Output[*CloudAuditOptionsLogName]{ - OutputState: in.ToCloudAuditOptionsLogNamePtrOutputWithContext(ctx).OutputState, - } -} - // Trusted attributes supplied by the IAM system. type ConditionIam string @@ -737,12 +718,6 @@ func (in *conditionIamPtr) ToConditionIamPtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(ConditionIamPtrOutput) } -func (in *conditionIamPtr) ToOutput(ctx context.Context) pulumix.Output[*ConditionIam] { - return pulumix.Output[*ConditionIam]{ - OutputState: in.ToConditionIamPtrOutputWithContext(ctx).OutputState, - } -} - // An operator to apply the subject with. type ConditionOp string @@ -923,12 +898,6 @@ func (in *conditionOpPtr) ToConditionOpPtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(ConditionOpPtrOutput) } -func (in *conditionOpPtr) ToOutput(ctx context.Context) pulumix.Output[*ConditionOp] { - return pulumix.Output[*ConditionOp]{ - OutputState: in.ToConditionOpPtrOutputWithContext(ctx).OutputState, - } -} - // Trusted attributes supplied by any service that owns resources and uses the IAM system for access control. type ConditionSys string @@ -1106,12 +1075,6 @@ func (in *conditionSysPtr) ToConditionSysPtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(ConditionSysPtrOutput) } -func (in *conditionSysPtr) ToOutput(ctx context.Context) pulumix.Output[*ConditionSys] { - return pulumix.Output[*ConditionSys]{ - OutputState: in.ToConditionSysPtrOutputWithContext(ctx).OutputState, - } -} - type DataAccessOptionsLogMode string const ( @@ -1279,12 +1242,6 @@ func (in *dataAccessOptionsLogModePtr) ToDataAccessOptionsLogModePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(DataAccessOptionsLogModePtrOutput) } -func (in *dataAccessOptionsLogModePtr) ToOutput(ctx context.Context) pulumix.Output[*DataAccessOptionsLogMode] { - return pulumix.Output[*DataAccessOptionsLogMode]{ - OutputState: in.ToDataAccessOptionsLogModePtrOutputWithContext(ctx).OutputState, - } -} - // Required type RuleAction string @@ -1465,12 +1422,6 @@ func (in *ruleActionPtr) ToRuleActionPtrOutputWithContext(ctx context.Context) R return pulumi.ToOutputWithContext(ctx, in).(RuleActionPtrOutput) } -func (in *ruleActionPtr) ToOutput(ctx context.Context) pulumix.Output[*RuleAction] { - return pulumix.Output[*RuleAction]{ - OutputState: in.ToRuleActionPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/genomics/v1alpha2/pulumiEnums.go b/sdk/go/google/genomics/v1alpha2/pulumiEnums.go index aacec89e0c..2eff03b01a 100644 --- a/sdk/go/google/genomics/v1alpha2/pulumiEnums.go +++ b/sdk/go/google/genomics/v1alpha2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Required. The type of the disk to create. @@ -185,12 +184,6 @@ func (in *diskTypePtr) ToDiskTypePtrOutputWithContext(ctx context.Context) DiskT return pulumi.ToOutputWithContext(ctx, in).(DiskTypePtrOutput) } -func (in *diskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DiskType] { - return pulumix.Output[*DiskType]{ - OutputState: in.ToDiskTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*DiskTypeInput)(nil)).Elem(), DiskType("TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*DiskTypePtrInput)(nil)).Elem(), DiskType("TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/gkebackup/v1/pulumiEnums.go b/sdk/go/google/gkebackup/v1/pulumiEnums.go index 4ad4bbec8d..ba82cd72c2 100644 --- a/sdk/go/google/gkebackup/v1/pulumiEnums.go +++ b/sdk/go/google/gkebackup/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Defines the behavior for handling the situation where cluster-scoped resources being restored already exist in the target cluster. This MUST be set to a value other than CLUSTER_RESOURCE_CONFLICT_POLICY_UNSPECIFIED if cluster_resource_restore_scope is not empty. type RestoreConfigClusterResourceConflictPolicy string @@ -362,12 +355,6 @@ func (in *restoreConfigClusterResourceConflictPolicyPtr) ToRestoreConfigClusterR return pulumi.ToOutputWithContext(ctx, in).(RestoreConfigClusterResourceConflictPolicyPtrOutput) } -func (in *restoreConfigClusterResourceConflictPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*RestoreConfigClusterResourceConflictPolicy] { - return pulumix.Output[*RestoreConfigClusterResourceConflictPolicy]{ - OutputState: in.ToRestoreConfigClusterResourceConflictPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Defines the behavior for handling the situation where sets of namespaced resources being restored already exist in the target cluster. This MUST be set to a value other than NAMESPACED_RESOURCE_RESTORE_MODE_UNSPECIFIED. type RestoreConfigNamespacedResourceRestoreMode string @@ -539,12 +526,6 @@ func (in *restoreConfigNamespacedResourceRestoreModePtr) ToRestoreConfigNamespac return pulumi.ToOutputWithContext(ctx, in).(RestoreConfigNamespacedResourceRestoreModePtrOutput) } -func (in *restoreConfigNamespacedResourceRestoreModePtr) ToOutput(ctx context.Context) pulumix.Output[*RestoreConfigNamespacedResourceRestoreMode] { - return pulumix.Output[*RestoreConfigNamespacedResourceRestoreMode]{ - OutputState: in.ToRestoreConfigNamespacedResourceRestoreModePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Specifies the mechanism to be used to restore volume data. Default: VOLUME_DATA_RESTORE_POLICY_UNSPECIFIED (will be treated as NO_VOLUME_DATA_RESTORATION). type RestoreConfigVolumeDataRestorePolicy string @@ -719,12 +700,6 @@ func (in *restoreConfigVolumeDataRestorePolicyPtr) ToRestoreConfigVolumeDataRest return pulumi.ToOutputWithContext(ctx, in).(RestoreConfigVolumeDataRestorePolicyPtrOutput) } -func (in *restoreConfigVolumeDataRestorePolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*RestoreConfigVolumeDataRestorePolicy] { - return pulumix.Output[*RestoreConfigVolumeDataRestorePolicy]{ - OutputState: in.ToRestoreConfigVolumeDataRestorePolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Required. op specifies the operation to perform. type TransformationRuleActionOp string @@ -908,12 +883,6 @@ func (in *transformationRuleActionOpPtr) ToTransformationRuleActionOpPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(TransformationRuleActionOpPtrOutput) } -func (in *transformationRuleActionOpPtr) ToOutput(ctx context.Context) pulumix.Output[*TransformationRuleActionOp] { - return pulumix.Output[*TransformationRuleActionOp]{ - OutputState: in.ToTransformationRuleActionOpPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/gkehub/v1/pulumiEnums.go b/sdk/go/google/gkehub/v1/pulumiEnums.go index 29c5c653b9..d1c7d5ccc9 100644 --- a/sdk/go/google/gkehub/v1/pulumiEnums.go +++ b/sdk/go/google/gkehub/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Mode of operation for binauthz policy evaluation. type BinaryAuthorizationConfigEvaluationMode string @@ -362,12 +355,6 @@ func (in *binaryAuthorizationConfigEvaluationModePtr) ToBinaryAuthorizationConfi return pulumi.ToOutputWithContext(ctx, in).(BinaryAuthorizationConfigEvaluationModePtrOutput) } -func (in *binaryAuthorizationConfigEvaluationModePtr) ToOutput(ctx context.Context) pulumix.Output[*BinaryAuthorizationConfigEvaluationMode] { - return pulumix.Output[*BinaryAuthorizationConfigEvaluationMode]{ - OutputState: in.ToBinaryAuthorizationConfigEvaluationModePtrOutputWithContext(ctx).OutputState, - } -} - type ConfigManagementPolicyControllerMonitoringBackendsItem string const ( @@ -538,12 +525,6 @@ func (in *configManagementPolicyControllerMonitoringBackendsItemPtr) ToConfigMan return pulumi.ToOutputWithContext(ctx, in).(ConfigManagementPolicyControllerMonitoringBackendsItemPtrOutput) } -func (in *configManagementPolicyControllerMonitoringBackendsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*ConfigManagementPolicyControllerMonitoringBackendsItem] { - return pulumix.Output[*ConfigManagementPolicyControllerMonitoringBackendsItem]{ - OutputState: in.ToConfigManagementPolicyControllerMonitoringBackendsItemPtrOutputWithContext(ctx).OutputState, - } -} - // ConfigManagementPolicyControllerMonitoringBackendsItemArrayInput is an input type that accepts ConfigManagementPolicyControllerMonitoringBackendsItemArray and ConfigManagementPolicyControllerMonitoringBackendsItemArrayOutput values. // You can construct a concrete instance of `ConfigManagementPolicyControllerMonitoringBackendsItemArrayInput` via: // @@ -760,12 +741,6 @@ func (in *fleetObservabilityRoutingConfigModePtr) ToFleetObservabilityRoutingCon return pulumi.ToOutputWithContext(ctx, in).(FleetObservabilityRoutingConfigModePtrOutput) } -func (in *fleetObservabilityRoutingConfigModePtr) ToOutput(ctx context.Context) pulumix.Output[*FleetObservabilityRoutingConfigMode] { - return pulumix.Output[*FleetObservabilityRoutingConfigMode]{ - OutputState: in.ToFleetObservabilityRoutingConfigModePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The on prem cluster's type. type OnPremClusterClusterType string @@ -943,12 +918,6 @@ func (in *onPremClusterClusterTypePtr) ToOnPremClusterClusterTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(OnPremClusterClusterTypePtrOutput) } -func (in *onPremClusterClusterTypePtr) ToOutput(ctx context.Context) pulumix.Output[*OnPremClusterClusterType] { - return pulumix.Output[*OnPremClusterClusterType]{ - OutputState: in.ToOnPremClusterClusterTypePtrOutputWithContext(ctx).OutputState, - } -} - // The install_spec represents the intended state specified by the latest request that mutated install_spec in the feature spec, not the lifecycle state of the feature observed by the Hub feature controller that is reported in the feature state. type PolicyControllerHubConfigInstallSpec string @@ -1126,12 +1095,6 @@ func (in *policyControllerHubConfigInstallSpecPtr) ToPolicyControllerHubConfigIn return pulumi.ToOutputWithContext(ctx, in).(PolicyControllerHubConfigInstallSpecPtrOutput) } -func (in *policyControllerHubConfigInstallSpecPtr) ToOutput(ctx context.Context) pulumix.Output[*PolicyControllerHubConfigInstallSpec] { - return pulumix.Output[*PolicyControllerHubConfigInstallSpec]{ - OutputState: in.ToPolicyControllerHubConfigInstallSpecPtrOutputWithContext(ctx).OutputState, - } -} - type PolicyControllerMonitoringConfigBackendsItem string const ( @@ -1302,12 +1265,6 @@ func (in *policyControllerMonitoringConfigBackendsItemPtr) ToPolicyControllerMon return pulumi.ToOutputWithContext(ctx, in).(PolicyControllerMonitoringConfigBackendsItemPtrOutput) } -func (in *policyControllerMonitoringConfigBackendsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*PolicyControllerMonitoringConfigBackendsItem] { - return pulumix.Output[*PolicyControllerMonitoringConfigBackendsItem]{ - OutputState: in.ToPolicyControllerMonitoringConfigBackendsItemPtrOutputWithContext(ctx).OutputState, - } -} - // PolicyControllerMonitoringConfigBackendsItemArrayInput is an input type that accepts PolicyControllerMonitoringConfigBackendsItemArray and PolicyControllerMonitoringConfigBackendsItemArrayOutput values. // You can construct a concrete instance of `PolicyControllerMonitoringConfigBackendsItemArrayInput` via: // @@ -1524,12 +1481,6 @@ func (in *policyControllerTemplateLibraryConfigInstallationPtr) ToPolicyControll return pulumi.ToOutputWithContext(ctx, in).(PolicyControllerTemplateLibraryConfigInstallationPtrOutput) } -func (in *policyControllerTemplateLibraryConfigInstallationPtr) ToOutput(ctx context.Context) pulumix.Output[*PolicyControllerTemplateLibraryConfigInstallation] { - return pulumix.Output[*PolicyControllerTemplateLibraryConfigInstallation]{ - OutputState: in.ToPolicyControllerTemplateLibraryConfigInstallationPtrOutputWithContext(ctx).OutputState, - } -} - // predefined_role is the Kubernetes default role to use type RolePredefinedRole string @@ -1707,12 +1658,6 @@ func (in *rolePredefinedRolePtr) ToRolePredefinedRolePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(RolePredefinedRolePtrOutput) } -func (in *rolePredefinedRolePtr) ToOutput(ctx context.Context) pulumix.Output[*RolePredefinedRole] { - return pulumix.Output[*RolePredefinedRole]{ - OutputState: in.ToRolePredefinedRolePtrOutputWithContext(ctx).OutputState, - } -} - // Sets which mode to use for Security Posture features. type SecurityPostureConfigMode string @@ -1884,12 +1829,6 @@ func (in *securityPostureConfigModePtr) ToSecurityPostureConfigModePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(SecurityPostureConfigModePtrOutput) } -func (in *securityPostureConfigModePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPostureConfigMode] { - return pulumix.Output[*SecurityPostureConfigMode]{ - OutputState: in.ToSecurityPostureConfigModePtrOutputWithContext(ctx).OutputState, - } -} - // Sets which mode to use for vulnerability scanning. type SecurityPostureConfigVulnerabilityMode string @@ -2064,12 +2003,6 @@ func (in *securityPostureConfigVulnerabilityModePtr) ToSecurityPostureConfigVuln return pulumi.ToOutputWithContext(ctx, in).(SecurityPostureConfigVulnerabilityModePtrOutput) } -func (in *securityPostureConfigVulnerabilityModePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPostureConfigVulnerabilityMode] { - return pulumix.Output[*SecurityPostureConfigVulnerabilityMode]{ - OutputState: in.ToSecurityPostureConfigVulnerabilityModePtrOutputWithContext(ctx).OutputState, - } -} - // Deprecated: use `management` instead Enables automatic control plane management. type ServiceMeshMembershipSpecControlPlane string @@ -2241,12 +2174,6 @@ func (in *serviceMeshMembershipSpecControlPlanePtr) ToServiceMeshMembershipSpecC return pulumi.ToOutputWithContext(ctx, in).(ServiceMeshMembershipSpecControlPlanePtrOutput) } -func (in *serviceMeshMembershipSpecControlPlanePtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceMeshMembershipSpecControlPlane] { - return pulumix.Output[*ServiceMeshMembershipSpecControlPlane]{ - OutputState: in.ToServiceMeshMembershipSpecControlPlanePtrOutputWithContext(ctx).OutputState, - } -} - // Enables automatic Service Mesh management. type ServiceMeshMembershipSpecManagement string @@ -2418,12 +2345,6 @@ func (in *serviceMeshMembershipSpecManagementPtr) ToServiceMeshMembershipSpecMan return pulumi.ToOutputWithContext(ctx, in).(ServiceMeshMembershipSpecManagementPtrOutput) } -func (in *serviceMeshMembershipSpecManagementPtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceMeshMembershipSpecManagement] { - return pulumix.Output[*ServiceMeshMembershipSpecManagement]{ - OutputState: in.ToServiceMeshMembershipSpecManagementPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/gkehub/v1alpha/pulumiEnums.go b/sdk/go/google/gkehub/v1alpha/pulumiEnums.go index 781b9455d3..0572679542 100644 --- a/sdk/go/google/gkehub/v1alpha/pulumiEnums.go +++ b/sdk/go/google/gkehub/v1alpha/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Mode of operation for binauthz policy evaluation. type BinaryAuthorizationConfigEvaluationMode string @@ -362,12 +355,6 @@ func (in *binaryAuthorizationConfigEvaluationModePtr) ToBinaryAuthorizationConfi return pulumi.ToOutputWithContext(ctx, in).(BinaryAuthorizationConfigEvaluationModePtrOutput) } -func (in *binaryAuthorizationConfigEvaluationModePtr) ToOutput(ctx context.Context) pulumix.Output[*BinaryAuthorizationConfigEvaluationMode] { - return pulumix.Output[*BinaryAuthorizationConfigEvaluationMode]{ - OutputState: in.ToBinaryAuthorizationConfigEvaluationModePtrOutputWithContext(ctx).OutputState, - } -} - type ConfigManagementPolicyControllerMonitoringBackendsItem string const ( @@ -538,12 +525,6 @@ func (in *configManagementPolicyControllerMonitoringBackendsItemPtr) ToConfigMan return pulumi.ToOutputWithContext(ctx, in).(ConfigManagementPolicyControllerMonitoringBackendsItemPtrOutput) } -func (in *configManagementPolicyControllerMonitoringBackendsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*ConfigManagementPolicyControllerMonitoringBackendsItem] { - return pulumix.Output[*ConfigManagementPolicyControllerMonitoringBackendsItem]{ - OutputState: in.ToConfigManagementPolicyControllerMonitoringBackendsItemPtrOutputWithContext(ctx).OutputState, - } -} - // ConfigManagementPolicyControllerMonitoringBackendsItemArrayInput is an input type that accepts ConfigManagementPolicyControllerMonitoringBackendsItemArray and ConfigManagementPolicyControllerMonitoringBackendsItemArrayOutput values. // You can construct a concrete instance of `ConfigManagementPolicyControllerMonitoringBackendsItemArrayInput` via: // @@ -766,12 +747,6 @@ func (in *featureSpecProvisionGoogleCaPtr) ToFeatureSpecProvisionGoogleCaPtrOutp return pulumi.ToOutputWithContext(ctx, in).(FeatureSpecProvisionGoogleCaPtrOutput) } -func (in *featureSpecProvisionGoogleCaPtr) ToOutput(ctx context.Context) pulumix.Output[*FeatureSpecProvisionGoogleCa] { - return pulumix.Output[*FeatureSpecProvisionGoogleCa]{ - OutputState: in.ToFeatureSpecProvisionGoogleCaPtrOutputWithContext(ctx).OutputState, - } -} - // mode configures the logs routing mode. type FleetObservabilityRoutingConfigMode string @@ -943,12 +918,6 @@ func (in *fleetObservabilityRoutingConfigModePtr) ToFleetObservabilityRoutingCon return pulumi.ToOutputWithContext(ctx, in).(FleetObservabilityRoutingConfigModePtrOutput) } -func (in *fleetObservabilityRoutingConfigModePtr) ToOutput(ctx context.Context) pulumix.Output[*FleetObservabilityRoutingConfigMode] { - return pulumix.Output[*FleetObservabilityRoutingConfigMode]{ - OutputState: in.ToFleetObservabilityRoutingConfigModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies workload certificate management. type MembershipSpecCertificateManagement string @@ -1120,12 +1089,6 @@ func (in *membershipSpecCertificateManagementPtr) ToMembershipSpecCertificateMan return pulumi.ToOutputWithContext(ctx, in).(MembershipSpecCertificateManagementPtrOutput) } -func (in *membershipSpecCertificateManagementPtr) ToOutput(ctx context.Context) pulumix.Output[*MembershipSpecCertificateManagement] { - return pulumix.Output[*MembershipSpecCertificateManagement]{ - OutputState: in.ToMembershipSpecCertificateManagementPtrOutputWithContext(ctx).OutputState, - } -} - // Deprecated: This field will be ignored and should not be set. Customer's billing structure. type MultiClusterIngressFeatureSpecBilling string @@ -1297,12 +1260,6 @@ func (in *multiClusterIngressFeatureSpecBillingPtr) ToMultiClusterIngressFeature return pulumi.ToOutputWithContext(ctx, in).(MultiClusterIngressFeatureSpecBillingPtrOutput) } -func (in *multiClusterIngressFeatureSpecBillingPtr) ToOutput(ctx context.Context) pulumix.Output[*MultiClusterIngressFeatureSpecBilling] { - return pulumix.Output[*MultiClusterIngressFeatureSpecBilling]{ - OutputState: in.ToMultiClusterIngressFeatureSpecBillingPtrOutputWithContext(ctx).OutputState, - } -} - // actuation_mode controls the behavior of the controller type NamespaceActuationFeatureSpecActuationMode string @@ -1474,12 +1431,6 @@ func (in *namespaceActuationFeatureSpecActuationModePtr) ToNamespaceActuationFea return pulumi.ToOutputWithContext(ctx, in).(NamespaceActuationFeatureSpecActuationModePtrOutput) } -func (in *namespaceActuationFeatureSpecActuationModePtr) ToOutput(ctx context.Context) pulumix.Output[*NamespaceActuationFeatureSpecActuationMode] { - return pulumix.Output[*NamespaceActuationFeatureSpecActuationMode]{ - OutputState: in.ToNamespaceActuationFeatureSpecActuationModePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The on prem cluster's type. type OnPremClusterClusterType string @@ -1657,12 +1608,6 @@ func (in *onPremClusterClusterTypePtr) ToOnPremClusterClusterTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(OnPremClusterClusterTypePtrOutput) } -func (in *onPremClusterClusterTypePtr) ToOutput(ctx context.Context) pulumix.Output[*OnPremClusterClusterType] { - return pulumix.Output[*OnPremClusterClusterType]{ - OutputState: in.ToOnPremClusterClusterTypePtrOutputWithContext(ctx).OutputState, - } -} - // The install_spec represents the intended state specified by the latest request that mutated install_spec in the feature spec, not the lifecycle state of the feature observed by the Hub feature controller that is reported in the feature state. type PolicyControllerHubConfigInstallSpec string @@ -1840,12 +1785,6 @@ func (in *policyControllerHubConfigInstallSpecPtr) ToPolicyControllerHubConfigIn return pulumi.ToOutputWithContext(ctx, in).(PolicyControllerHubConfigInstallSpecPtrOutput) } -func (in *policyControllerHubConfigInstallSpecPtr) ToOutput(ctx context.Context) pulumix.Output[*PolicyControllerHubConfigInstallSpec] { - return pulumix.Output[*PolicyControllerHubConfigInstallSpec]{ - OutputState: in.ToPolicyControllerHubConfigInstallSpecPtrOutputWithContext(ctx).OutputState, - } -} - type PolicyControllerMonitoringConfigBackendsItem string const ( @@ -2016,12 +1955,6 @@ func (in *policyControllerMonitoringConfigBackendsItemPtr) ToPolicyControllerMon return pulumi.ToOutputWithContext(ctx, in).(PolicyControllerMonitoringConfigBackendsItemPtrOutput) } -func (in *policyControllerMonitoringConfigBackendsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*PolicyControllerMonitoringConfigBackendsItem] { - return pulumix.Output[*PolicyControllerMonitoringConfigBackendsItem]{ - OutputState: in.ToPolicyControllerMonitoringConfigBackendsItemPtrOutputWithContext(ctx).OutputState, - } -} - // PolicyControllerMonitoringConfigBackendsItemArrayInput is an input type that accepts PolicyControllerMonitoringConfigBackendsItemArray and PolicyControllerMonitoringConfigBackendsItemArrayOutput values. // You can construct a concrete instance of `PolicyControllerMonitoringConfigBackendsItemArrayInput` via: // @@ -2238,12 +2171,6 @@ func (in *policyControllerTemplateLibraryConfigInstallationPtr) ToPolicyControll return pulumi.ToOutputWithContext(ctx, in).(PolicyControllerTemplateLibraryConfigInstallationPtrOutput) } -func (in *policyControllerTemplateLibraryConfigInstallationPtr) ToOutput(ctx context.Context) pulumix.Output[*PolicyControllerTemplateLibraryConfigInstallation] { - return pulumix.Output[*PolicyControllerTemplateLibraryConfigInstallation]{ - OutputState: in.ToPolicyControllerTemplateLibraryConfigInstallationPtrOutputWithContext(ctx).OutputState, - } -} - // predefined_role is the Kubernetes default role to use type RolePredefinedRole string @@ -2421,12 +2348,6 @@ func (in *rolePredefinedRolePtr) ToRolePredefinedRolePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(RolePredefinedRolePtrOutput) } -func (in *rolePredefinedRolePtr) ToOutput(ctx context.Context) pulumix.Output[*RolePredefinedRole] { - return pulumix.Output[*RolePredefinedRole]{ - OutputState: in.ToRolePredefinedRolePtrOutputWithContext(ctx).OutputState, - } -} - // Sets which mode to use for Security Posture features. type SecurityPostureConfigMode string @@ -2598,12 +2519,6 @@ func (in *securityPostureConfigModePtr) ToSecurityPostureConfigModePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(SecurityPostureConfigModePtrOutput) } -func (in *securityPostureConfigModePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPostureConfigMode] { - return pulumix.Output[*SecurityPostureConfigMode]{ - OutputState: in.ToSecurityPostureConfigModePtrOutputWithContext(ctx).OutputState, - } -} - // Sets which mode to use for vulnerability scanning. type SecurityPostureConfigVulnerabilityMode string @@ -2778,12 +2693,6 @@ func (in *securityPostureConfigVulnerabilityModePtr) ToSecurityPostureConfigVuln return pulumi.ToOutputWithContext(ctx, in).(SecurityPostureConfigVulnerabilityModePtrOutput) } -func (in *securityPostureConfigVulnerabilityModePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPostureConfigVulnerabilityMode] { - return pulumix.Output[*SecurityPostureConfigVulnerabilityMode]{ - OutputState: in.ToSecurityPostureConfigVulnerabilityModePtrOutputWithContext(ctx).OutputState, - } -} - // Deprecated: use `management` instead Enables automatic control plane management. type ServiceMeshMembershipSpecControlPlane string @@ -2955,12 +2864,6 @@ func (in *serviceMeshMembershipSpecControlPlanePtr) ToServiceMeshMembershipSpecC return pulumi.ToOutputWithContext(ctx, in).(ServiceMeshMembershipSpecControlPlanePtrOutput) } -func (in *serviceMeshMembershipSpecControlPlanePtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceMeshMembershipSpecControlPlane] { - return pulumix.Output[*ServiceMeshMembershipSpecControlPlane]{ - OutputState: in.ToServiceMeshMembershipSpecControlPlanePtrOutputWithContext(ctx).OutputState, - } -} - // Determines which release channel to use for default injection and service mesh APIs. type ServiceMeshMembershipSpecDefaultChannel string @@ -3135,12 +3038,6 @@ func (in *serviceMeshMembershipSpecDefaultChannelPtr) ToServiceMeshMembershipSpe return pulumi.ToOutputWithContext(ctx, in).(ServiceMeshMembershipSpecDefaultChannelPtrOutput) } -func (in *serviceMeshMembershipSpecDefaultChannelPtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceMeshMembershipSpecDefaultChannel] { - return pulumix.Output[*ServiceMeshMembershipSpecDefaultChannel]{ - OutputState: in.ToServiceMeshMembershipSpecDefaultChannelPtrOutputWithContext(ctx).OutputState, - } -} - // Enables automatic Service Mesh management. type ServiceMeshMembershipSpecManagement string @@ -3312,12 +3209,6 @@ func (in *serviceMeshMembershipSpecManagementPtr) ToServiceMeshMembershipSpecMan return pulumi.ToOutputWithContext(ctx, in).(ServiceMeshMembershipSpecManagementPtrOutput) } -func (in *serviceMeshMembershipSpecManagementPtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceMeshMembershipSpecManagement] { - return pulumix.Output[*ServiceMeshMembershipSpecManagement]{ - OutputState: in.ToServiceMeshMembershipSpecManagementPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/gkehub/v1alpha2/pulumiEnums.go b/sdk/go/google/gkehub/v1alpha2/pulumiEnums.go index 5972e33a7c..b09a027587 100644 --- a/sdk/go/google/gkehub/v1alpha2/pulumiEnums.go +++ b/sdk/go/google/gkehub/v1alpha2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The infrastructure type this Membership is running on. type MembershipInfrastructureType string @@ -362,12 +355,6 @@ func (in *membershipInfrastructureTypePtr) ToMembershipInfrastructureTypePtrOutp return pulumi.ToOutputWithContext(ctx, in).(MembershipInfrastructureTypePtrOutput) } -func (in *membershipInfrastructureTypePtr) ToOutput(ctx context.Context) pulumix.Output[*MembershipInfrastructureType] { - return pulumix.Output[*MembershipInfrastructureType]{ - OutputState: in.ToMembershipInfrastructureTypePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The on prem cluster's type. type OnPremClusterClusterType string @@ -545,12 +532,6 @@ func (in *onPremClusterClusterTypePtr) ToOnPremClusterClusterTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(OnPremClusterClusterTypePtrOutput) } -func (in *onPremClusterClusterTypePtr) ToOutput(ctx context.Context) pulumix.Output[*OnPremClusterClusterType] { - return pulumix.Output[*OnPremClusterClusterType]{ - OutputState: in.ToOnPremClusterClusterTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/gkehub/v1beta/pulumiEnums.go b/sdk/go/google/gkehub/v1beta/pulumiEnums.go index 85a1bbc4e0..86268c2c33 100644 --- a/sdk/go/google/gkehub/v1beta/pulumiEnums.go +++ b/sdk/go/google/gkehub/v1beta/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Mode of operation for binauthz policy evaluation. type BinaryAuthorizationConfigEvaluationMode string @@ -362,12 +355,6 @@ func (in *binaryAuthorizationConfigEvaluationModePtr) ToBinaryAuthorizationConfi return pulumi.ToOutputWithContext(ctx, in).(BinaryAuthorizationConfigEvaluationModePtrOutput) } -func (in *binaryAuthorizationConfigEvaluationModePtr) ToOutput(ctx context.Context) pulumix.Output[*BinaryAuthorizationConfigEvaluationMode] { - return pulumix.Output[*BinaryAuthorizationConfigEvaluationMode]{ - OutputState: in.ToBinaryAuthorizationConfigEvaluationModePtrOutputWithContext(ctx).OutputState, - } -} - type ConfigManagementPolicyControllerMonitoringBackendsItem string const ( @@ -538,12 +525,6 @@ func (in *configManagementPolicyControllerMonitoringBackendsItemPtr) ToConfigMan return pulumi.ToOutputWithContext(ctx, in).(ConfigManagementPolicyControllerMonitoringBackendsItemPtrOutput) } -func (in *configManagementPolicyControllerMonitoringBackendsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*ConfigManagementPolicyControllerMonitoringBackendsItem] { - return pulumix.Output[*ConfigManagementPolicyControllerMonitoringBackendsItem]{ - OutputState: in.ToConfigManagementPolicyControllerMonitoringBackendsItemPtrOutputWithContext(ctx).OutputState, - } -} - // ConfigManagementPolicyControllerMonitoringBackendsItemArrayInput is an input type that accepts ConfigManagementPolicyControllerMonitoringBackendsItemArray and ConfigManagementPolicyControllerMonitoringBackendsItemArrayOutput values. // You can construct a concrete instance of `ConfigManagementPolicyControllerMonitoringBackendsItemArrayInput` via: // @@ -760,12 +741,6 @@ func (in *fleetObservabilityRoutingConfigModePtr) ToFleetObservabilityRoutingCon return pulumi.ToOutputWithContext(ctx, in).(FleetObservabilityRoutingConfigModePtrOutput) } -func (in *fleetObservabilityRoutingConfigModePtr) ToOutput(ctx context.Context) pulumix.Output[*FleetObservabilityRoutingConfigMode] { - return pulumix.Output[*FleetObservabilityRoutingConfigMode]{ - OutputState: in.ToFleetObservabilityRoutingConfigModePtrOutputWithContext(ctx).OutputState, - } -} - // Deprecated: This field will be ignored and should not be set. Customer's billing structure. type MultiClusterIngressFeatureSpecBilling string @@ -937,12 +912,6 @@ func (in *multiClusterIngressFeatureSpecBillingPtr) ToMultiClusterIngressFeature return pulumi.ToOutputWithContext(ctx, in).(MultiClusterIngressFeatureSpecBillingPtrOutput) } -func (in *multiClusterIngressFeatureSpecBillingPtr) ToOutput(ctx context.Context) pulumix.Output[*MultiClusterIngressFeatureSpecBilling] { - return pulumix.Output[*MultiClusterIngressFeatureSpecBilling]{ - OutputState: in.ToMultiClusterIngressFeatureSpecBillingPtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The on prem cluster's type. type OnPremClusterClusterType string @@ -1120,12 +1089,6 @@ func (in *onPremClusterClusterTypePtr) ToOnPremClusterClusterTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(OnPremClusterClusterTypePtrOutput) } -func (in *onPremClusterClusterTypePtr) ToOutput(ctx context.Context) pulumix.Output[*OnPremClusterClusterType] { - return pulumix.Output[*OnPremClusterClusterType]{ - OutputState: in.ToOnPremClusterClusterTypePtrOutputWithContext(ctx).OutputState, - } -} - // The install_spec represents the intended state specified by the latest request that mutated install_spec in the feature spec, not the lifecycle state of the feature observed by the Hub feature controller that is reported in the feature state. type PolicyControllerHubConfigInstallSpec string @@ -1303,12 +1266,6 @@ func (in *policyControllerHubConfigInstallSpecPtr) ToPolicyControllerHubConfigIn return pulumi.ToOutputWithContext(ctx, in).(PolicyControllerHubConfigInstallSpecPtrOutput) } -func (in *policyControllerHubConfigInstallSpecPtr) ToOutput(ctx context.Context) pulumix.Output[*PolicyControllerHubConfigInstallSpec] { - return pulumix.Output[*PolicyControllerHubConfigInstallSpec]{ - OutputState: in.ToPolicyControllerHubConfigInstallSpecPtrOutputWithContext(ctx).OutputState, - } -} - type PolicyControllerMonitoringConfigBackendsItem string const ( @@ -1479,12 +1436,6 @@ func (in *policyControllerMonitoringConfigBackendsItemPtr) ToPolicyControllerMon return pulumi.ToOutputWithContext(ctx, in).(PolicyControllerMonitoringConfigBackendsItemPtrOutput) } -func (in *policyControllerMonitoringConfigBackendsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*PolicyControllerMonitoringConfigBackendsItem] { - return pulumix.Output[*PolicyControllerMonitoringConfigBackendsItem]{ - OutputState: in.ToPolicyControllerMonitoringConfigBackendsItemPtrOutputWithContext(ctx).OutputState, - } -} - // PolicyControllerMonitoringConfigBackendsItemArrayInput is an input type that accepts PolicyControllerMonitoringConfigBackendsItemArray and PolicyControllerMonitoringConfigBackendsItemArrayOutput values. // You can construct a concrete instance of `PolicyControllerMonitoringConfigBackendsItemArrayInput` via: // @@ -1701,12 +1652,6 @@ func (in *policyControllerTemplateLibraryConfigInstallationPtr) ToPolicyControll return pulumi.ToOutputWithContext(ctx, in).(PolicyControllerTemplateLibraryConfigInstallationPtrOutput) } -func (in *policyControllerTemplateLibraryConfigInstallationPtr) ToOutput(ctx context.Context) pulumix.Output[*PolicyControllerTemplateLibraryConfigInstallation] { - return pulumix.Output[*PolicyControllerTemplateLibraryConfigInstallation]{ - OutputState: in.ToPolicyControllerTemplateLibraryConfigInstallationPtrOutputWithContext(ctx).OutputState, - } -} - // predefined_role is the Kubernetes default role to use type RolePredefinedRole string @@ -1884,12 +1829,6 @@ func (in *rolePredefinedRolePtr) ToRolePredefinedRolePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(RolePredefinedRolePtrOutput) } -func (in *rolePredefinedRolePtr) ToOutput(ctx context.Context) pulumix.Output[*RolePredefinedRole] { - return pulumix.Output[*RolePredefinedRole]{ - OutputState: in.ToRolePredefinedRolePtrOutputWithContext(ctx).OutputState, - } -} - // Sets which mode to use for Security Posture features. type SecurityPostureConfigMode string @@ -2061,12 +2000,6 @@ func (in *securityPostureConfigModePtr) ToSecurityPostureConfigModePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(SecurityPostureConfigModePtrOutput) } -func (in *securityPostureConfigModePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPostureConfigMode] { - return pulumix.Output[*SecurityPostureConfigMode]{ - OutputState: in.ToSecurityPostureConfigModePtrOutputWithContext(ctx).OutputState, - } -} - // Sets which mode to use for vulnerability scanning. type SecurityPostureConfigVulnerabilityMode string @@ -2241,12 +2174,6 @@ func (in *securityPostureConfigVulnerabilityModePtr) ToSecurityPostureConfigVuln return pulumi.ToOutputWithContext(ctx, in).(SecurityPostureConfigVulnerabilityModePtrOutput) } -func (in *securityPostureConfigVulnerabilityModePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityPostureConfigVulnerabilityMode] { - return pulumix.Output[*SecurityPostureConfigVulnerabilityMode]{ - OutputState: in.ToSecurityPostureConfigVulnerabilityModePtrOutputWithContext(ctx).OutputState, - } -} - // Deprecated: use `management` instead Enables automatic control plane management. type ServiceMeshMembershipSpecControlPlane string @@ -2418,12 +2345,6 @@ func (in *serviceMeshMembershipSpecControlPlanePtr) ToServiceMeshMembershipSpecC return pulumi.ToOutputWithContext(ctx, in).(ServiceMeshMembershipSpecControlPlanePtrOutput) } -func (in *serviceMeshMembershipSpecControlPlanePtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceMeshMembershipSpecControlPlane] { - return pulumix.Output[*ServiceMeshMembershipSpecControlPlane]{ - OutputState: in.ToServiceMeshMembershipSpecControlPlanePtrOutputWithContext(ctx).OutputState, - } -} - // Enables automatic Service Mesh management. type ServiceMeshMembershipSpecManagement string @@ -2595,12 +2516,6 @@ func (in *serviceMeshMembershipSpecManagementPtr) ToServiceMeshMembershipSpecMan return pulumi.ToOutputWithContext(ctx, in).(ServiceMeshMembershipSpecManagementPtrOutput) } -func (in *serviceMeshMembershipSpecManagementPtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceMeshMembershipSpecManagement] { - return pulumix.Output[*ServiceMeshMembershipSpecManagement]{ - OutputState: in.ToServiceMeshMembershipSpecManagementPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/gkehub/v1beta1/pulumiEnums.go b/sdk/go/google/gkehub/v1beta1/pulumiEnums.go index 6aefe91597..40a17a19b4 100644 --- a/sdk/go/google/gkehub/v1beta1/pulumiEnums.go +++ b/sdk/go/google/gkehub/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The infrastructure type this Membership is running on. type MembershipInfrastructureType string @@ -362,12 +355,6 @@ func (in *membershipInfrastructureTypePtr) ToMembershipInfrastructureTypePtrOutp return pulumi.ToOutputWithContext(ctx, in).(MembershipInfrastructureTypePtrOutput) } -func (in *membershipInfrastructureTypePtr) ToOutput(ctx context.Context) pulumix.Output[*MembershipInfrastructureType] { - return pulumix.Output[*MembershipInfrastructureType]{ - OutputState: in.ToMembershipInfrastructureTypePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The on prem cluster's type. type OnPremClusterClusterType string @@ -545,12 +532,6 @@ func (in *onPremClusterClusterTypePtr) ToOnPremClusterClusterTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(OnPremClusterClusterTypePtrOutput) } -func (in *onPremClusterClusterTypePtr) ToOutput(ctx context.Context) pulumix.Output[*OnPremClusterClusterType] { - return pulumix.Output[*OnPremClusterClusterType]{ - OutputState: in.ToOnPremClusterClusterTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/gkeonprem/v1/pulumiEnums.go b/sdk/go/google/gkeonprem/v1/pulumiEnums.go index 3a861fb1a9..94007d3a6c 100644 --- a/sdk/go/google/gkeonprem/v1/pulumiEnums.go +++ b/sdk/go/google/gkeonprem/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Specifies which upgrade policy to use. @@ -182,12 +181,6 @@ func (in *bareMetalClusterUpgradePolicyPolicyPtr) ToBareMetalClusterUpgradePolic return pulumi.ToOutputWithContext(ctx, in).(BareMetalClusterUpgradePolicyPolicyPtrOutput) } -func (in *bareMetalClusterUpgradePolicyPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*BareMetalClusterUpgradePolicyPolicy] { - return pulumix.Output[*BareMetalClusterUpgradePolicyPolicy]{ - OutputState: in.ToBareMetalClusterUpgradePolicyPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the nodes operating system (default: LINUX). type BareMetalNodePoolConfigOperatingSystem string @@ -356,12 +349,6 @@ func (in *bareMetalNodePoolConfigOperatingSystemPtr) ToBareMetalNodePoolConfigOp return pulumi.ToOutputWithContext(ctx, in).(BareMetalNodePoolConfigOperatingSystemPtrOutput) } -func (in *bareMetalNodePoolConfigOperatingSystemPtr) ToOutput(ctx context.Context) pulumix.Output[*BareMetalNodePoolConfigOperatingSystem] { - return pulumix.Output[*BareMetalNodePoolConfigOperatingSystem]{ - OutputState: in.ToBareMetalNodePoolConfigOperatingSystemPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies which container runtime will be used. type BareMetalWorkloadNodeConfigContainerRuntime string @@ -530,12 +517,6 @@ func (in *bareMetalWorkloadNodeConfigContainerRuntimePtr) ToBareMetalWorkloadNod return pulumi.ToOutputWithContext(ctx, in).(BareMetalWorkloadNodeConfigContainerRuntimePtrOutput) } -func (in *bareMetalWorkloadNodeConfigContainerRuntimePtr) ToOutput(ctx context.Context) pulumix.Output[*BareMetalWorkloadNodeConfigContainerRuntime] { - return pulumix.Output[*BareMetalWorkloadNodeConfigContainerRuntime]{ - OutputState: in.ToBareMetalWorkloadNodeConfigContainerRuntimePtrOutputWithContext(ctx).OutputState, - } -} - // Mode of operation for binauthz policy evaluation. If unspecified, defaults to DISABLED. type BinaryAuthorizationEvaluationMode string @@ -707,12 +688,6 @@ func (in *binaryAuthorizationEvaluationModePtr) ToBinaryAuthorizationEvaluationM return pulumi.ToOutputWithContext(ctx, in).(BinaryAuthorizationEvaluationModePtrOutput) } -func (in *binaryAuthorizationEvaluationModePtr) ToOutput(ctx context.Context) pulumix.Output[*BinaryAuthorizationEvaluationMode] { - return pulumix.Output[*BinaryAuthorizationEvaluationMode]{ - OutputState: in.ToBinaryAuthorizationEvaluationModePtrOutputWithContext(ctx).OutputState, - } -} - // The taint effect. type NodeTaintEffect string @@ -887,12 +862,6 @@ func (in *nodeTaintEffectPtr) ToNodeTaintEffectPtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(NodeTaintEffectPtrOutput) } -func (in *nodeTaintEffectPtr) ToOutput(ctx context.Context) pulumix.Output[*NodeTaintEffect] { - return pulumix.Output[*NodeTaintEffect]{ - OutputState: in.ToNodeTaintEffectPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*BareMetalClusterUpgradePolicyPolicyInput)(nil)).Elem(), BareMetalClusterUpgradePolicyPolicy("NODE_POOL_POLICY_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*BareMetalClusterUpgradePolicyPolicyPtrInput)(nil)).Elem(), BareMetalClusterUpgradePolicyPolicy("NODE_POOL_POLICY_UNSPECIFIED")) diff --git a/sdk/go/google/healthcare/v1/pulumiEnums.go b/sdk/go/google/healthcare/v1/pulumiEnums.go index c59680e6ba..4b139851d3 100644 --- a/sdk/go/google/healthcare/v1/pulumiEnums.go +++ b/sdk/go/google/healthcare/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Required. The category of the attribute. The value of this field cannot be changed after creation. @@ -182,12 +181,6 @@ func (in *attributeDefinitionCategoryPtr) ToAttributeDefinitionCategoryPtrOutput return pulumi.ToOutputWithContext(ctx, in).(AttributeDefinitionCategoryPtrOutput) } -func (in *attributeDefinitionCategoryPtr) ToOutput(ctx context.Context) pulumix.Output[*AttributeDefinitionCategory] { - return pulumix.Output[*AttributeDefinitionCategory]{ - OutputState: in.ToAttributeDefinitionCategoryPtrOutputWithContext(ctx).OutputState, - } -} - // The log type that this config enables. type AuditLogConfigLogType string @@ -362,12 +355,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Indicates the current state of this Consent. type ConsentStateEnum string @@ -548,12 +535,6 @@ func (in *consentStateEnumPtr) ToConsentStateEnumPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(ConsentStateEnumPtrOutput) } -func (in *consentStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*ConsentStateEnum] { - return pulumix.Output[*ConsentStateEnum]{ - OutputState: in.ToConsentStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // Tag filtering profile that determines which tags to keep/remove. type DicomConfigFilterProfile string @@ -731,12 +712,6 @@ func (in *dicomConfigFilterProfilePtr) ToDicomConfigFilterProfilePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(DicomConfigFilterProfilePtrOutput) } -func (in *dicomConfigFilterProfilePtr) ToOutput(ctx context.Context) pulumix.Output[*DicomConfigFilterProfile] { - return pulumix.Output[*DicomConfigFilterProfile]{ - OutputState: in.ToDicomConfigFilterProfilePtrOutputWithContext(ctx).OutputState, - } -} - // Enable parsing of references within complex FHIR data types such as Extensions. If this value is set to ENABLED, then features like referential integrity and Bundle reference rewriting apply to all references. If this flag has not been specified the behavior of the FHIR store will not change, references in complex data types will not be parsed. New stores will have this value set to ENABLED after a notification period. Warning: turning on this flag causes processing existing resources to fail if they contain references to non-existent resources. type FhirStoreComplexDataTypeReferenceParsing string @@ -908,12 +883,6 @@ func (in *fhirStoreComplexDataTypeReferenceParsingPtr) ToFhirStoreComplexDataTyp return pulumi.ToOutputWithContext(ctx, in).(FhirStoreComplexDataTypeReferenceParsingPtrOutput) } -func (in *fhirStoreComplexDataTypeReferenceParsingPtr) ToOutput(ctx context.Context) pulumix.Output[*FhirStoreComplexDataTypeReferenceParsing] { - return pulumix.Output[*FhirStoreComplexDataTypeReferenceParsing]{ - OutputState: in.ToFhirStoreComplexDataTypeReferenceParsingPtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The FHIR specification version that this FHIR store supports natively. This field is immutable after store creation. Requests are rejected if they contain FHIR resources of a different version. Version is required for every FHIR store. type FhirStoreVersion string @@ -1088,12 +1057,6 @@ func (in *fhirStoreVersionPtr) ToFhirStoreVersionPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(FhirStoreVersionPtrOutput) } -func (in *fhirStoreVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*FhirStoreVersion] { - return pulumix.Output[*FhirStoreVersion]{ - OutputState: in.ToFhirStoreVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Deidentify action for one field. type FieldMetadataAction string @@ -1268,12 +1231,6 @@ func (in *fieldMetadataActionPtr) ToFieldMetadataActionPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(FieldMetadataActionPtrOutput) } -func (in *fieldMetadataActionPtr) ToOutput(ctx context.Context) pulumix.Output[*FieldMetadataAction] { - return pulumix.Output[*FieldMetadataAction]{ - OutputState: in.ToFieldMetadataActionPtrOutputWithContext(ctx).OutputState, - } -} - // Determines whether the existing table in the destination is to be overwritten or appended to. If a write_disposition is specified, the `force` parameter is ignored. type GoogleCloudHealthcareV1DicomBigQueryDestinationWriteDisposition string @@ -1448,12 +1405,6 @@ func (in *googleCloudHealthcareV1DicomBigQueryDestinationWriteDispositionPtr) To return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudHealthcareV1DicomBigQueryDestinationWriteDispositionPtrOutput) } -func (in *googleCloudHealthcareV1DicomBigQueryDestinationWriteDispositionPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudHealthcareV1DicomBigQueryDestinationWriteDisposition] { - return pulumix.Output[*GoogleCloudHealthcareV1DicomBigQueryDestinationWriteDisposition]{ - OutputState: in.ToGoogleCloudHealthcareV1DicomBigQueryDestinationWriteDispositionPtrOutputWithContext(ctx).OutputState, - } -} - // Determines if existing data in the destination dataset is overwritten, appended to, or not written if the tables contain data. If a write_disposition is specified, the `force` parameter is ignored. type GoogleCloudHealthcareV1FhirBigQueryDestinationWriteDisposition string @@ -1628,12 +1579,6 @@ func (in *googleCloudHealthcareV1FhirBigQueryDestinationWriteDispositionPtr) ToG return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudHealthcareV1FhirBigQueryDestinationWriteDispositionPtrOutput) } -func (in *googleCloudHealthcareV1FhirBigQueryDestinationWriteDispositionPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudHealthcareV1FhirBigQueryDestinationWriteDisposition] { - return pulumix.Output[*GoogleCloudHealthcareV1FhirBigQueryDestinationWriteDisposition]{ - OutputState: in.ToGoogleCloudHealthcareV1FhirBigQueryDestinationWriteDispositionPtrOutputWithContext(ctx).OutputState, - } -} - // Determines how to redact text from image. type ImageConfigTextRedactionMode string @@ -1808,12 +1753,6 @@ func (in *imageConfigTextRedactionModePtr) ToImageConfigTextRedactionModePtrOutp return pulumi.ToOutputWithContext(ctx, in).(ImageConfigTextRedactionModePtrOutput) } -func (in *imageConfigTextRedactionModePtr) ToOutput(ctx context.Context) pulumix.Output[*ImageConfigTextRedactionMode] { - return pulumix.Output[*ImageConfigTextRedactionMode]{ - OutputState: in.ToImageConfigTextRedactionModePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. Determines the version of both the default parser to be used when `schema` is not given, as well as the schematized parser used when `schema` is specified. This field is immutable after HL7v2 store creation. type ParserConfigVersion string @@ -1988,12 +1927,6 @@ func (in *parserConfigVersionPtr) ToParserConfigVersionPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(ParserConfigVersionPtrOutput) } -func (in *parserConfigVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*ParserConfigVersion] { - return pulumix.Output[*ParserConfigVersion]{ - OutputState: in.ToParserConfigVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the output schema type. Schema type is required. type SchemaConfigSchemaType string @@ -2165,12 +2098,6 @@ func (in *schemaConfigSchemaTypePtr) ToSchemaConfigSchemaTypePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(SchemaConfigSchemaTypePtrOutput) } -func (in *schemaConfigSchemaTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SchemaConfigSchemaType] { - return pulumix.Output[*SchemaConfigSchemaType]{ - OutputState: in.ToSchemaConfigSchemaTypePtrOutputWithContext(ctx).OutputState, - } -} - // Determines how messages that fail to parse are handled. type SchemaPackageSchematizedParsingType string @@ -2342,12 +2269,6 @@ func (in *schemaPackageSchematizedParsingTypePtr) ToSchemaPackageSchematizedPars return pulumi.ToOutputWithContext(ctx, in).(SchemaPackageSchematizedParsingTypePtrOutput) } -func (in *schemaPackageSchematizedParsingTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SchemaPackageSchematizedParsingType] { - return pulumix.Output[*SchemaPackageSchematizedParsingType]{ - OutputState: in.ToSchemaPackageSchematizedParsingTypePtrOutputWithContext(ctx).OutputState, - } -} - // Determines how unexpected segments (segments not matched to the schema) are handled. type SchemaPackageUnexpectedSegmentHandling string @@ -2522,12 +2443,6 @@ func (in *schemaPackageUnexpectedSegmentHandlingPtr) ToSchemaPackageUnexpectedSe return pulumi.ToOutputWithContext(ctx, in).(SchemaPackageUnexpectedSegmentHandlingPtrOutput) } -func (in *schemaPackageUnexpectedSegmentHandlingPtr) ToOutput(ctx context.Context) pulumix.Output[*SchemaPackageUnexpectedSegmentHandling] { - return pulumix.Output[*SchemaPackageUnexpectedSegmentHandling]{ - OutputState: in.ToSchemaPackageUnexpectedSegmentHandlingPtrOutputWithContext(ctx).OutputState, - } -} - // Type of partitioning. type TimePartitioningType string @@ -2705,12 +2620,6 @@ func (in *timePartitioningTypePtr) ToTimePartitioningTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(TimePartitioningTypePtrOutput) } -func (in *timePartitioningTypePtr) ToOutput(ctx context.Context) pulumix.Output[*TimePartitioningType] { - return pulumix.Output[*TimePartitioningType]{ - OutputState: in.ToTimePartitioningTypePtrOutputWithContext(ctx).OutputState, - } -} - // If this is a primitive type then this field is the type of the primitive For example, STRING. Leave unspecified for composite types. type TypePrimitive string @@ -2885,12 +2794,6 @@ func (in *typePrimitivePtr) ToTypePrimitivePtrOutputWithContext(ctx context.Cont return pulumi.ToOutputWithContext(ctx, in).(TypePrimitivePtrOutput) } -func (in *typePrimitivePtr) ToOutput(ctx context.Context) pulumix.Output[*TypePrimitive] { - return pulumix.Output[*TypePrimitive]{ - OutputState: in.ToTypePrimitivePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AttributeDefinitionCategoryInput)(nil)).Elem(), AttributeDefinitionCategory("CATEGORY_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AttributeDefinitionCategoryPtrInput)(nil)).Elem(), AttributeDefinitionCategory("CATEGORY_UNSPECIFIED")) diff --git a/sdk/go/google/healthcare/v1beta1/pulumiEnums.go b/sdk/go/google/healthcare/v1beta1/pulumiEnums.go index 04087f3bb2..01fd0fb09c 100644 --- a/sdk/go/google/healthcare/v1beta1/pulumiEnums.go +++ b/sdk/go/google/healthcare/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Optional. Controls the amount of detail to include as part of the audit logs. @@ -185,12 +184,6 @@ func (in *accessDeterminationLogConfigLogLevelPtr) ToAccessDeterminationLogConfi return pulumi.ToOutputWithContext(ctx, in).(AccessDeterminationLogConfigLogLevelPtrOutput) } -func (in *accessDeterminationLogConfigLogLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*AccessDeterminationLogConfigLogLevel] { - return pulumix.Output[*AccessDeterminationLogConfigLogLevel]{ - OutputState: in.ToAccessDeterminationLogConfigLogLevelPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The category of the attribute. The value of this field cannot be changed after creation. type AttributeDefinitionCategory string @@ -362,12 +355,6 @@ func (in *attributeDefinitionCategoryPtr) ToAttributeDefinitionCategoryPtrOutput return pulumi.ToOutputWithContext(ctx, in).(AttributeDefinitionCategoryPtrOutput) } -func (in *attributeDefinitionCategoryPtr) ToOutput(ctx context.Context) pulumix.Output[*AttributeDefinitionCategory] { - return pulumix.Output[*AttributeDefinitionCategory]{ - OutputState: in.ToAttributeDefinitionCategoryPtrOutputWithContext(ctx).OutputState, - } -} - // The log type that this config enables. type AuditLogConfigLogType string @@ -542,12 +529,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Specifies which consent enforcement version is being used for this FHIR store. This field can only be set once by either CreateFhirStore or UpdateFhirStore. After that, you must call ApplyConsents to change the version. type ConsentConfigVersion string @@ -716,12 +697,6 @@ func (in *consentConfigVersionPtr) ToConsentConfigVersionPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(ConsentConfigVersionPtrOutput) } -func (in *consentConfigVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*ConsentConfigVersion] { - return pulumix.Output[*ConsentConfigVersion]{ - OutputState: in.ToConsentConfigVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Specifies the default server behavior when the header is empty. If not specified, the `ScopeProfile.PERMIT_EMPTY_SCOPE` option is used. type ConsentHeaderHandlingProfile string @@ -893,12 +868,6 @@ func (in *consentHeaderHandlingProfilePtr) ToConsentHeaderHandlingProfilePtrOutp return pulumi.ToOutputWithContext(ctx, in).(ConsentHeaderHandlingProfilePtrOutput) } -func (in *consentHeaderHandlingProfilePtr) ToOutput(ctx context.Context) pulumix.Output[*ConsentHeaderHandlingProfile] { - return pulumix.Output[*ConsentHeaderHandlingProfile]{ - OutputState: in.ToConsentHeaderHandlingProfilePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Indicates the current state of this Consent. type ConsentStateEnum string @@ -1079,12 +1048,6 @@ func (in *consentStateEnumPtr) ToConsentStateEnumPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(ConsentStateEnumPtrOutput) } -func (in *consentStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*ConsentStateEnum] { - return pulumix.Output[*ConsentStateEnum]{ - OutputState: in.ToConsentStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // Tag filtering profile that determines which tags to keep/remove. type DicomConfigFilterProfile string @@ -1262,12 +1225,6 @@ func (in *dicomConfigFilterProfilePtr) ToDicomConfigFilterProfilePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(DicomConfigFilterProfilePtrOutput) } -func (in *dicomConfigFilterProfilePtr) ToOutput(ctx context.Context) pulumix.Output[*DicomConfigFilterProfile] { - return pulumix.Output[*DicomConfigFilterProfile]{ - OutputState: in.ToDicomConfigFilterProfilePtrOutputWithContext(ctx).OutputState, - } -} - // Base profile type for handling DICOM tags. type DicomTagConfigProfileType string @@ -1445,12 +1402,6 @@ func (in *dicomTagConfigProfileTypePtr) ToDicomTagConfigProfileTypePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(DicomTagConfigProfileTypePtrOutput) } -func (in *dicomTagConfigProfileTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DicomTagConfigProfileType] { - return pulumix.Output[*DicomTagConfigProfileType]{ - OutputState: in.ToDicomTagConfigProfileTypePtrOutputWithContext(ctx).OutputState, - } -} - // Base profile type for handling FHIR fields. type FhirFieldConfigProfileType string @@ -1625,12 +1576,6 @@ func (in *fhirFieldConfigProfileTypePtr) ToFhirFieldConfigProfileTypePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(FhirFieldConfigProfileTypePtrOutput) } -func (in *fhirFieldConfigProfileTypePtr) ToOutput(ctx context.Context) pulumix.Output[*FhirFieldConfigProfileType] { - return pulumix.Output[*FhirFieldConfigProfileType]{ - OutputState: in.ToFhirFieldConfigProfileTypePtrOutputWithContext(ctx).OutputState, - } -} - // Enable parsing of references within complex FHIR data types such as Extensions. If this value is set to ENABLED, then features like referential integrity and Bundle reference rewriting apply to all references. If this flag has not been specified the behavior of the FHIR store will not change, references in complex data types will not be parsed. New stores will have this value set to ENABLED after a notification period. Warning: turning on this flag causes processing existing resources to fail if they contain references to non-existent resources. type FhirStoreComplexDataTypeReferenceParsing string @@ -1802,12 +1747,6 @@ func (in *fhirStoreComplexDataTypeReferenceParsingPtr) ToFhirStoreComplexDataTyp return pulumi.ToOutputWithContext(ctx, in).(FhirStoreComplexDataTypeReferenceParsingPtrOutput) } -func (in *fhirStoreComplexDataTypeReferenceParsingPtr) ToOutput(ctx context.Context) pulumix.Output[*FhirStoreComplexDataTypeReferenceParsing] { - return pulumix.Output[*FhirStoreComplexDataTypeReferenceParsing]{ - OutputState: in.ToFhirStoreComplexDataTypeReferenceParsingPtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The FHIR specification version that this FHIR store supports natively. This field is immutable after store creation. Requests are rejected if they contain FHIR resources of a different version. Version is required for every FHIR store. type FhirStoreVersion string @@ -1982,12 +1921,6 @@ func (in *fhirStoreVersionPtr) ToFhirStoreVersionPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(FhirStoreVersionPtrOutput) } -func (in *fhirStoreVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*FhirStoreVersion] { - return pulumix.Output[*FhirStoreVersion]{ - OutputState: in.ToFhirStoreVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Deidentify action for one field. type FieldMetadataAction string @@ -2162,12 +2095,6 @@ func (in *fieldMetadataActionPtr) ToFieldMetadataActionPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(FieldMetadataActionPtrOutput) } -func (in *fieldMetadataActionPtr) ToOutput(ctx context.Context) pulumix.Output[*FieldMetadataAction] { - return pulumix.Output[*FieldMetadataAction]{ - OutputState: in.ToFieldMetadataActionPtrOutputWithContext(ctx).OutputState, - } -} - // Determines whether the existing table in the destination is to be overwritten or appended to. If a write_disposition is specified, the `force` parameter is ignored. type GoogleCloudHealthcareV1beta1DicomBigQueryDestinationWriteDisposition string @@ -2342,12 +2269,6 @@ func (in *googleCloudHealthcareV1beta1DicomBigQueryDestinationWriteDispositionPt return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudHealthcareV1beta1DicomBigQueryDestinationWriteDispositionPtrOutput) } -func (in *googleCloudHealthcareV1beta1DicomBigQueryDestinationWriteDispositionPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudHealthcareV1beta1DicomBigQueryDestinationWriteDisposition] { - return pulumix.Output[*GoogleCloudHealthcareV1beta1DicomBigQueryDestinationWriteDisposition]{ - OutputState: in.ToGoogleCloudHealthcareV1beta1DicomBigQueryDestinationWriteDispositionPtrOutputWithContext(ctx).OutputState, - } -} - // Determines if existing data in the destination dataset is overwritten, appended to, or not written if the tables contain data. If a write_disposition is specified, the `force` parameter is ignored. type GoogleCloudHealthcareV1beta1FhirBigQueryDestinationWriteDisposition string @@ -2522,12 +2443,6 @@ func (in *googleCloudHealthcareV1beta1FhirBigQueryDestinationWriteDispositionPtr return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudHealthcareV1beta1FhirBigQueryDestinationWriteDispositionPtrOutput) } -func (in *googleCloudHealthcareV1beta1FhirBigQueryDestinationWriteDispositionPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudHealthcareV1beta1FhirBigQueryDestinationWriteDisposition] { - return pulumix.Output[*GoogleCloudHealthcareV1beta1FhirBigQueryDestinationWriteDisposition]{ - OutputState: in.ToGoogleCloudHealthcareV1beta1FhirBigQueryDestinationWriteDispositionPtrOutputWithContext(ctx).OutputState, - } -} - // Determines how to redact text from image. type ImageConfigTextRedactionMode string @@ -2705,12 +2620,6 @@ func (in *imageConfigTextRedactionModePtr) ToImageConfigTextRedactionModePtrOutp return pulumi.ToOutputWithContext(ctx, in).(ImageConfigTextRedactionModePtrOutput) } -func (in *imageConfigTextRedactionModePtr) ToOutput(ctx context.Context) pulumix.Output[*ImageConfigTextRedactionMode] { - return pulumix.Output[*ImageConfigTextRedactionMode]{ - OutputState: in.ToImageConfigTextRedactionModePtrOutputWithContext(ctx).OutputState, - } -} - // Set `Action` for [`StudyInstanceUID`, `SeriesInstanceUID`, `SOPInstanceUID`, and `MediaStorageSOPInstanceUID`](http://dicom.nema.org/medical/dicom/2018e/output/chtml/part06/chapter_6.html). type OptionsPrimaryIds string @@ -2882,12 +2791,6 @@ func (in *optionsPrimaryIdsPtr) ToOptionsPrimaryIdsPtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(OptionsPrimaryIdsPtrOutput) } -func (in *optionsPrimaryIdsPtr) ToOutput(ctx context.Context) pulumix.Output[*OptionsPrimaryIds] { - return pulumix.Output[*OptionsPrimaryIds]{ - OutputState: in.ToOptionsPrimaryIdsPtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. Determines the version of both the default parser to be used when `schema` is not given, as well as the schematized parser used when `schema` is specified. This field is immutable after HL7v2 store creation. type ParserConfigVersion string @@ -3062,12 +2965,6 @@ func (in *parserConfigVersionPtr) ToParserConfigVersionPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(ParserConfigVersionPtrOutput) } -func (in *parserConfigVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*ParserConfigVersion] { - return pulumix.Output[*ParserConfigVersion]{ - OutputState: in.ToParserConfigVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the output schema type. Schema type is required. type SchemaConfigSchemaType string @@ -3242,12 +3139,6 @@ func (in *schemaConfigSchemaTypePtr) ToSchemaConfigSchemaTypePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(SchemaConfigSchemaTypePtrOutput) } -func (in *schemaConfigSchemaTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SchemaConfigSchemaType] { - return pulumix.Output[*SchemaConfigSchemaType]{ - OutputState: in.ToSchemaConfigSchemaTypePtrOutputWithContext(ctx).OutputState, - } -} - // Determines how messages that fail to parse are handled. type SchemaPackageSchematizedParsingType string @@ -3419,12 +3310,6 @@ func (in *schemaPackageSchematizedParsingTypePtr) ToSchemaPackageSchematizedPars return pulumi.ToOutputWithContext(ctx, in).(SchemaPackageSchematizedParsingTypePtrOutput) } -func (in *schemaPackageSchematizedParsingTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SchemaPackageSchematizedParsingType] { - return pulumix.Output[*SchemaPackageSchematizedParsingType]{ - OutputState: in.ToSchemaPackageSchematizedParsingTypePtrOutputWithContext(ctx).OutputState, - } -} - // Determines how unexpected segments (segments not matched to the schema) are handled. type SchemaPackageUnexpectedSegmentHandling string @@ -3599,12 +3484,6 @@ func (in *schemaPackageUnexpectedSegmentHandlingPtr) ToSchemaPackageUnexpectedSe return pulumi.ToOutputWithContext(ctx, in).(SchemaPackageUnexpectedSegmentHandlingPtrOutput) } -func (in *schemaPackageUnexpectedSegmentHandlingPtr) ToOutput(ctx context.Context) pulumix.Output[*SchemaPackageUnexpectedSegmentHandling] { - return pulumix.Output[*SchemaPackageUnexpectedSegmentHandling]{ - OutputState: in.ToSchemaPackageUnexpectedSegmentHandlingPtrOutputWithContext(ctx).OutputState, - } -} - // Base profile type for text transformation. type TextConfigProfileType string @@ -3776,12 +3655,6 @@ func (in *textConfigProfileTypePtr) ToTextConfigProfileTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(TextConfigProfileTypePtrOutput) } -func (in *textConfigProfileTypePtr) ToOutput(ctx context.Context) pulumix.Output[*TextConfigProfileType] { - return pulumix.Output[*TextConfigProfileType]{ - OutputState: in.ToTextConfigProfileTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of partitioning. type TimePartitioningType string @@ -3959,12 +3832,6 @@ func (in *timePartitioningTypePtr) ToTimePartitioningTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(TimePartitioningTypePtrOutput) } -func (in *timePartitioningTypePtr) ToOutput(ctx context.Context) pulumix.Output[*TimePartitioningType] { - return pulumix.Output[*TimePartitioningType]{ - OutputState: in.ToTimePartitioningTypePtrOutputWithContext(ctx).OutputState, - } -} - // If this is a primitive type then this field is the type of the primitive For example, STRING. Leave unspecified for composite types. type TypePrimitive string @@ -4139,12 +4006,6 @@ func (in *typePrimitivePtr) ToTypePrimitivePtrOutputWithContext(ctx context.Cont return pulumi.ToOutputWithContext(ctx, in).(TypePrimitivePtrOutput) } -func (in *typePrimitivePtr) ToOutput(ctx context.Context) pulumix.Output[*TypePrimitive] { - return pulumix.Output[*TypePrimitive]{ - OutputState: in.ToTypePrimitivePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AccessDeterminationLogConfigLogLevelInput)(nil)).Elem(), AccessDeterminationLogConfigLogLevel("LOG_LEVEL_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AccessDeterminationLogConfigLogLevelPtrInput)(nil)).Elem(), AccessDeterminationLogConfigLogLevel("LOG_LEVEL_UNSPECIFIED")) diff --git a/sdk/go/google/iam/v1/pulumiEnums.go b/sdk/go/google/iam/v1/pulumiEnums.go index 9b119a07be..2e99a12c5d 100644 --- a/sdk/go/google/iam/v1/pulumiEnums.go +++ b/sdk/go/google/iam/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The behavior for how OIDC Claims are included in the `assertion` object used for attribute mapping and attribute condition. type GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfigAssertionClaimsBehavior string @@ -362,12 +355,6 @@ func (in *googleIamAdminV1WorkforcePoolProviderOidcWebSsoConfigAssertionClaimsBe return pulumi.ToOutputWithContext(ctx, in).(GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfigAssertionClaimsBehaviorPtrOutput) } -func (in *googleIamAdminV1WorkforcePoolProviderOidcWebSsoConfigAssertionClaimsBehaviorPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfigAssertionClaimsBehavior] { - return pulumix.Output[*GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfigAssertionClaimsBehavior]{ - OutputState: in.ToGoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfigAssertionClaimsBehaviorPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The Response Type to request for in the OIDC Authorization Request for web sign-in. The `CODE` Response Type is recommended to avoid the Implicit Flow, for security reasons. type GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfigResponseType string @@ -539,12 +526,6 @@ func (in *googleIamAdminV1WorkforcePoolProviderOidcWebSsoConfigResponseTypePtr) return pulumi.ToOutputWithContext(ctx, in).(GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfigResponseTypePtrOutput) } -func (in *googleIamAdminV1WorkforcePoolProviderOidcWebSsoConfigResponseTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfigResponseType] { - return pulumix.Output[*GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfigResponseType]{ - OutputState: in.ToGoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfigResponseTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The specifications for the key. type KeyDataKeySpec string @@ -719,12 +700,6 @@ func (in *keyDataKeySpecPtr) ToKeyDataKeySpecPtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(KeyDataKeySpecPtrOutput) } -func (in *keyDataKeySpecPtr) ToOutput(ctx context.Context) pulumix.Output[*KeyDataKeySpec] { - return pulumix.Output[*KeyDataKeySpec]{ - OutputState: in.ToKeyDataKeySpecPtrOutputWithContext(ctx).OutputState, - } -} - // Which type of key and algorithm to use for the key. The default is currently a 2K RSA key. However this may change in the future. type KeyKeyAlgorithm string @@ -896,12 +871,6 @@ func (in *keyKeyAlgorithmPtr) ToKeyKeyAlgorithmPtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(KeyKeyAlgorithmPtrOutput) } -func (in *keyKeyAlgorithmPtr) ToOutput(ctx context.Context) pulumix.Output[*KeyKeyAlgorithm] { - return pulumix.Output[*KeyKeyAlgorithm]{ - OutputState: in.ToKeyKeyAlgorithmPtrOutputWithContext(ctx).OutputState, - } -} - // The output format of the private key. The default value is `TYPE_GOOGLE_CREDENTIALS_FILE`, which is the Google Credentials File format. type KeyPrivateKeyType string @@ -1073,12 +1042,6 @@ func (in *keyPrivateKeyTypePtr) ToKeyPrivateKeyTypePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(KeyPrivateKeyTypePtrOutput) } -func (in *keyPrivateKeyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*KeyPrivateKeyType] { - return pulumix.Output[*KeyPrivateKeyType]{ - OutputState: in.ToKeyPrivateKeyTypePtrOutputWithContext(ctx).OutputState, - } -} - // The current launch stage of the role. If the `ALPHA` launch stage has been selected for a role, the `stage` field will not be included in the returned definition for the role. type OrganizationRoleStage string @@ -1259,12 +1222,6 @@ func (in *organizationRoleStagePtr) ToOrganizationRoleStagePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(OrganizationRoleStagePtrOutput) } -func (in *organizationRoleStagePtr) ToOutput(ctx context.Context) pulumix.Output[*OrganizationRoleStage] { - return pulumix.Output[*OrganizationRoleStage]{ - OutputState: in.ToOrganizationRoleStagePtrOutputWithContext(ctx).OutputState, - } -} - // The current launch stage of the role. If the `ALPHA` launch stage has been selected for a role, the `stage` field will not be included in the returned definition for the role. type RoleStage string @@ -1445,12 +1402,6 @@ func (in *roleStagePtr) ToRoleStagePtrOutputWithContext(ctx context.Context) Rol return pulumi.ToOutputWithContext(ctx, in).(RoleStagePtrOutput) } -func (in *roleStagePtr) ToOutput(ctx context.Context) pulumix.Output[*RoleStage] { - return pulumix.Output[*RoleStage]{ - OutputState: in.ToRoleStagePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The purpose of the key. type WorkforcePoolKeyUse string @@ -1619,12 +1570,6 @@ func (in *workforcePoolKeyUsePtr) ToWorkforcePoolKeyUsePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(WorkforcePoolKeyUsePtrOutput) } -func (in *workforcePoolKeyUsePtr) ToOutput(ctx context.Context) pulumix.Output[*WorkforcePoolKeyUse] { - return pulumix.Output[*WorkforcePoolKeyUse]{ - OutputState: in.ToWorkforcePoolKeyUsePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The purpose of the key. type WorkloadIdentityPoolKeyUse string @@ -1793,12 +1738,6 @@ func (in *workloadIdentityPoolKeyUsePtr) ToWorkloadIdentityPoolKeyUsePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(WorkloadIdentityPoolKeyUsePtrOutput) } -func (in *workloadIdentityPoolKeyUsePtr) ToOutput(ctx context.Context) pulumix.Output[*WorkloadIdentityPoolKeyUse] { - return pulumix.Output[*WorkloadIdentityPoolKeyUse]{ - OutputState: in.ToWorkloadIdentityPoolKeyUsePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/identitytoolkit/v2/pulumiEnums.go b/sdk/go/google/identitytoolkit/v2/pulumiEnums.go index f83533c318..cb6c747d6c 100644 --- a/sdk/go/google/identitytoolkit/v2/pulumiEnums.go +++ b/sdk/go/google/identitytoolkit/v2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) type GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfigEnabledProvidersItem string @@ -178,12 +177,6 @@ func (in *googleCloudIdentitytoolkitAdminV2MultiFactorAuthConfigEnabledProviders return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfigEnabledProvidersItemPtrOutput) } -func (in *googleCloudIdentitytoolkitAdminV2MultiFactorAuthConfigEnabledProvidersItemPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfigEnabledProvidersItem] { - return pulumix.Output[*GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfigEnabledProvidersItem]{ - OutputState: in.ToGoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfigEnabledProvidersItemPtrOutputWithContext(ctx).OutputState, - } -} - // GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfigEnabledProvidersItemArrayInput is an input type that accepts GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfigEnabledProvidersItemArray and GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfigEnabledProvidersItemArrayOutput values. // You can construct a concrete instance of `GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfigEnabledProvidersItemArrayInput` via: // @@ -403,12 +396,6 @@ func (in *googleCloudIdentitytoolkitAdminV2MultiFactorAuthConfigStatePtr) ToGoog return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfigStatePtrOutput) } -func (in *googleCloudIdentitytoolkitAdminV2MultiFactorAuthConfigStatePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfigState] { - return pulumix.Output[*GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfigState]{ - OutputState: in.ToGoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfigStatePtrOutputWithContext(ctx).OutputState, - } -} - // Which enforcement mode to use for the password policy. type GoogleCloudIdentitytoolkitAdminV2PasswordPolicyConfigPasswordPolicyEnforcementState string @@ -580,12 +567,6 @@ func (in *googleCloudIdentitytoolkitAdminV2PasswordPolicyConfigPasswordPolicyEnf return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIdentitytoolkitAdminV2PasswordPolicyConfigPasswordPolicyEnforcementStatePtrOutput) } -func (in *googleCloudIdentitytoolkitAdminV2PasswordPolicyConfigPasswordPolicyEnforcementStatePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIdentitytoolkitAdminV2PasswordPolicyConfigPasswordPolicyEnforcementState] { - return pulumix.Output[*GoogleCloudIdentitytoolkitAdminV2PasswordPolicyConfigPasswordPolicyEnforcementState]{ - OutputState: in.ToGoogleCloudIdentitytoolkitAdminV2PasswordPolicyConfigPasswordPolicyEnforcementStatePtrOutputWithContext(ctx).OutputState, - } -} - // Describes the state of the MultiFactor Authentication type. type GoogleCloudIdentitytoolkitAdminV2ProviderConfigState string @@ -760,12 +741,6 @@ func (in *googleCloudIdentitytoolkitAdminV2ProviderConfigStatePtr) ToGoogleCloud return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIdentitytoolkitAdminV2ProviderConfigStatePtrOutput) } -func (in *googleCloudIdentitytoolkitAdminV2ProviderConfigStatePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIdentitytoolkitAdminV2ProviderConfigState] { - return pulumix.Output[*GoogleCloudIdentitytoolkitAdminV2ProviderConfigState]{ - OutputState: in.ToGoogleCloudIdentitytoolkitAdminV2ProviderConfigStatePtrOutputWithContext(ctx).OutputState, - } -} - // The reCAPTCHA config for email/password provider, containing the enforcement status. The email/password provider contains all related user flows protected by reCAPTCHA. type GoogleCloudIdentitytoolkitAdminV2RecaptchaConfigEmailPasswordEnforcementState string @@ -940,12 +915,6 @@ func (in *googleCloudIdentitytoolkitAdminV2RecaptchaConfigEmailPasswordEnforceme return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIdentitytoolkitAdminV2RecaptchaConfigEmailPasswordEnforcementStatePtrOutput) } -func (in *googleCloudIdentitytoolkitAdminV2RecaptchaConfigEmailPasswordEnforcementStatePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIdentitytoolkitAdminV2RecaptchaConfigEmailPasswordEnforcementState] { - return pulumix.Output[*GoogleCloudIdentitytoolkitAdminV2RecaptchaConfigEmailPasswordEnforcementState]{ - OutputState: in.ToGoogleCloudIdentitytoolkitAdminV2RecaptchaConfigEmailPasswordEnforcementStatePtrOutputWithContext(ctx).OutputState, - } -} - // The action taken if the reCAPTCHA score of a request is within the interval [start_score, end_score]. type GoogleCloudIdentitytoolkitAdminV2RecaptchaManagedRuleAction string @@ -1114,12 +1083,6 @@ func (in *googleCloudIdentitytoolkitAdminV2RecaptchaManagedRuleActionPtr) ToGoog return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIdentitytoolkitAdminV2RecaptchaManagedRuleActionPtrOutput) } -func (in *googleCloudIdentitytoolkitAdminV2RecaptchaManagedRuleActionPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIdentitytoolkitAdminV2RecaptchaManagedRuleAction] { - return pulumix.Output[*GoogleCloudIdentitytoolkitAdminV2RecaptchaManagedRuleAction]{ - OutputState: in.ToGoogleCloudIdentitytoolkitAdminV2RecaptchaManagedRuleActionPtrOutputWithContext(ctx).OutputState, - } -} - // The log type that this config enables. type GoogleIamV1AuditLogConfigLogType string @@ -1294,12 +1257,6 @@ func (in *googleIamV1AuditLogConfigLogTypePtr) ToGoogleIamV1AuditLogConfigLogTyp return pulumi.ToOutputWithContext(ctx, in).(GoogleIamV1AuditLogConfigLogTypePtrOutput) } -func (in *googleIamV1AuditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleIamV1AuditLogConfigLogType] { - return pulumix.Output[*GoogleIamV1AuditLogConfigLogType]{ - OutputState: in.ToGoogleIamV1AuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfigEnabledProvidersItemInput)(nil)).Elem(), GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfigEnabledProvidersItem("PROVIDER_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfigEnabledProvidersItemPtrInput)(nil)).Elem(), GoogleCloudIdentitytoolkitAdminV2MultiFactorAuthConfigEnabledProvidersItem("PROVIDER_UNSPECIFIED")) diff --git a/sdk/go/google/ids/v1/pulumiEnums.go b/sdk/go/google/ids/v1/pulumiEnums.go index 2aa29a8614..b141921183 100644 --- a/sdk/go/google/ids/v1/pulumiEnums.go +++ b/sdk/go/google/ids/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Lowest threat severity that this endpoint will alert on. type EndpointSeverity string @@ -371,12 +364,6 @@ func (in *endpointSeverityPtr) ToEndpointSeverityPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(EndpointSeverityPtrOutput) } -func (in *endpointSeverityPtr) ToOutput(ctx context.Context) pulumix.Output[*EndpointSeverity] { - return pulumix.Output[*EndpointSeverity]{ - OutputState: in.ToEndpointSeverityPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/integrations/v1alpha/pulumiEnums.go b/sdk/go/google/integrations/v1alpha/pulumiEnums.go index 80bf33bbdf..d915277816 100644 --- a/sdk/go/google/integrations/v1alpha/pulumiEnums.go +++ b/sdk/go/google/integrations/v1alpha/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Credential type of the encrypted credential. @@ -209,12 +208,6 @@ func (in *authConfigCredentialTypePtr) ToAuthConfigCredentialTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(AuthConfigCredentialTypePtrOutput) } -func (in *authConfigCredentialTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuthConfigCredentialType] { - return pulumix.Output[*AuthConfigCredentialType]{ - OutputState: in.ToAuthConfigCredentialTypePtrOutputWithContext(ctx).OutputState, - } -} - // The status of the auth config. type AuthConfigStateEnum string @@ -398,12 +391,6 @@ func (in *authConfigStateEnumPtr) ToAuthConfigStateEnumPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(AuthConfigStateEnumPtrOutput) } -func (in *authConfigStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*AuthConfigStateEnum] { - return pulumix.Output[*AuthConfigStateEnum]{ - OutputState: in.ToAuthConfigStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // The visibility of the auth config. type AuthConfigVisibility string @@ -575,12 +562,6 @@ func (in *authConfigVisibilityPtr) ToAuthConfigVisibilityPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(AuthConfigVisibilityPtrOutput) } -func (in *authConfigVisibilityPtr) ToOutput(ctx context.Context) pulumix.Output[*AuthConfigVisibility] { - return pulumix.Output[*AuthConfigVisibility]{ - OutputState: in.ToAuthConfigVisibilityPtrOutputWithContext(ctx).OutputState, - } -} - // Status of the certificate type CertificateCertificateStatus string @@ -752,12 +733,6 @@ func (in *certificateCertificateStatusPtr) ToCertificateCertificateStatusPtrOutp return pulumi.ToOutputWithContext(ctx, in).(CertificateCertificateStatusPtrOutput) } -func (in *certificateCertificateStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*CertificateCertificateStatus] { - return pulumix.Output[*CertificateCertificateStatus]{ - OutputState: in.ToCertificateCertificateStatusPtrOutputWithContext(ctx).OutputState, - } -} - // Things like URL, Email, Currency, Timestamp (rather than string, int64...) type EnterpriseCrmEventbusProtoAttributesDataType string @@ -933,12 +908,6 @@ func (in *enterpriseCrmEventbusProtoAttributesDataTypePtr) ToEnterpriseCrmEventb return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusProtoAttributesDataTypePtrOutput) } -func (in *enterpriseCrmEventbusProtoAttributesDataTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusProtoAttributesDataType] { - return pulumix.Output[*EnterpriseCrmEventbusProtoAttributesDataType]{ - OutputState: in.ToEnterpriseCrmEventbusProtoAttributesDataTypePtrOutputWithContext(ctx).OutputState, - } -} - type EnterpriseCrmEventbusProtoAttributesSearchable string const ( @@ -1108,12 +1077,6 @@ func (in *enterpriseCrmEventbusProtoAttributesSearchablePtr) ToEnterpriseCrmEven return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusProtoAttributesSearchablePtrOutput) } -func (in *enterpriseCrmEventbusProtoAttributesSearchablePtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusProtoAttributesSearchable] { - return pulumix.Output[*EnterpriseCrmEventbusProtoAttributesSearchable]{ - OutputState: in.ToEnterpriseCrmEventbusProtoAttributesSearchablePtrOutputWithContext(ctx).OutputState, - } -} - type EnterpriseCrmEventbusProtoBaseAlertConfigErrorEnumListFilterType string const ( @@ -1279,12 +1242,6 @@ func (in *enterpriseCrmEventbusProtoBaseAlertConfigErrorEnumListFilterTypePtr) T return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusProtoBaseAlertConfigErrorEnumListFilterTypePtrOutput) } -func (in *enterpriseCrmEventbusProtoBaseAlertConfigErrorEnumListFilterTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusProtoBaseAlertConfigErrorEnumListFilterType] { - return pulumix.Output[*EnterpriseCrmEventbusProtoBaseAlertConfigErrorEnumListFilterType]{ - OutputState: in.ToEnterpriseCrmEventbusProtoBaseAlertConfigErrorEnumListFilterTypePtrOutputWithContext(ctx).OutputState, - } -} - // Operator used to evaluate the condition. Please note that an operator with an inappropriate key/value operand will result in IllegalArgumentException, e.g. CONTAINS with boolean key/value pair. type EnterpriseCrmEventbusProtoConditionOperator string @@ -1465,12 +1422,6 @@ func (in *enterpriseCrmEventbusProtoConditionOperatorPtr) ToEnterpriseCrmEventbu return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusProtoConditionOperatorPtrOutput) } -func (in *enterpriseCrmEventbusProtoConditionOperatorPtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusProtoConditionOperator] { - return pulumix.Output[*EnterpriseCrmEventbusProtoConditionOperator]{ - OutputState: in.ToEnterpriseCrmEventbusProtoConditionOperatorPtrOutputWithContext(ctx).OutputState, - } -} - // Defines what happens to the task upon failure. type EnterpriseCrmEventbusProtoFailurePolicyRetryStrategy string @@ -1656,12 +1607,6 @@ func (in *enterpriseCrmEventbusProtoFailurePolicyRetryStrategyPtr) ToEnterpriseC return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusProtoFailurePolicyRetryStrategyPtrOutput) } -func (in *enterpriseCrmEventbusProtoFailurePolicyRetryStrategyPtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusProtoFailurePolicyRetryStrategy] { - return pulumix.Output[*EnterpriseCrmEventbusProtoFailurePolicyRetryStrategy]{ - OutputState: in.ToEnterpriseCrmEventbusProtoFailurePolicyRetryStrategyPtrOutputWithContext(ctx).OutputState, - } -} - type EnterpriseCrmEventbusProtoLogSettingsSeedPeriod string const ( @@ -1834,12 +1779,6 @@ func (in *enterpriseCrmEventbusProtoLogSettingsSeedPeriodPtr) ToEnterpriseCrmEve return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusProtoLogSettingsSeedPeriodPtrOutput) } -func (in *enterpriseCrmEventbusProtoLogSettingsSeedPeriodPtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusProtoLogSettingsSeedPeriod] { - return pulumix.Output[*EnterpriseCrmEventbusProtoLogSettingsSeedPeriod]{ - OutputState: in.ToEnterpriseCrmEventbusProtoLogSettingsSeedPeriodPtrOutputWithContext(ctx).OutputState, - } -} - type EnterpriseCrmEventbusProtoLogSettingsSeedScope string const ( @@ -2012,12 +1951,6 @@ func (in *enterpriseCrmEventbusProtoLogSettingsSeedScopePtr) ToEnterpriseCrmEven return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusProtoLogSettingsSeedScopePtrOutput) } -func (in *enterpriseCrmEventbusProtoLogSettingsSeedScopePtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusProtoLogSettingsSeedScope] { - return pulumix.Output[*EnterpriseCrmEventbusProtoLogSettingsSeedScope]{ - OutputState: in.ToEnterpriseCrmEventbusProtoLogSettingsSeedScopePtrOutputWithContext(ctx).OutputState, - } -} - // Destination node where the edge ends. It can only be a task config. type EnterpriseCrmEventbusProtoNodeIdentifierElementType string @@ -2186,12 +2119,6 @@ func (in *enterpriseCrmEventbusProtoNodeIdentifierElementTypePtr) ToEnterpriseCr return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusProtoNodeIdentifierElementTypePtrOutput) } -func (in *enterpriseCrmEventbusProtoNodeIdentifierElementTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusProtoNodeIdentifierElementType] { - return pulumix.Output[*EnterpriseCrmEventbusProtoNodeIdentifierElementType]{ - OutputState: in.ToEnterpriseCrmEventbusProtoNodeIdentifierElementTypePtrOutputWithContext(ctx).OutputState, - } -} - type EnterpriseCrmEventbusProtoParamSpecEntryConfigInputDisplayOption string const ( @@ -2365,12 +2292,6 @@ func (in *enterpriseCrmEventbusProtoParamSpecEntryConfigInputDisplayOptionPtr) T return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusProtoParamSpecEntryConfigInputDisplayOptionPtrOutput) } -func (in *enterpriseCrmEventbusProtoParamSpecEntryConfigInputDisplayOptionPtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusProtoParamSpecEntryConfigInputDisplayOption] { - return pulumix.Output[*EnterpriseCrmEventbusProtoParamSpecEntryConfigInputDisplayOption]{ - OutputState: in.ToEnterpriseCrmEventbusProtoParamSpecEntryConfigInputDisplayOptionPtrOutputWithContext(ctx).OutputState, - } -} - type EnterpriseCrmEventbusProtoParamSpecEntryConfigParameterNameOption string const ( @@ -2544,12 +2465,6 @@ func (in *enterpriseCrmEventbusProtoParamSpecEntryConfigParameterNameOptionPtr) return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusProtoParamSpecEntryConfigParameterNameOptionPtrOutput) } -func (in *enterpriseCrmEventbusProtoParamSpecEntryConfigParameterNameOptionPtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusProtoParamSpecEntryConfigParameterNameOption] { - return pulumix.Output[*EnterpriseCrmEventbusProtoParamSpecEntryConfigParameterNameOption]{ - OutputState: in.ToEnterpriseCrmEventbusProtoParamSpecEntryConfigParameterNameOptionPtrOutputWithContext(ctx).OutputState, - } -} - // State to which the execution snapshot status will be set if the task succeeds. type EnterpriseCrmEventbusProtoSuccessPolicyFinalState string @@ -2720,12 +2635,6 @@ func (in *enterpriseCrmEventbusProtoSuccessPolicyFinalStatePtr) ToEnterpriseCrmE return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusProtoSuccessPolicyFinalStatePtrOutput) } -func (in *enterpriseCrmEventbusProtoSuccessPolicyFinalStatePtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusProtoSuccessPolicyFinalState] { - return pulumix.Output[*EnterpriseCrmEventbusProtoSuccessPolicyFinalState]{ - OutputState: in.ToEnterpriseCrmEventbusProtoSuccessPolicyFinalStatePtrOutputWithContext(ctx).OutputState, - } -} - type EnterpriseCrmEventbusProtoTaskAlertConfigMetricType string const ( @@ -2905,12 +2814,6 @@ func (in *enterpriseCrmEventbusProtoTaskAlertConfigMetricTypePtr) ToEnterpriseCr return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusProtoTaskAlertConfigMetricTypePtrOutput) } -func (in *enterpriseCrmEventbusProtoTaskAlertConfigMetricTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusProtoTaskAlertConfigMetricType] { - return pulumix.Output[*EnterpriseCrmEventbusProtoTaskAlertConfigMetricType]{ - OutputState: in.ToEnterpriseCrmEventbusProtoTaskAlertConfigMetricTypePtrOutputWithContext(ctx).OutputState, - } -} - // The threshold type for which this alert is being configured. If value falls below expected_min or exceeds expected_max, an alert will be fired. type EnterpriseCrmEventbusProtoTaskAlertConfigThresholdType string @@ -3080,12 +2983,6 @@ func (in *enterpriseCrmEventbusProtoTaskAlertConfigThresholdTypePtr) ToEnterpris return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusProtoTaskAlertConfigThresholdTypePtrOutput) } -func (in *enterpriseCrmEventbusProtoTaskAlertConfigThresholdTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusProtoTaskAlertConfigThresholdType] { - return pulumix.Output[*EnterpriseCrmEventbusProtoTaskAlertConfigThresholdType]{ - OutputState: in.ToEnterpriseCrmEventbusProtoTaskAlertConfigThresholdTypePtrOutputWithContext(ctx).OutputState, - } -} - type EnterpriseCrmEventbusProtoTaskMetadataCategory string const ( @@ -3271,12 +3168,6 @@ func (in *enterpriseCrmEventbusProtoTaskMetadataCategoryPtr) ToEnterpriseCrmEven return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusProtoTaskMetadataCategoryPtrOutput) } -func (in *enterpriseCrmEventbusProtoTaskMetadataCategoryPtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusProtoTaskMetadataCategory] { - return pulumix.Output[*EnterpriseCrmEventbusProtoTaskMetadataCategory]{ - OutputState: in.ToEnterpriseCrmEventbusProtoTaskMetadataCategoryPtrOutputWithContext(ctx).OutputState, - } -} - // Controls whether JSON workflow parameters are validated against provided schemas before and/or after this task's execution. type EnterpriseCrmEventbusProtoTaskMetadataDefaultJsonValidationOption string @@ -3454,12 +3345,6 @@ func (in *enterpriseCrmEventbusProtoTaskMetadataDefaultJsonValidationOptionPtr) return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusProtoTaskMetadataDefaultJsonValidationOptionPtrOutput) } -func (in *enterpriseCrmEventbusProtoTaskMetadataDefaultJsonValidationOptionPtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusProtoTaskMetadataDefaultJsonValidationOption] { - return pulumix.Output[*EnterpriseCrmEventbusProtoTaskMetadataDefaultJsonValidationOption]{ - OutputState: in.ToEnterpriseCrmEventbusProtoTaskMetadataDefaultJsonValidationOptionPtrOutputWithContext(ctx).OutputState, - } -} - type EnterpriseCrmEventbusProtoTaskMetadataExternalCategory string const ( @@ -3663,12 +3548,6 @@ func (in *enterpriseCrmEventbusProtoTaskMetadataExternalCategoryPtr) ToEnterpris return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusProtoTaskMetadataExternalCategoryPtrOutput) } -func (in *enterpriseCrmEventbusProtoTaskMetadataExternalCategoryPtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusProtoTaskMetadataExternalCategory] { - return pulumix.Output[*EnterpriseCrmEventbusProtoTaskMetadataExternalCategory]{ - OutputState: in.ToEnterpriseCrmEventbusProtoTaskMetadataExternalCategoryPtrOutputWithContext(ctx).OutputState, - } -} - // Allows author to indicate if the task is ready to use or not. If not set, then it will default to INACTIVE. type EnterpriseCrmEventbusProtoTaskMetadataStatus string @@ -3840,12 +3719,6 @@ func (in *enterpriseCrmEventbusProtoTaskMetadataStatusPtr) ToEnterpriseCrmEventb return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusProtoTaskMetadataStatusPtrOutput) } -func (in *enterpriseCrmEventbusProtoTaskMetadataStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusProtoTaskMetadataStatus] { - return pulumix.Output[*EnterpriseCrmEventbusProtoTaskMetadataStatus]{ - OutputState: in.ToEnterpriseCrmEventbusProtoTaskMetadataStatusPtrOutputWithContext(ctx).OutputState, - } -} - type EnterpriseCrmEventbusProtoTaskMetadataSystem string const ( @@ -4029,12 +3902,6 @@ func (in *enterpriseCrmEventbusProtoTaskMetadataSystemPtr) ToEnterpriseCrmEventb return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusProtoTaskMetadataSystemPtrOutput) } -func (in *enterpriseCrmEventbusProtoTaskMetadataSystemPtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusProtoTaskMetadataSystem] { - return pulumix.Output[*EnterpriseCrmEventbusProtoTaskMetadataSystem]{ - OutputState: in.ToEnterpriseCrmEventbusProtoTaskMetadataSystemPtrOutputWithContext(ctx).OutputState, - } -} - // ID of the config module. type EnterpriseCrmEventbusProtoTaskUiModuleConfigModuleId string @@ -4257,12 +4124,6 @@ func (in *enterpriseCrmEventbusProtoTaskUiModuleConfigModuleIdPtr) ToEnterpriseC return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusProtoTaskUiModuleConfigModuleIdPtrOutput) } -func (in *enterpriseCrmEventbusProtoTaskUiModuleConfigModuleIdPtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusProtoTaskUiModuleConfigModuleId] { - return pulumix.Output[*EnterpriseCrmEventbusProtoTaskUiModuleConfigModuleId]{ - OutputState: in.ToEnterpriseCrmEventbusProtoTaskUiModuleConfigModuleIdPtrOutputWithContext(ctx).OutputState, - } -} - type EnterpriseCrmEventbusProtoWorkflowAlertConfigMetricType string const ( @@ -4457,12 +4318,6 @@ func (in *enterpriseCrmEventbusProtoWorkflowAlertConfigMetricTypePtr) ToEnterpri return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusProtoWorkflowAlertConfigMetricTypePtrOutput) } -func (in *enterpriseCrmEventbusProtoWorkflowAlertConfigMetricTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusProtoWorkflowAlertConfigMetricType] { - return pulumix.Output[*EnterpriseCrmEventbusProtoWorkflowAlertConfigMetricType]{ - OutputState: in.ToEnterpriseCrmEventbusProtoWorkflowAlertConfigMetricTypePtrOutputWithContext(ctx).OutputState, - } -} - // The threshold type, whether lower(expected_min) or upper(expected_max), for which this alert is being configured. If value falls below expected_min or exceeds expected_max, an alert will be fired. type EnterpriseCrmEventbusProtoWorkflowAlertConfigThresholdType string @@ -4632,12 +4487,6 @@ func (in *enterpriseCrmEventbusProtoWorkflowAlertConfigThresholdTypePtr) ToEnter return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusProtoWorkflowAlertConfigThresholdTypePtrOutput) } -func (in *enterpriseCrmEventbusProtoWorkflowAlertConfigThresholdTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusProtoWorkflowAlertConfigThresholdType] { - return pulumix.Output[*EnterpriseCrmEventbusProtoWorkflowAlertConfigThresholdType]{ - OutputState: in.ToEnterpriseCrmEventbusProtoWorkflowAlertConfigThresholdTypePtrOutputWithContext(ctx).OutputState, - } -} - // Whether to include or exclude the enums matching the regex. type EnterpriseCrmEventbusStatsDimensionsEnumFilterType string @@ -4804,12 +4653,6 @@ func (in *enterpriseCrmEventbusStatsDimensionsEnumFilterTypePtr) ToEnterpriseCrm return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusStatsDimensionsEnumFilterTypePtrOutput) } -func (in *enterpriseCrmEventbusStatsDimensionsEnumFilterTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusStatsDimensionsEnumFilterType] { - return pulumix.Output[*EnterpriseCrmEventbusStatsDimensionsEnumFilterType]{ - OutputState: in.ToEnterpriseCrmEventbusStatsDimensionsEnumFilterTypePtrOutputWithContext(ctx).OutputState, - } -} - type EnterpriseCrmEventbusStatsDimensionsRetryAttempt string const ( @@ -4982,12 +4825,6 @@ func (in *enterpriseCrmEventbusStatsDimensionsRetryAttemptPtr) ToEnterpriseCrmEv return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmEventbusStatsDimensionsRetryAttemptPtrOutput) } -func (in *enterpriseCrmEventbusStatsDimensionsRetryAttemptPtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmEventbusStatsDimensionsRetryAttempt] { - return pulumix.Output[*EnterpriseCrmEventbusStatsDimensionsRetryAttempt]{ - OutputState: in.ToEnterpriseCrmEventbusStatsDimensionsRetryAttemptPtrOutputWithContext(ctx).OutputState, - } -} - // The data type of the parameter. type EnterpriseCrmFrontendsEventbusProtoParamSpecEntryDataType string @@ -5187,12 +5024,6 @@ func (in *enterpriseCrmFrontendsEventbusProtoParamSpecEntryDataTypePtr) ToEnterp return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmFrontendsEventbusProtoParamSpecEntryDataTypePtrOutput) } -func (in *enterpriseCrmFrontendsEventbusProtoParamSpecEntryDataTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoParamSpecEntryDataType] { - return pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoParamSpecEntryDataType]{ - OutputState: in.ToEnterpriseCrmFrontendsEventbusProtoParamSpecEntryDataTypePtrOutputWithContext(ctx).OutputState, - } -} - // Explicitly getting the type of the parameter. type EnterpriseCrmFrontendsEventbusProtoParameterEntryDataType string @@ -5392,12 +5223,6 @@ func (in *enterpriseCrmFrontendsEventbusProtoParameterEntryDataTypePtr) ToEnterp return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmFrontendsEventbusProtoParameterEntryDataTypePtrOutput) } -func (in *enterpriseCrmFrontendsEventbusProtoParameterEntryDataTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoParameterEntryDataType] { - return pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoParameterEntryDataType]{ - OutputState: in.ToEnterpriseCrmFrontendsEventbusProtoParameterEntryDataTypePtrOutputWithContext(ctx).OutputState, - } -} - type EnterpriseCrmFrontendsEventbusProtoTaskConfigExternalTaskType string const ( @@ -5568,12 +5393,6 @@ func (in *enterpriseCrmFrontendsEventbusProtoTaskConfigExternalTaskTypePtr) ToEn return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmFrontendsEventbusProtoTaskConfigExternalTaskTypePtrOutput) } -func (in *enterpriseCrmFrontendsEventbusProtoTaskConfigExternalTaskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoTaskConfigExternalTaskType] { - return pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoTaskConfigExternalTaskType]{ - OutputState: in.ToEnterpriseCrmFrontendsEventbusProtoTaskConfigExternalTaskTypePtrOutputWithContext(ctx).OutputState, - } -} - // If set, overrides the option configured in the Task implementation class. type EnterpriseCrmFrontendsEventbusProtoTaskConfigJsonValidationOption string @@ -5751,12 +5570,6 @@ func (in *enterpriseCrmFrontendsEventbusProtoTaskConfigJsonValidationOptionPtr) return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmFrontendsEventbusProtoTaskConfigJsonValidationOptionPtrOutput) } -func (in *enterpriseCrmFrontendsEventbusProtoTaskConfigJsonValidationOptionPtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoTaskConfigJsonValidationOption] { - return pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoTaskConfigJsonValidationOption]{ - OutputState: in.ToEnterpriseCrmFrontendsEventbusProtoTaskConfigJsonValidationOptionPtrOutputWithContext(ctx).OutputState, - } -} - // The policy dictating the execution of the next set of tasks for the current task. type EnterpriseCrmFrontendsEventbusProtoTaskConfigNextTasksExecutionPolicy string @@ -5928,12 +5741,6 @@ func (in *enterpriseCrmFrontendsEventbusProtoTaskConfigNextTasksExecutionPolicyP return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmFrontendsEventbusProtoTaskConfigNextTasksExecutionPolicyPtrOutput) } -func (in *enterpriseCrmFrontendsEventbusProtoTaskConfigNextTasksExecutionPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoTaskConfigNextTasksExecutionPolicy] { - return pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoTaskConfigNextTasksExecutionPolicy]{ - OutputState: in.ToEnterpriseCrmFrontendsEventbusProtoTaskConfigNextTasksExecutionPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // The policy dictating the execution strategy of this task. type EnterpriseCrmFrontendsEventbusProtoTaskConfigTaskExecutionStrategy string @@ -6105,12 +5912,6 @@ func (in *enterpriseCrmFrontendsEventbusProtoTaskConfigTaskExecutionStrategyPtr) return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmFrontendsEventbusProtoTaskConfigTaskExecutionStrategyPtrOutput) } -func (in *enterpriseCrmFrontendsEventbusProtoTaskConfigTaskExecutionStrategyPtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoTaskConfigTaskExecutionStrategy] { - return pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoTaskConfigTaskExecutionStrategy]{ - OutputState: in.ToEnterpriseCrmFrontendsEventbusProtoTaskConfigTaskExecutionStrategyPtrOutputWithContext(ctx).OutputState, - } -} - // Defines the type of the task type EnterpriseCrmFrontendsEventbusProtoTaskConfigTaskType string @@ -6282,12 +6083,6 @@ func (in *enterpriseCrmFrontendsEventbusProtoTaskConfigTaskTypePtr) ToEnterprise return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmFrontendsEventbusProtoTaskConfigTaskTypePtrOutput) } -func (in *enterpriseCrmFrontendsEventbusProtoTaskConfigTaskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoTaskConfigTaskType] { - return pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoTaskConfigTaskType]{ - OutputState: in.ToEnterpriseCrmFrontendsEventbusProtoTaskConfigTaskTypePtrOutputWithContext(ctx).OutputState, - } -} - // Defines the type of the task type EnterpriseCrmFrontendsEventbusProtoTaskEntityTaskType string @@ -6459,12 +6254,6 @@ func (in *enterpriseCrmFrontendsEventbusProtoTaskEntityTaskTypePtr) ToEnterprise return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmFrontendsEventbusProtoTaskEntityTaskTypePtrOutput) } -func (in *enterpriseCrmFrontendsEventbusProtoTaskEntityTaskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoTaskEntityTaskType] { - return pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoTaskEntityTaskType]{ - OutputState: in.ToEnterpriseCrmFrontendsEventbusProtoTaskEntityTaskTypePtrOutputWithContext(ctx).OutputState, - } -} - // Dictates how next tasks will be executed. type EnterpriseCrmFrontendsEventbusProtoTriggerConfigNextTasksExecutionPolicy string @@ -6636,12 +6425,6 @@ func (in *enterpriseCrmFrontendsEventbusProtoTriggerConfigNextTasksExecutionPoli return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmFrontendsEventbusProtoTriggerConfigNextTasksExecutionPolicyPtrOutput) } -func (in *enterpriseCrmFrontendsEventbusProtoTriggerConfigNextTasksExecutionPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoTriggerConfigNextTasksExecutionPolicy] { - return pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoTriggerConfigNextTasksExecutionPolicy]{ - OutputState: in.ToEnterpriseCrmFrontendsEventbusProtoTriggerConfigNextTasksExecutionPolicyPtrOutputWithContext(ctx).OutputState, - } -} - type EnterpriseCrmFrontendsEventbusProtoTriggerConfigTriggerType string const ( @@ -6833,12 +6616,6 @@ func (in *enterpriseCrmFrontendsEventbusProtoTriggerConfigTriggerTypePtr) ToEnte return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmFrontendsEventbusProtoTriggerConfigTriggerTypePtrOutput) } -func (in *enterpriseCrmFrontendsEventbusProtoTriggerConfigTriggerTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoTriggerConfigTriggerType] { - return pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoTriggerConfigTriggerType]{ - OutputState: in.ToEnterpriseCrmFrontendsEventbusProtoTriggerConfigTriggerTypePtrOutputWithContext(ctx).OutputState, - } -} - // The data type of the parameter. type EnterpriseCrmFrontendsEventbusProtoWorkflowParameterEntryDataType string @@ -7038,12 +6815,6 @@ func (in *enterpriseCrmFrontendsEventbusProtoWorkflowParameterEntryDataTypePtr) return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmFrontendsEventbusProtoWorkflowParameterEntryDataTypePtrOutput) } -func (in *enterpriseCrmFrontendsEventbusProtoWorkflowParameterEntryDataTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoWorkflowParameterEntryDataType] { - return pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoWorkflowParameterEntryDataType]{ - OutputState: in.ToEnterpriseCrmFrontendsEventbusProtoWorkflowParameterEntryDataTypePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the input/output type for the parameter. type EnterpriseCrmFrontendsEventbusProtoWorkflowParameterEntryInOutType string @@ -7217,12 +6988,6 @@ func (in *enterpriseCrmFrontendsEventbusProtoWorkflowParameterEntryInOutTypePtr) return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmFrontendsEventbusProtoWorkflowParameterEntryInOutTypePtrOutput) } -func (in *enterpriseCrmFrontendsEventbusProtoWorkflowParameterEntryInOutTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoWorkflowParameterEntryInOutType] { - return pulumix.Output[*EnterpriseCrmFrontendsEventbusProtoWorkflowParameterEntryInOutType]{ - OutputState: in.ToEnterpriseCrmFrontendsEventbusProtoWorkflowParameterEntryInOutTypePtrOutputWithContext(ctx).OutputState, - } -} - type EnterpriseCrmLoggingGwsFieldLimitsLogAction string const ( @@ -7390,12 +7155,6 @@ func (in *enterpriseCrmLoggingGwsFieldLimitsLogActionPtr) ToEnterpriseCrmLogging return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmLoggingGwsFieldLimitsLogActionPtrOutput) } -func (in *enterpriseCrmLoggingGwsFieldLimitsLogActionPtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmLoggingGwsFieldLimitsLogAction] { - return pulumix.Output[*EnterpriseCrmLoggingGwsFieldLimitsLogAction]{ - OutputState: in.ToEnterpriseCrmLoggingGwsFieldLimitsLogActionPtrOutputWithContext(ctx).OutputState, - } -} - type EnterpriseCrmLoggingGwsFieldLimitsLogTypeItem string const ( @@ -7568,12 +7327,6 @@ func (in *enterpriseCrmLoggingGwsFieldLimitsLogTypeItemPtr) ToEnterpriseCrmLoggi return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmLoggingGwsFieldLimitsLogTypeItemPtrOutput) } -func (in *enterpriseCrmLoggingGwsFieldLimitsLogTypeItemPtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmLoggingGwsFieldLimitsLogTypeItem] { - return pulumix.Output[*EnterpriseCrmLoggingGwsFieldLimitsLogTypeItem]{ - OutputState: in.ToEnterpriseCrmLoggingGwsFieldLimitsLogTypeItemPtrOutputWithContext(ctx).OutputState, - } -} - // EnterpriseCrmLoggingGwsFieldLimitsLogTypeItemArrayInput is an input type that accepts EnterpriseCrmLoggingGwsFieldLimitsLogTypeItemArray and EnterpriseCrmLoggingGwsFieldLimitsLogTypeItemArrayOutput values. // You can construct a concrete instance of `EnterpriseCrmLoggingGwsFieldLimitsLogTypeItemArrayInput` via: // @@ -7800,12 +7553,6 @@ func (in *enterpriseCrmLoggingGwsFieldLimitsShortenerTypePtr) ToEnterpriseCrmLog return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmLoggingGwsFieldLimitsShortenerTypePtrOutput) } -func (in *enterpriseCrmLoggingGwsFieldLimitsShortenerTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmLoggingGwsFieldLimitsShortenerType] { - return pulumix.Output[*EnterpriseCrmLoggingGwsFieldLimitsShortenerType]{ - OutputState: in.ToEnterpriseCrmLoggingGwsFieldLimitsShortenerTypePtrOutputWithContext(ctx).OutputState, - } -} - type EnterpriseCrmLoggingGwsSanitizeOptionsLogTypeItem string const ( @@ -7978,12 +7725,6 @@ func (in *enterpriseCrmLoggingGwsSanitizeOptionsLogTypeItemPtr) ToEnterpriseCrmL return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmLoggingGwsSanitizeOptionsLogTypeItemPtrOutput) } -func (in *enterpriseCrmLoggingGwsSanitizeOptionsLogTypeItemPtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmLoggingGwsSanitizeOptionsLogTypeItem] { - return pulumix.Output[*EnterpriseCrmLoggingGwsSanitizeOptionsLogTypeItem]{ - OutputState: in.ToEnterpriseCrmLoggingGwsSanitizeOptionsLogTypeItemPtrOutputWithContext(ctx).OutputState, - } -} - // EnterpriseCrmLoggingGwsSanitizeOptionsLogTypeItemArrayInput is an input type that accepts EnterpriseCrmLoggingGwsSanitizeOptionsLogTypeItemArray and EnterpriseCrmLoggingGwsSanitizeOptionsLogTypeItemArrayOutput values. // You can construct a concrete instance of `EnterpriseCrmLoggingGwsSanitizeOptionsLogTypeItemArrayInput` via: // @@ -8204,12 +7945,6 @@ func (in *enterpriseCrmLoggingGwsSanitizeOptionsPrivacyPtr) ToEnterpriseCrmLoggi return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmLoggingGwsSanitizeOptionsPrivacyPtrOutput) } -func (in *enterpriseCrmLoggingGwsSanitizeOptionsPrivacyPtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmLoggingGwsSanitizeOptionsPrivacy] { - return pulumix.Output[*EnterpriseCrmLoggingGwsSanitizeOptionsPrivacy]{ - OutputState: in.ToEnterpriseCrmLoggingGwsSanitizeOptionsPrivacyPtrOutputWithContext(ctx).OutputState, - } -} - type EnterpriseCrmLoggingGwsSanitizeOptionsSanitizeType string const ( @@ -8391,12 +8126,6 @@ func (in *enterpriseCrmLoggingGwsSanitizeOptionsSanitizeTypePtr) ToEnterpriseCrm return pulumi.ToOutputWithContext(ctx, in).(EnterpriseCrmLoggingGwsSanitizeOptionsSanitizeTypePtrOutput) } -func (in *enterpriseCrmLoggingGwsSanitizeOptionsSanitizeTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EnterpriseCrmLoggingGwsSanitizeOptionsSanitizeType] { - return pulumix.Output[*EnterpriseCrmLoggingGwsSanitizeOptionsSanitizeType]{ - OutputState: in.ToEnterpriseCrmLoggingGwsSanitizeOptionsSanitizeTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of assertion to perform. type GoogleCloudIntegrationsV1alphaAssertionAssertionStrategy string @@ -8583,12 +8312,6 @@ func (in *googleCloudIntegrationsV1alphaAssertionAssertionStrategyPtr) ToGoogleC return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIntegrationsV1alphaAssertionAssertionStrategyPtrOutput) } -func (in *googleCloudIntegrationsV1alphaAssertionAssertionStrategyPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIntegrationsV1alphaAssertionAssertionStrategy] { - return pulumix.Output[*GoogleCloudIntegrationsV1alphaAssertionAssertionStrategy]{ - OutputState: in.ToGoogleCloudIntegrationsV1alphaAssertionAssertionStrategyPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Severity selected by the customer for the logs to be sent to Cloud Logging, for the integration version getting executed. type GoogleCloudIntegrationsV1alphaCloudLoggingDetailsCloudLoggingSeverity string @@ -8766,12 +8489,6 @@ func (in *googleCloudIntegrationsV1alphaCloudLoggingDetailsCloudLoggingSeverityP return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIntegrationsV1alphaCloudLoggingDetailsCloudLoggingSeverityPtrOutput) } -func (in *googleCloudIntegrationsV1alphaCloudLoggingDetailsCloudLoggingSeverityPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIntegrationsV1alphaCloudLoggingDetailsCloudLoggingSeverity] { - return pulumix.Output[*GoogleCloudIntegrationsV1alphaCloudLoggingDetailsCloudLoggingSeverity]{ - OutputState: in.ToGoogleCloudIntegrationsV1alphaCloudLoggingDetailsCloudLoggingSeverityPtrOutputWithContext(ctx).OutputState, - } -} - // Credential type associated with auth config. type GoogleCloudIntegrationsV1alphaCredentialCredentialType string @@ -8970,12 +8687,6 @@ func (in *googleCloudIntegrationsV1alphaCredentialCredentialTypePtr) ToGoogleClo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIntegrationsV1alphaCredentialCredentialTypePtrOutput) } -func (in *googleCloudIntegrationsV1alphaCredentialCredentialTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIntegrationsV1alphaCredentialCredentialType] { - return pulumix.Output[*GoogleCloudIntegrationsV1alphaCredentialCredentialType]{ - OutputState: in.ToGoogleCloudIntegrationsV1alphaCredentialCredentialTypePtrOutputWithContext(ctx).OutputState, - } -} - // Defines what happens to the task upon failure. type GoogleCloudIntegrationsV1alphaFailurePolicyRetryStrategy string @@ -9162,12 +8873,6 @@ func (in *googleCloudIntegrationsV1alphaFailurePolicyRetryStrategyPtr) ToGoogleC return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIntegrationsV1alphaFailurePolicyRetryStrategyPtrOutput) } -func (in *googleCloudIntegrationsV1alphaFailurePolicyRetryStrategyPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIntegrationsV1alphaFailurePolicyRetryStrategy] { - return pulumix.Output[*GoogleCloudIntegrationsV1alphaFailurePolicyRetryStrategy]{ - OutputState: in.ToGoogleCloudIntegrationsV1alphaFailurePolicyRetryStrategyPtrOutputWithContext(ctx).OutputState, - } -} - // The type of metric. type GoogleCloudIntegrationsV1alphaIntegrationAlertConfigMetricType string @@ -9363,12 +9068,6 @@ func (in *googleCloudIntegrationsV1alphaIntegrationAlertConfigMetricTypePtr) ToG return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIntegrationsV1alphaIntegrationAlertConfigMetricTypePtrOutput) } -func (in *googleCloudIntegrationsV1alphaIntegrationAlertConfigMetricTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIntegrationsV1alphaIntegrationAlertConfigMetricType] { - return pulumix.Output[*GoogleCloudIntegrationsV1alphaIntegrationAlertConfigMetricType]{ - OutputState: in.ToGoogleCloudIntegrationsV1alphaIntegrationAlertConfigMetricTypePtrOutputWithContext(ctx).OutputState, - } -} - // The threshold type, whether lower(expected_min) or upper(expected_max), for which this alert is being configured. If value falls below expected_min or exceeds expected_max, an alert will be fired. type GoogleCloudIntegrationsV1alphaIntegrationAlertConfigThresholdType string @@ -9540,12 +9239,6 @@ func (in *googleCloudIntegrationsV1alphaIntegrationAlertConfigThresholdTypePtr) return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIntegrationsV1alphaIntegrationAlertConfigThresholdTypePtrOutput) } -func (in *googleCloudIntegrationsV1alphaIntegrationAlertConfigThresholdTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIntegrationsV1alphaIntegrationAlertConfigThresholdType] { - return pulumix.Output[*GoogleCloudIntegrationsV1alphaIntegrationAlertConfigThresholdType]{ - OutputState: in.ToGoogleCloudIntegrationsV1alphaIntegrationAlertConfigThresholdTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of the parameter. type GoogleCloudIntegrationsV1alphaIntegrationParameterDataType string @@ -9744,12 +9437,6 @@ func (in *googleCloudIntegrationsV1alphaIntegrationParameterDataTypePtr) ToGoogl return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIntegrationsV1alphaIntegrationParameterDataTypePtrOutput) } -func (in *googleCloudIntegrationsV1alphaIntegrationParameterDataTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIntegrationsV1alphaIntegrationParameterDataType] { - return pulumix.Output[*GoogleCloudIntegrationsV1alphaIntegrationParameterDataType]{ - OutputState: in.ToGoogleCloudIntegrationsV1alphaIntegrationParameterDataTypePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the input/output type for the parameter. type GoogleCloudIntegrationsV1alphaIntegrationParameterInputOutputType string @@ -9924,12 +9611,6 @@ func (in *googleCloudIntegrationsV1alphaIntegrationParameterInputOutputTypePtr) return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIntegrationsV1alphaIntegrationParameterInputOutputTypePtrOutput) } -func (in *googleCloudIntegrationsV1alphaIntegrationParameterInputOutputTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIntegrationsV1alphaIntegrationParameterInputOutputType] { - return pulumix.Output[*GoogleCloudIntegrationsV1alphaIntegrationParameterInputOutputType]{ - OutputState: in.ToGoogleCloudIntegrationsV1alphaIntegrationParameterInputOutputTypePtrOutputWithContext(ctx).OutputState, - } -} - // Mockstrategy defines how the particular task should be mocked during test execution type GoogleCloudIntegrationsV1alphaMockConfigMockStrategy string @@ -10107,12 +9788,6 @@ func (in *googleCloudIntegrationsV1alphaMockConfigMockStrategyPtr) ToGoogleCloud return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIntegrationsV1alphaMockConfigMockStrategyPtrOutput) } -func (in *googleCloudIntegrationsV1alphaMockConfigMockStrategyPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIntegrationsV1alphaMockConfigMockStrategy] { - return pulumix.Output[*GoogleCloudIntegrationsV1alphaMockConfigMockStrategy]{ - OutputState: in.ToGoogleCloudIntegrationsV1alphaMockConfigMockStrategyPtrOutputWithContext(ctx).OutputState, - } -} - // Represent how to pass parameters to fetch access token type GoogleCloudIntegrationsV1alphaOAuth2AuthorizationCodeRequestType string @@ -10287,12 +9962,6 @@ func (in *googleCloudIntegrationsV1alphaOAuth2AuthorizationCodeRequestTypePtr) T return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIntegrationsV1alphaOAuth2AuthorizationCodeRequestTypePtrOutput) } -func (in *googleCloudIntegrationsV1alphaOAuth2AuthorizationCodeRequestTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIntegrationsV1alphaOAuth2AuthorizationCodeRequestType] { - return pulumix.Output[*GoogleCloudIntegrationsV1alphaOAuth2AuthorizationCodeRequestType]{ - OutputState: in.ToGoogleCloudIntegrationsV1alphaOAuth2AuthorizationCodeRequestTypePtrOutputWithContext(ctx).OutputState, - } -} - // Represent how to pass parameters to fetch access token type GoogleCloudIntegrationsV1alphaOAuth2ClientCredentialsRequestType string @@ -10467,12 +10136,6 @@ func (in *googleCloudIntegrationsV1alphaOAuth2ClientCredentialsRequestTypePtr) T return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIntegrationsV1alphaOAuth2ClientCredentialsRequestTypePtrOutput) } -func (in *googleCloudIntegrationsV1alphaOAuth2ClientCredentialsRequestTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIntegrationsV1alphaOAuth2ClientCredentialsRequestType] { - return pulumix.Output[*GoogleCloudIntegrationsV1alphaOAuth2ClientCredentialsRequestType]{ - OutputState: in.ToGoogleCloudIntegrationsV1alphaOAuth2ClientCredentialsRequestTypePtrOutputWithContext(ctx).OutputState, - } -} - // Represent how to pass parameters to fetch access token type GoogleCloudIntegrationsV1alphaOAuth2ResourceOwnerCredentialsRequestType string @@ -10647,12 +10310,6 @@ func (in *googleCloudIntegrationsV1alphaOAuth2ResourceOwnerCredentialsRequestTyp return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIntegrationsV1alphaOAuth2ResourceOwnerCredentialsRequestTypePtrOutput) } -func (in *googleCloudIntegrationsV1alphaOAuth2ResourceOwnerCredentialsRequestTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIntegrationsV1alphaOAuth2ResourceOwnerCredentialsRequestType] { - return pulumix.Output[*GoogleCloudIntegrationsV1alphaOAuth2ResourceOwnerCredentialsRequestType]{ - OutputState: in.ToGoogleCloudIntegrationsV1alphaOAuth2ResourceOwnerCredentialsRequestTypePtrOutputWithContext(ctx).OutputState, - } -} - // Option to specify key type for all entries of the map. If provided then field types for all entries must conform to this. type GoogleCloudIntegrationsV1alphaParameterMapKeyType string @@ -10851,12 +10508,6 @@ func (in *googleCloudIntegrationsV1alphaParameterMapKeyTypePtr) ToGoogleCloudInt return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIntegrationsV1alphaParameterMapKeyTypePtrOutput) } -func (in *googleCloudIntegrationsV1alphaParameterMapKeyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIntegrationsV1alphaParameterMapKeyType] { - return pulumix.Output[*GoogleCloudIntegrationsV1alphaParameterMapKeyType]{ - OutputState: in.ToGoogleCloudIntegrationsV1alphaParameterMapKeyTypePtrOutputWithContext(ctx).OutputState, - } -} - // Option to specify value type for all entries of the map. If provided then field types for all entries must conform to this. type GoogleCloudIntegrationsV1alphaParameterMapValueType string @@ -11055,12 +10706,6 @@ func (in *googleCloudIntegrationsV1alphaParameterMapValueTypePtr) ToGoogleCloudI return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIntegrationsV1alphaParameterMapValueTypePtrOutput) } -func (in *googleCloudIntegrationsV1alphaParameterMapValueTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIntegrationsV1alphaParameterMapValueType] { - return pulumix.Output[*GoogleCloudIntegrationsV1alphaParameterMapValueType]{ - OutputState: in.ToGoogleCloudIntegrationsV1alphaParameterMapValueTypePtrOutputWithContext(ctx).OutputState, - } -} - // State to which the execution snapshot status will be set if the task succeeds. type GoogleCloudIntegrationsV1alphaSuccessPolicyFinalState string @@ -11232,12 +10877,6 @@ func (in *googleCloudIntegrationsV1alphaSuccessPolicyFinalStatePtr) ToGoogleClou return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIntegrationsV1alphaSuccessPolicyFinalStatePtrOutput) } -func (in *googleCloudIntegrationsV1alphaSuccessPolicyFinalStatePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIntegrationsV1alphaSuccessPolicyFinalState] { - return pulumix.Output[*GoogleCloudIntegrationsV1alphaSuccessPolicyFinalState]{ - OutputState: in.ToGoogleCloudIntegrationsV1alphaSuccessPolicyFinalStatePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. External task type of the task type GoogleCloudIntegrationsV1alphaTaskConfigExternalTaskType string @@ -11409,12 +11048,6 @@ func (in *googleCloudIntegrationsV1alphaTaskConfigExternalTaskTypePtr) ToGoogleC return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIntegrationsV1alphaTaskConfigExternalTaskTypePtrOutput) } -func (in *googleCloudIntegrationsV1alphaTaskConfigExternalTaskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIntegrationsV1alphaTaskConfigExternalTaskType] { - return pulumix.Output[*GoogleCloudIntegrationsV1alphaTaskConfigExternalTaskType]{ - OutputState: in.ToGoogleCloudIntegrationsV1alphaTaskConfigExternalTaskTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. If set, overrides the option configured in the Task implementation class. type GoogleCloudIntegrationsV1alphaTaskConfigJsonValidationOption string @@ -11592,12 +11225,6 @@ func (in *googleCloudIntegrationsV1alphaTaskConfigJsonValidationOptionPtr) ToGoo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIntegrationsV1alphaTaskConfigJsonValidationOptionPtrOutput) } -func (in *googleCloudIntegrationsV1alphaTaskConfigJsonValidationOptionPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIntegrationsV1alphaTaskConfigJsonValidationOption] { - return pulumix.Output[*GoogleCloudIntegrationsV1alphaTaskConfigJsonValidationOption]{ - OutputState: in.ToGoogleCloudIntegrationsV1alphaTaskConfigJsonValidationOptionPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The policy dictating the execution of the next set of tasks for the current task. type GoogleCloudIntegrationsV1alphaTaskConfigNextTasksExecutionPolicy string @@ -11769,12 +11396,6 @@ func (in *googleCloudIntegrationsV1alphaTaskConfigNextTasksExecutionPolicyPtr) T return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIntegrationsV1alphaTaskConfigNextTasksExecutionPolicyPtrOutput) } -func (in *googleCloudIntegrationsV1alphaTaskConfigNextTasksExecutionPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIntegrationsV1alphaTaskConfigNextTasksExecutionPolicy] { - return pulumix.Output[*GoogleCloudIntegrationsV1alphaTaskConfigNextTasksExecutionPolicy]{ - OutputState: in.ToGoogleCloudIntegrationsV1alphaTaskConfigNextTasksExecutionPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The policy dictating the execution strategy of this task. type GoogleCloudIntegrationsV1alphaTaskConfigTaskExecutionStrategy string @@ -11949,12 +11570,6 @@ func (in *googleCloudIntegrationsV1alphaTaskConfigTaskExecutionStrategyPtr) ToGo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIntegrationsV1alphaTaskConfigTaskExecutionStrategyPtrOutput) } -func (in *googleCloudIntegrationsV1alphaTaskConfigTaskExecutionStrategyPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIntegrationsV1alphaTaskConfigTaskExecutionStrategy] { - return pulumix.Output[*GoogleCloudIntegrationsV1alphaTaskConfigTaskExecutionStrategy]{ - OutputState: in.ToGoogleCloudIntegrationsV1alphaTaskConfigTaskExecutionStrategyPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Dictates how next tasks will be executed. type GoogleCloudIntegrationsV1alphaTriggerConfigNextTasksExecutionPolicy string @@ -12126,12 +11741,6 @@ func (in *googleCloudIntegrationsV1alphaTriggerConfigNextTasksExecutionPolicyPtr return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIntegrationsV1alphaTriggerConfigNextTasksExecutionPolicyPtrOutput) } -func (in *googleCloudIntegrationsV1alphaTriggerConfigNextTasksExecutionPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIntegrationsV1alphaTriggerConfigNextTasksExecutionPolicy] { - return pulumix.Output[*GoogleCloudIntegrationsV1alphaTriggerConfigNextTasksExecutionPolicy]{ - OutputState: in.ToGoogleCloudIntegrationsV1alphaTriggerConfigNextTasksExecutionPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Type of trigger type GoogleCloudIntegrationsV1alphaTriggerConfigTriggerType string @@ -12321,12 +11930,6 @@ func (in *googleCloudIntegrationsV1alphaTriggerConfigTriggerTypePtr) ToGoogleClo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudIntegrationsV1alphaTriggerConfigTriggerTypePtrOutput) } -func (in *googleCloudIntegrationsV1alphaTriggerConfigTriggerTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudIntegrationsV1alphaTriggerConfigTriggerType] { - return pulumix.Output[*GoogleCloudIntegrationsV1alphaTriggerConfigTriggerType]{ - OutputState: in.ToGoogleCloudIntegrationsV1alphaTriggerConfigTriggerTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Flag to disable database persistence for execution data, including event execution info, execution export info, execution metadata index and execution param index. type TemplatesVersionDatabasePersistencePolicy string @@ -12498,12 +12101,6 @@ func (in *templatesVersionDatabasePersistencePolicyPtr) ToTemplatesVersionDataba return pulumi.ToOutputWithContext(ctx, in).(TemplatesVersionDatabasePersistencePolicyPtrOutput) } -func (in *templatesVersionDatabasePersistencePolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*TemplatesVersionDatabasePersistencePolicy] { - return pulumix.Output[*TemplatesVersionDatabasePersistencePolicy]{ - OutputState: in.ToTemplatesVersionDatabasePersistencePolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Generated by eventbus. User should not set it as an input. type TemplatesVersionStatus string @@ -12686,12 +12283,6 @@ func (in *testCaseDatabasePersistencePolicyPtr) ToTestCaseDatabasePersistencePol return pulumi.ToOutputWithContext(ctx, in).(TestCaseDatabasePersistencePolicyPtrOutput) } -func (in *testCaseDatabasePersistencePolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*TestCaseDatabasePersistencePolicy] { - return pulumix.Output[*TestCaseDatabasePersistencePolicy]{ - OutputState: in.ToTestCaseDatabasePersistencePolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Flag to disable database persistence for execution data, including event execution info, execution export info, execution metadata index and execution param index. type VersionDatabasePersistencePolicy string @@ -12863,12 +12454,6 @@ func (in *versionDatabasePersistencePolicyPtr) ToVersionDatabasePersistencePolic return pulumi.ToOutputWithContext(ctx, in).(VersionDatabasePersistencePolicyPtrOutput) } -func (in *versionDatabasePersistencePolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*VersionDatabasePersistencePolicy] { - return pulumix.Output[*VersionDatabasePersistencePolicy]{ - OutputState: in.ToVersionDatabasePersistencePolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The origin that indicates where this integration is coming from. type VersionOrigin string @@ -13048,12 +12633,6 @@ func (in *versionOriginPtr) ToVersionOriginPtrOutputWithContext(ctx context.Cont return pulumi.ToOutputWithContext(ctx, in).(VersionOriginPtrOutput) } -func (in *versionOriginPtr) ToOutput(ctx context.Context) pulumix.Output[*VersionOrigin] { - return pulumix.Output[*VersionOrigin]{ - OutputState: in.ToVersionOriginPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuthConfigCredentialTypeInput)(nil)).Elem(), AuthConfigCredentialType("CREDENTIAL_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuthConfigCredentialTypePtrInput)(nil)).Elem(), AuthConfigCredentialType("CREDENTIAL_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/internal/pulumiUtilities.go b/sdk/go/google/internal/pulumiUtilities.go index 2a9031787a..7ed42ef230 100644 --- a/sdk/go/google/internal/pulumiUtilities.go +++ b/sdk/go/google/internal/pulumiUtilities.go @@ -165,7 +165,7 @@ func callPlainInner( func PkgResourceDefaultOpts(opts []pulumi.ResourceOption) []pulumi.ResourceOption { defaults := []pulumi.ResourceOption{} - version := SdkVersion + version := semver.MustParse("0.0.1-alpha.0+dev") if !version.Equals(semver.Version{}) { defaults = append(defaults, pulumi.Version(version.String())) } @@ -176,7 +176,7 @@ func PkgResourceDefaultOpts(opts []pulumi.ResourceOption) []pulumi.ResourceOptio func PkgInvokeDefaultOpts(opts []pulumi.InvokeOption) []pulumi.InvokeOption { defaults := []pulumi.InvokeOption{} - version := SdkVersion + version := semver.MustParse("0.0.1-alpha.0+dev") if !version.Equals(semver.Version{}) { defaults = append(defaults, pulumi.Version(version.String())) } diff --git a/sdk/go/google/jobs/v3/pulumiEnums.go b/sdk/go/google/jobs/v3/pulumiEnums.go index 505f2ed4b8..8b74231189 100644 --- a/sdk/go/google/jobs/v3/pulumiEnums.go +++ b/sdk/go/google/jobs/v3/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Optional. The employer's company size. @@ -197,12 +196,6 @@ func (in *companySizePtr) ToCompanySizePtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(CompanySizePtrOutput) } -func (in *companySizePtr) ToOutput(ctx context.Context) pulumix.Output[*CompanySize] { - return pulumix.Output[*CompanySize]{ - OutputState: in.ToCompanySizePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Compensation type. Default is CompensationUnit.COMPENSATION_TYPE_UNSPECIFIED. type CompensationEntryType string @@ -392,12 +385,6 @@ func (in *compensationEntryTypePtr) ToCompensationEntryTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(CompensationEntryTypePtrOutput) } -func (in *compensationEntryTypePtr) ToOutput(ctx context.Context) pulumix.Output[*CompensationEntryType] { - return pulumix.Output[*CompensationEntryType]{ - OutputState: in.ToCompensationEntryTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Frequency of the specified amount. Default is CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED. type CompensationEntryUnit string @@ -584,12 +571,6 @@ func (in *compensationEntryUnitPtr) ToCompensationEntryUnitPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(CompensationEntryUnitPtrOutput) } -func (in *compensationEntryUnitPtr) ToOutput(ctx context.Context) pulumix.Output[*CompensationEntryUnit] { - return pulumix.Output[*CompensationEntryUnit]{ - OutputState: in.ToCompensationEntryUnitPtrOutputWithContext(ctx).OutputState, - } -} - type JobDegreeTypesItem string const ( @@ -778,12 +759,6 @@ func (in *jobDegreeTypesItemPtr) ToJobDegreeTypesItemPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(JobDegreeTypesItemPtrOutput) } -func (in *jobDegreeTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*JobDegreeTypesItem] { - return pulumix.Output[*JobDegreeTypesItem]{ - OutputState: in.ToJobDegreeTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // JobDegreeTypesItemArrayInput is an input type that accepts JobDegreeTypesItemArray and JobDegreeTypesItemArrayOutput values. // You can construct a concrete instance of `JobDegreeTypesItemArrayInput` via: // @@ -1023,12 +998,6 @@ func (in *jobEmploymentTypesItemPtr) ToJobEmploymentTypesItemPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(JobEmploymentTypesItemPtrOutput) } -func (in *jobEmploymentTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*JobEmploymentTypesItem] { - return pulumix.Output[*JobEmploymentTypesItem]{ - OutputState: in.ToJobEmploymentTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // JobEmploymentTypesItemArrayInput is an input type that accepts JobEmploymentTypesItemArray and JobEmploymentTypesItemArrayOutput values. // You can construct a concrete instance of `JobEmploymentTypesItemArrayInput` via: // @@ -1271,12 +1240,6 @@ func (in *jobJobBenefitsItemPtr) ToJobJobBenefitsItemPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(JobJobBenefitsItemPtrOutput) } -func (in *jobJobBenefitsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*JobJobBenefitsItem] { - return pulumix.Output[*JobJobBenefitsItem]{ - OutputState: in.ToJobJobBenefitsItemPtrOutputWithContext(ctx).OutputState, - } -} - // JobJobBenefitsItemArrayInput is an input type that accepts JobJobBenefitsItemArray and JobJobBenefitsItemArrayOutput values. // You can construct a concrete instance of `JobJobBenefitsItemArrayInput` via: // @@ -1502,12 +1465,6 @@ func (in *jobJobLevelPtr) ToJobJobLevelPtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(JobJobLevelPtrOutput) } -func (in *jobJobLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*JobJobLevel] { - return pulumix.Output[*JobJobLevel]{ - OutputState: in.ToJobJobLevelPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The job PostingRegion (for example, state, country) throughout which the job is available. If this field is set, a LocationFilter in a search query within the job region finds this job posting if an exact location match isn't specified. If this field is set to PostingRegion.NATION or PostingRegion.ADMINISTRATIVE_AREA, setting job Job.addresses to the same location level as this field is strongly recommended. type JobPostingRegion string @@ -1682,12 +1639,6 @@ func (in *jobPostingRegionPtr) ToJobPostingRegionPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(JobPostingRegionPtrOutput) } -func (in *jobPostingRegionPtr) ToOutput(ctx context.Context) pulumix.Output[*JobPostingRegion] { - return pulumix.Output[*JobPostingRegion]{ - OutputState: in.ToJobPostingRegionPtrOutputWithContext(ctx).OutputState, - } -} - // Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified. type JobVisibility string @@ -1862,12 +1813,6 @@ func (in *jobVisibilityPtr) ToJobVisibilityPtrOutputWithContext(ctx context.Cont return pulumi.ToOutputWithContext(ctx, in).(JobVisibilityPtrOutput) } -func (in *jobVisibilityPtr) ToOutput(ctx context.Context) pulumix.Output[*JobVisibility] { - return pulumix.Output[*JobVisibility]{ - OutputState: in.ToJobVisibilityPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Option for job HTML content sanitization. Applied fields are: * description * applicationInfo.instruction * incentives * qualifications * responsibilities HTML tags in these fields may be stripped if sanitiazation is not disabled. Defaults to HtmlSanitization.SIMPLE_FORMATTING_ONLY. type ProcessingOptionsHtmlSanitization string @@ -2039,12 +1984,6 @@ func (in *processingOptionsHtmlSanitizationPtr) ToProcessingOptionsHtmlSanitizat return pulumi.ToOutputWithContext(ctx, in).(ProcessingOptionsHtmlSanitizationPtrOutput) } -func (in *processingOptionsHtmlSanitizationPtr) ToOutput(ctx context.Context) pulumix.Output[*ProcessingOptionsHtmlSanitization] { - return pulumix.Output[*ProcessingOptionsHtmlSanitization]{ - OutputState: in.ToProcessingOptionsHtmlSanitizationPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*CompanySizeInput)(nil)).Elem(), CompanySize("COMPANY_SIZE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*CompanySizePtrInput)(nil)).Elem(), CompanySize("COMPANY_SIZE_UNSPECIFIED")) diff --git a/sdk/go/google/jobs/v4/pulumiEnums.go b/sdk/go/google/jobs/v4/pulumiEnums.go index b48375fedc..a149b1c392 100644 --- a/sdk/go/google/jobs/v4/pulumiEnums.go +++ b/sdk/go/google/jobs/v4/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The employer's company size. @@ -197,12 +196,6 @@ func (in *companySizePtr) ToCompanySizePtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(CompanySizePtrOutput) } -func (in *companySizePtr) ToOutput(ctx context.Context) pulumix.Output[*CompanySize] { - return pulumix.Output[*CompanySize]{ - OutputState: in.ToCompanySizePtrOutputWithContext(ctx).OutputState, - } -} - // Compensation type. Default is CompensationType.COMPENSATION_TYPE_UNSPECIFIED. type CompensationEntryType string @@ -392,12 +385,6 @@ func (in *compensationEntryTypePtr) ToCompensationEntryTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(CompensationEntryTypePtrOutput) } -func (in *compensationEntryTypePtr) ToOutput(ctx context.Context) pulumix.Output[*CompensationEntryType] { - return pulumix.Output[*CompensationEntryType]{ - OutputState: in.ToCompensationEntryTypePtrOutputWithContext(ctx).OutputState, - } -} - // Frequency of the specified amount. Default is CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED. type CompensationEntryUnit string @@ -584,12 +571,6 @@ func (in *compensationEntryUnitPtr) ToCompensationEntryUnitPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(CompensationEntryUnitPtrOutput) } -func (in *compensationEntryUnitPtr) ToOutput(ctx context.Context) pulumix.Output[*CompensationEntryUnit] { - return pulumix.Output[*CompensationEntryUnit]{ - OutputState: in.ToCompensationEntryUnitPtrOutputWithContext(ctx).OutputState, - } -} - type JobDegreeTypesItem string const ( @@ -778,12 +759,6 @@ func (in *jobDegreeTypesItemPtr) ToJobDegreeTypesItemPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(JobDegreeTypesItemPtrOutput) } -func (in *jobDegreeTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*JobDegreeTypesItem] { - return pulumix.Output[*JobDegreeTypesItem]{ - OutputState: in.ToJobDegreeTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // JobDegreeTypesItemArrayInput is an input type that accepts JobDegreeTypesItemArray and JobDegreeTypesItemArrayOutput values. // You can construct a concrete instance of `JobDegreeTypesItemArrayInput` via: // @@ -1023,12 +998,6 @@ func (in *jobEmploymentTypesItemPtr) ToJobEmploymentTypesItemPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(JobEmploymentTypesItemPtrOutput) } -func (in *jobEmploymentTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*JobEmploymentTypesItem] { - return pulumix.Output[*JobEmploymentTypesItem]{ - OutputState: in.ToJobEmploymentTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // JobEmploymentTypesItemArrayInput is an input type that accepts JobEmploymentTypesItemArray and JobEmploymentTypesItemArrayOutput values. // You can construct a concrete instance of `JobEmploymentTypesItemArrayInput` via: // @@ -1271,12 +1240,6 @@ func (in *jobJobBenefitsItemPtr) ToJobJobBenefitsItemPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(JobJobBenefitsItemPtrOutput) } -func (in *jobJobBenefitsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*JobJobBenefitsItem] { - return pulumix.Output[*JobJobBenefitsItem]{ - OutputState: in.ToJobJobBenefitsItemPtrOutputWithContext(ctx).OutputState, - } -} - // JobJobBenefitsItemArrayInput is an input type that accepts JobJobBenefitsItemArray and JobJobBenefitsItemArrayOutput values. // You can construct a concrete instance of `JobJobBenefitsItemArrayInput` via: // @@ -1502,12 +1465,6 @@ func (in *jobJobLevelPtr) ToJobJobLevelPtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(JobJobLevelPtrOutput) } -func (in *jobJobLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*JobJobLevel] { - return pulumix.Output[*JobJobLevel]{ - OutputState: in.ToJobJobLevelPtrOutputWithContext(ctx).OutputState, - } -} - // The job PostingRegion (for example, state, country) throughout which the job is available. If this field is set, a LocationFilter in a search query within the job region finds this job posting if an exact location match isn't specified. If this field is set to PostingRegion.NATION or PostingRegion.ADMINISTRATIVE_AREA, setting job Job.addresses to the same location level as this field is strongly recommended. type JobPostingRegion string @@ -1682,12 +1639,6 @@ func (in *jobPostingRegionPtr) ToJobPostingRegionPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(JobPostingRegionPtrOutput) } -func (in *jobPostingRegionPtr) ToOutput(ctx context.Context) pulumix.Output[*JobPostingRegion] { - return pulumix.Output[*JobPostingRegion]{ - OutputState: in.ToJobPostingRegionPtrOutputWithContext(ctx).OutputState, - } -} - // Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified. type JobVisibility string @@ -1862,12 +1813,6 @@ func (in *jobVisibilityPtr) ToJobVisibilityPtrOutputWithContext(ctx context.Cont return pulumi.ToOutputWithContext(ctx, in).(JobVisibilityPtrOutput) } -func (in *jobVisibilityPtr) ToOutput(ctx context.Context) pulumix.Output[*JobVisibility] { - return pulumix.Output[*JobVisibility]{ - OutputState: in.ToJobVisibilityPtrOutputWithContext(ctx).OutputState, - } -} - // Option for job HTML content sanitization. Applied fields are: * description * applicationInfo.instruction * incentives * qualifications * responsibilities HTML tags in these fields may be stripped if sanitiazation isn't disabled. Defaults to HtmlSanitization.SIMPLE_FORMATTING_ONLY. type ProcessingOptionsHtmlSanitization string @@ -2039,12 +1984,6 @@ func (in *processingOptionsHtmlSanitizationPtr) ToProcessingOptionsHtmlSanitizat return pulumi.ToOutputWithContext(ctx, in).(ProcessingOptionsHtmlSanitizationPtrOutput) } -func (in *processingOptionsHtmlSanitizationPtr) ToOutput(ctx context.Context) pulumix.Output[*ProcessingOptionsHtmlSanitization] { - return pulumix.Output[*ProcessingOptionsHtmlSanitization]{ - OutputState: in.ToProcessingOptionsHtmlSanitizationPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*CompanySizeInput)(nil)).Elem(), CompanySize("COMPANY_SIZE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*CompanySizePtrInput)(nil)).Elem(), CompanySize("COMPANY_SIZE_UNSPECIFIED")) diff --git a/sdk/go/google/logging/v2/pulumiEnums.go b/sdk/go/google/logging/v2/pulumiEnums.go index b45bccdbb1..706ae41950 100644 --- a/sdk/go/google/logging/v2/pulumiEnums.go +++ b/sdk/go/google/logging/v2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Deprecated. This field is unused. @@ -182,12 +181,6 @@ func (in *billingAccountSinkOutputVersionFormatPtr) ToBillingAccountSinkOutputVe return pulumi.ToOutputWithContext(ctx, in).(BillingAccountSinkOutputVersionFormatPtrOutput) } -func (in *billingAccountSinkOutputVersionFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*BillingAccountSinkOutputVersionFormat] { - return pulumix.Output[*BillingAccountSinkOutputVersionFormat]{ - OutputState: in.ToBillingAccountSinkOutputVersionFormatPtrOutputWithContext(ctx).OutputState, - } -} - // Deprecated. This field is unused. type FolderSinkOutputVersionFormat string @@ -359,12 +352,6 @@ func (in *folderSinkOutputVersionFormatPtr) ToFolderSinkOutputVersionFormatPtrOu return pulumi.ToOutputWithContext(ctx, in).(FolderSinkOutputVersionFormatPtrOutput) } -func (in *folderSinkOutputVersionFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*FolderSinkOutputVersionFormat] { - return pulumix.Output[*FolderSinkOutputVersionFormat]{ - OutputState: in.ToFolderSinkOutputVersionFormatPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of data in this index. type IndexConfigType string @@ -536,12 +523,6 @@ func (in *indexConfigTypePtr) ToIndexConfigTypePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(IndexConfigTypePtrOutput) } -func (in *indexConfigTypePtr) ToOutput(ctx context.Context) pulumix.Output[*IndexConfigType] { - return pulumix.Output[*IndexConfigType]{ - OutputState: in.ToIndexConfigTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of data that can be assigned to the label. type LabelDescriptorValueType string @@ -713,12 +694,6 @@ func (in *labelDescriptorValueTypePtr) ToLabelDescriptorValueTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(LabelDescriptorValueTypePtrOutput) } -func (in *labelDescriptorValueTypePtr) ToOutput(ctx context.Context) pulumix.Output[*LabelDescriptorValueType] { - return pulumix.Output[*LabelDescriptorValueType]{ - OutputState: in.ToLabelDescriptorValueTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The launch stage of the metric definition. type MetricDescriptorLaunchStage string @@ -905,12 +880,6 @@ func (in *metricDescriptorLaunchStagePtr) ToMetricDescriptorLaunchStagePtrOutput return pulumi.ToOutputWithContext(ctx, in).(MetricDescriptorLaunchStagePtrOutput) } -func (in *metricDescriptorLaunchStagePtr) ToOutput(ctx context.Context) pulumix.Output[*MetricDescriptorLaunchStage] { - return pulumix.Output[*MetricDescriptorLaunchStage]{ - OutputState: in.ToMetricDescriptorLaunchStagePtrOutputWithContext(ctx).OutputState, - } -} - // Deprecated. Must use the MetricDescriptor.launch_stage instead. type MetricDescriptorMetadataLaunchStage string @@ -1097,12 +1066,6 @@ func (in *metricDescriptorMetadataLaunchStagePtr) ToMetricDescriptorMetadataLaun return pulumi.ToOutputWithContext(ctx, in).(MetricDescriptorMetadataLaunchStagePtrOutput) } -func (in *metricDescriptorMetadataLaunchStagePtr) ToOutput(ctx context.Context) pulumix.Output[*MetricDescriptorMetadataLaunchStage] { - return pulumix.Output[*MetricDescriptorMetadataLaunchStage]{ - OutputState: in.ToMetricDescriptorMetadataLaunchStagePtrOutputWithContext(ctx).OutputState, - } -} - // Whether the metric records instantaneous values, changes to a value, etc. Some combinations of metric_kind and value_type might not be supported. type MetricDescriptorMetricKind string @@ -1277,12 +1240,6 @@ func (in *metricDescriptorMetricKindPtr) ToMetricDescriptorMetricKindPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(MetricDescriptorMetricKindPtrOutput) } -func (in *metricDescriptorMetricKindPtr) ToOutput(ctx context.Context) pulumix.Output[*MetricDescriptorMetricKind] { - return pulumix.Output[*MetricDescriptorMetricKind]{ - OutputState: in.ToMetricDescriptorMetricKindPtrOutputWithContext(ctx).OutputState, - } -} - // Whether the measurement is an integer, a floating-point number, etc. Some combinations of metric_kind and value_type might not be supported. type MetricDescriptorValueType string @@ -1466,12 +1423,6 @@ func (in *metricDescriptorValueTypePtr) ToMetricDescriptorValueTypePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(MetricDescriptorValueTypePtrOutput) } -func (in *metricDescriptorValueTypePtr) ToOutput(ctx context.Context) pulumix.Output[*MetricDescriptorValueType] { - return pulumix.Output[*MetricDescriptorValueType]{ - OutputState: in.ToMetricDescriptorValueTypePtrOutputWithContext(ctx).OutputState, - } -} - // Deprecated. The API version that created or updated this metric. The v2 format is used by default and cannot be changed. type MetricVersion string @@ -1640,12 +1591,6 @@ func (in *metricVersionPtr) ToMetricVersionPtrOutputWithContext(ctx context.Cont return pulumi.ToOutputWithContext(ctx, in).(MetricVersionPtrOutput) } -func (in *metricVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*MetricVersion] { - return pulumix.Output[*MetricVersion]{ - OutputState: in.ToMetricVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Deprecated. This field is unused. type OrganizationSinkOutputVersionFormat string @@ -1817,12 +1762,6 @@ func (in *organizationSinkOutputVersionFormatPtr) ToOrganizationSinkOutputVersio return pulumi.ToOutputWithContext(ctx, in).(OrganizationSinkOutputVersionFormatPtrOutput) } -func (in *organizationSinkOutputVersionFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*OrganizationSinkOutputVersionFormat] { - return pulumix.Output[*OrganizationSinkOutputVersionFormat]{ - OutputState: in.ToOrganizationSinkOutputVersionFormatPtrOutputWithContext(ctx).OutputState, - } -} - // Deprecated. This field is unused. type SinkOutputVersionFormat string @@ -1994,12 +1933,6 @@ func (in *sinkOutputVersionFormatPtr) ToSinkOutputVersionFormatPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(SinkOutputVersionFormatPtrOutput) } -func (in *sinkOutputVersionFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*SinkOutputVersionFormat] { - return pulumix.Output[*SinkOutputVersionFormat]{ - OutputState: in.ToSinkOutputVersionFormatPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*BillingAccountSinkOutputVersionFormatInput)(nil)).Elem(), BillingAccountSinkOutputVersionFormat("VERSION_FORMAT_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*BillingAccountSinkOutputVersionFormatPtrInput)(nil)).Elem(), BillingAccountSinkOutputVersionFormat("VERSION_FORMAT_UNSPECIFIED")) diff --git a/sdk/go/google/looker/v1/pulumiEnums.go b/sdk/go/google/looker/v1/pulumiEnums.go index fb64de0b02..bfc6155530 100644 --- a/sdk/go/google/looker/v1/pulumiEnums.go +++ b/sdk/go/google/looker/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Domain state. type CustomDomainState string @@ -374,12 +367,6 @@ func (in *customDomainStatePtr) ToCustomDomainStatePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(CustomDomainStatePtrOutput) } -func (in *customDomainStatePtr) ToOutput(ctx context.Context) pulumix.Output[*CustomDomainState] { - return pulumix.Output[*CustomDomainState]{ - OutputState: in.ToCustomDomainStatePtrOutputWithContext(ctx).OutputState, - } -} - // Platform edition. type InstancePlatformEdition string @@ -560,12 +547,6 @@ func (in *instancePlatformEditionPtr) ToInstancePlatformEditionPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(InstancePlatformEditionPtrOutput) } -func (in *instancePlatformEditionPtr) ToOutput(ctx context.Context) pulumix.Output[*InstancePlatformEdition] { - return pulumix.Output[*InstancePlatformEdition]{ - OutputState: in.ToInstancePlatformEditionPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Day of the week for this MaintenanceWindow (in UTC). type MaintenanceWindowDayOfWeek string @@ -752,12 +733,6 @@ func (in *maintenanceWindowDayOfWeekPtr) ToMaintenanceWindowDayOfWeekPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(MaintenanceWindowDayOfWeekPtrOutput) } -func (in *maintenanceWindowDayOfWeekPtr) ToOutput(ctx context.Context) pulumix.Output[*MaintenanceWindowDayOfWeek] { - return pulumix.Output[*MaintenanceWindowDayOfWeek]{ - OutputState: in.ToMaintenanceWindowDayOfWeekPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/memcache/v1/pulumiEnums.go b/sdk/go/google/memcache/v1/pulumiEnums.go index 8f2f5fbece..8636ece412 100644 --- a/sdk/go/google/memcache/v1/pulumiEnums.go +++ b/sdk/go/google/memcache/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The major version of Memcached software. If not provided, latest supported version will be used. Currently the latest supported major version is `MEMCACHE_1_5`. The minor version will be automatically determined by our system based on the latest supported minor version. @@ -182,12 +181,6 @@ func (in *instanceMemcacheVersionPtr) ToInstanceMemcacheVersionPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(InstanceMemcacheVersionPtrOutput) } -func (in *instanceMemcacheVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceMemcacheVersion] { - return pulumix.Output[*InstanceMemcacheVersion]{ - OutputState: in.ToInstanceMemcacheVersionPtrOutputWithContext(ctx).OutputState, - } -} - // A code that correspond to one type of user-facing message. type InstanceMessageCode string @@ -356,12 +349,6 @@ func (in *instanceMessageCodePtr) ToInstanceMessageCodePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(InstanceMessageCodePtrOutput) } -func (in *instanceMessageCodePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceMessageCode] { - return pulumix.Output[*InstanceMessageCode]{ - OutputState: in.ToInstanceMessageCodePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Allows to define schedule that runs specified day of the week. type WeeklyMaintenanceWindowDay string @@ -548,12 +535,6 @@ func (in *weeklyMaintenanceWindowDayPtr) ToWeeklyMaintenanceWindowDayPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(WeeklyMaintenanceWindowDayPtrOutput) } -func (in *weeklyMaintenanceWindowDayPtr) ToOutput(ctx context.Context) pulumix.Output[*WeeklyMaintenanceWindowDay] { - return pulumix.Output[*WeeklyMaintenanceWindowDay]{ - OutputState: in.ToWeeklyMaintenanceWindowDayPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*InstanceMemcacheVersionInput)(nil)).Elem(), InstanceMemcacheVersion("MEMCACHE_VERSION_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*InstanceMemcacheVersionPtrInput)(nil)).Elem(), InstanceMemcacheVersion("MEMCACHE_VERSION_UNSPECIFIED")) diff --git a/sdk/go/google/memcache/v1beta2/pulumiEnums.go b/sdk/go/google/memcache/v1beta2/pulumiEnums.go index c1a3d5f81e..f84cd8e49e 100644 --- a/sdk/go/google/memcache/v1beta2/pulumiEnums.go +++ b/sdk/go/google/memcache/v1beta2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The major version of Memcached software. If not provided, latest supported version will be used. Currently the latest supported major version is `MEMCACHE_1_5`. The minor version will be automatically determined by our system based on the latest supported minor version. @@ -182,12 +181,6 @@ func (in *instanceMemcacheVersionPtr) ToInstanceMemcacheVersionPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(InstanceMemcacheVersionPtrOutput) } -func (in *instanceMemcacheVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceMemcacheVersion] { - return pulumix.Output[*InstanceMemcacheVersion]{ - OutputState: in.ToInstanceMemcacheVersionPtrOutputWithContext(ctx).OutputState, - } -} - // A code that correspond to one type of user-facing message. type InstanceMessageCode string @@ -356,12 +349,6 @@ func (in *instanceMessageCodePtr) ToInstanceMessageCodePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(InstanceMessageCodePtrOutput) } -func (in *instanceMessageCodePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceMessageCode] { - return pulumix.Output[*InstanceMessageCode]{ - OutputState: in.ToInstanceMessageCodePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Allows to define schedule that runs specified day of the week. type WeeklyMaintenanceWindowDay string @@ -548,12 +535,6 @@ func (in *weeklyMaintenanceWindowDayPtr) ToWeeklyMaintenanceWindowDayPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(WeeklyMaintenanceWindowDayPtrOutput) } -func (in *weeklyMaintenanceWindowDayPtr) ToOutput(ctx context.Context) pulumix.Output[*WeeklyMaintenanceWindowDay] { - return pulumix.Output[*WeeklyMaintenanceWindowDay]{ - OutputState: in.ToWeeklyMaintenanceWindowDayPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*InstanceMemcacheVersionInput)(nil)).Elem(), InstanceMemcacheVersion("MEMCACHE_VERSION_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*InstanceMemcacheVersionPtrInput)(nil)).Elem(), InstanceMemcacheVersion("MEMCACHE_VERSION_UNSPECIFIED")) diff --git a/sdk/go/google/metastore/v1/pulumiEnums.go b/sdk/go/google/metastore/v1/pulumiEnums.go index 4cddf4024f..1e9da745ea 100644 --- a/sdk/go/google/metastore/v1/pulumiEnums.go +++ b/sdk/go/google/metastore/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of the database. type DatabaseDumpDatabaseType string @@ -359,12 +352,6 @@ func (in *databaseDumpDatabaseTypePtr) ToDatabaseDumpDatabaseTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(DatabaseDumpDatabaseTypePtrOutput) } -func (in *databaseDumpDatabaseTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DatabaseDumpDatabaseType] { - return pulumix.Output[*DatabaseDumpDatabaseType]{ - OutputState: in.ToDatabaseDumpDatabaseTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The type of the database dump. If unspecified, defaults to MYSQL. type DatabaseDumpType string @@ -536,12 +523,6 @@ func (in *databaseDumpTypePtr) ToDatabaseDumpTypePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(DatabaseDumpTypePtrOutput) } -func (in *databaseDumpTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DatabaseDumpType] { - return pulumix.Output[*DatabaseDumpType]{ - OutputState: in.ToDatabaseDumpTypePtrOutputWithContext(ctx).OutputState, - } -} - // The protocol to use for the metastore service endpoint. If unspecified, defaults to THRIFT. type HiveMetastoreConfigEndpointProtocol string @@ -713,12 +694,6 @@ func (in *hiveMetastoreConfigEndpointProtocolPtr) ToHiveMetastoreConfigEndpointP return pulumi.ToOutputWithContext(ctx, in).(HiveMetastoreConfigEndpointProtocolPtrOutput) } -func (in *hiveMetastoreConfigEndpointProtocolPtr) ToOutput(ctx context.Context) pulumix.Output[*HiveMetastoreConfigEndpointProtocol] { - return pulumix.Output[*HiveMetastoreConfigEndpointProtocol]{ - OutputState: in.ToHiveMetastoreConfigEndpointProtocolPtrOutputWithContext(ctx).OutputState, - } -} - // The day of week, when the window starts. type MaintenanceWindowDayOfWeek string @@ -905,12 +880,6 @@ func (in *maintenanceWindowDayOfWeekPtr) ToMaintenanceWindowDayOfWeekPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(MaintenanceWindowDayOfWeekPtrOutput) } -func (in *maintenanceWindowDayOfWeekPtr) ToOutput(ctx context.Context) pulumix.Output[*MaintenanceWindowDayOfWeek] { - return pulumix.Output[*MaintenanceWindowDayOfWeek]{ - OutputState: in.ToMaintenanceWindowDayOfWeekPtrOutputWithContext(ctx).OutputState, - } -} - // An enum of readable instance sizes, with each instance size mapping to a float value (e.g. InstanceSize.EXTRA_SMALL = scaling_factor(0.1)) type ScalingConfigInstanceSize string @@ -1091,12 +1060,6 @@ func (in *scalingConfigInstanceSizePtr) ToScalingConfigInstanceSizePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(ScalingConfigInstanceSizePtrOutput) } -func (in *scalingConfigInstanceSizePtr) ToOutput(ctx context.Context) pulumix.Output[*ScalingConfigInstanceSize] { - return pulumix.Output[*ScalingConfigInstanceSize]{ - OutputState: in.ToScalingConfigInstanceSizePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The database type that the Metastore service stores its data. type ServiceDatabaseType string @@ -1268,12 +1231,6 @@ func (in *serviceDatabaseTypePtr) ToServiceDatabaseTypePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(ServiceDatabaseTypePtrOutput) } -func (in *serviceDatabaseTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceDatabaseType] { - return pulumix.Output[*ServiceDatabaseType]{ - OutputState: in.ToServiceDatabaseTypePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The release channel of the service. If unspecified, defaults to STABLE. type ServiceReleaseChannel string @@ -1445,12 +1402,6 @@ func (in *serviceReleaseChannelPtr) ToServiceReleaseChannelPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ServiceReleaseChannelPtrOutput) } -func (in *serviceReleaseChannelPtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceReleaseChannel] { - return pulumix.Output[*ServiceReleaseChannel]{ - OutputState: in.ToServiceReleaseChannelPtrOutputWithContext(ctx).OutputState, - } -} - // The tier of the service. type ServiceTier string @@ -1622,12 +1573,6 @@ func (in *serviceTierPtr) ToServiceTierPtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(ServiceTierPtrOutput) } -func (in *serviceTierPtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceTier] { - return pulumix.Output[*ServiceTier]{ - OutputState: in.ToServiceTierPtrOutputWithContext(ctx).OutputState, - } -} - // The output format of the Dataproc Metastore service's logs. type TelemetryConfigLogFormat string @@ -1799,12 +1744,6 @@ func (in *telemetryConfigLogFormatPtr) ToTelemetryConfigLogFormatPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(TelemetryConfigLogFormatPtrOutput) } -func (in *telemetryConfigLogFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*TelemetryConfigLogFormat] { - return pulumix.Output[*TelemetryConfigLogFormat]{ - OutputState: in.ToTelemetryConfigLogFormatPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/metastore/v1alpha/pulumiEnums.go b/sdk/go/google/metastore/v1alpha/pulumiEnums.go index 72ffd5d7bd..88a628611c 100644 --- a/sdk/go/google/metastore/v1alpha/pulumiEnums.go +++ b/sdk/go/google/metastore/v1alpha/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of the database. type DatabaseDumpDatabaseType string @@ -359,12 +352,6 @@ func (in *databaseDumpDatabaseTypePtr) ToDatabaseDumpDatabaseTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(DatabaseDumpDatabaseTypePtrOutput) } -func (in *databaseDumpDatabaseTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DatabaseDumpDatabaseType] { - return pulumix.Output[*DatabaseDumpDatabaseType]{ - OutputState: in.ToDatabaseDumpDatabaseTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The type of the database dump. If unspecified, defaults to MYSQL. type DatabaseDumpType string @@ -536,12 +523,6 @@ func (in *databaseDumpTypePtr) ToDatabaseDumpTypePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(DatabaseDumpTypePtrOutput) } -func (in *databaseDumpTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DatabaseDumpType] { - return pulumix.Output[*DatabaseDumpType]{ - OutputState: in.ToDatabaseDumpTypePtrOutputWithContext(ctx).OutputState, - } -} - // The protocol to use for the metastore service endpoint. If unspecified, defaults to THRIFT. type HiveMetastoreConfigEndpointProtocol string @@ -713,12 +694,6 @@ func (in *hiveMetastoreConfigEndpointProtocolPtr) ToHiveMetastoreConfigEndpointP return pulumi.ToOutputWithContext(ctx, in).(HiveMetastoreConfigEndpointProtocolPtrOutput) } -func (in *hiveMetastoreConfigEndpointProtocolPtr) ToOutput(ctx context.Context) pulumix.Output[*HiveMetastoreConfigEndpointProtocol] { - return pulumix.Output[*HiveMetastoreConfigEndpointProtocol]{ - OutputState: in.ToHiveMetastoreConfigEndpointProtocolPtrOutputWithContext(ctx).OutputState, - } -} - // The day of week, when the window starts. type MaintenanceWindowDayOfWeek string @@ -905,12 +880,6 @@ func (in *maintenanceWindowDayOfWeekPtr) ToMaintenanceWindowDayOfWeekPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(MaintenanceWindowDayOfWeekPtrOutput) } -func (in *maintenanceWindowDayOfWeekPtr) ToOutput(ctx context.Context) pulumix.Output[*MaintenanceWindowDayOfWeek] { - return pulumix.Output[*MaintenanceWindowDayOfWeek]{ - OutputState: in.ToMaintenanceWindowDayOfWeekPtrOutputWithContext(ctx).OutputState, - } -} - // An enum of readable instance sizes, with each instance size mapping to a float value (e.g. InstanceSize.EXTRA_SMALL = scaling_factor(0.1)) type ScalingConfigInstanceSize string @@ -1091,12 +1060,6 @@ func (in *scalingConfigInstanceSizePtr) ToScalingConfigInstanceSizePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(ScalingConfigInstanceSizePtrOutput) } -func (in *scalingConfigInstanceSizePtr) ToOutput(ctx context.Context) pulumix.Output[*ScalingConfigInstanceSize] { - return pulumix.Output[*ScalingConfigInstanceSize]{ - OutputState: in.ToScalingConfigInstanceSizePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The database type that the Metastore service stores its data. type ServiceDatabaseType string @@ -1268,12 +1231,6 @@ func (in *serviceDatabaseTypePtr) ToServiceDatabaseTypePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(ServiceDatabaseTypePtrOutput) } -func (in *serviceDatabaseTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceDatabaseType] { - return pulumix.Output[*ServiceDatabaseType]{ - OutputState: in.ToServiceDatabaseTypePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The release channel of the service. If unspecified, defaults to STABLE. type ServiceReleaseChannel string @@ -1445,12 +1402,6 @@ func (in *serviceReleaseChannelPtr) ToServiceReleaseChannelPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ServiceReleaseChannelPtrOutput) } -func (in *serviceReleaseChannelPtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceReleaseChannel] { - return pulumix.Output[*ServiceReleaseChannel]{ - OutputState: in.ToServiceReleaseChannelPtrOutputWithContext(ctx).OutputState, - } -} - // The tier of the service. type ServiceTier string @@ -1622,12 +1573,6 @@ func (in *serviceTierPtr) ToServiceTierPtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(ServiceTierPtrOutput) } -func (in *serviceTierPtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceTier] { - return pulumix.Output[*ServiceTier]{ - OutputState: in.ToServiceTierPtrOutputWithContext(ctx).OutputState, - } -} - // The output format of the Dataproc Metastore service's logs. type TelemetryConfigLogFormat string @@ -1799,12 +1744,6 @@ func (in *telemetryConfigLogFormatPtr) ToTelemetryConfigLogFormatPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(TelemetryConfigLogFormatPtrOutput) } -func (in *telemetryConfigLogFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*TelemetryConfigLogFormat] { - return pulumix.Output[*TelemetryConfigLogFormat]{ - OutputState: in.ToTelemetryConfigLogFormatPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/metastore/v1beta/pulumiEnums.go b/sdk/go/google/metastore/v1beta/pulumiEnums.go index 49f95cbedf..e955eed504 100644 --- a/sdk/go/google/metastore/v1beta/pulumiEnums.go +++ b/sdk/go/google/metastore/v1beta/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of the database. type DatabaseDumpDatabaseType string @@ -359,12 +352,6 @@ func (in *databaseDumpDatabaseTypePtr) ToDatabaseDumpDatabaseTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(DatabaseDumpDatabaseTypePtrOutput) } -func (in *databaseDumpDatabaseTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DatabaseDumpDatabaseType] { - return pulumix.Output[*DatabaseDumpDatabaseType]{ - OutputState: in.ToDatabaseDumpDatabaseTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The type of the database dump. If unspecified, defaults to MYSQL. type DatabaseDumpType string @@ -536,12 +523,6 @@ func (in *databaseDumpTypePtr) ToDatabaseDumpTypePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(DatabaseDumpTypePtrOutput) } -func (in *databaseDumpTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DatabaseDumpType] { - return pulumix.Output[*DatabaseDumpType]{ - OutputState: in.ToDatabaseDumpTypePtrOutputWithContext(ctx).OutputState, - } -} - // The protocol to use for the metastore service endpoint. If unspecified, defaults to THRIFT. type HiveMetastoreConfigEndpointProtocol string @@ -713,12 +694,6 @@ func (in *hiveMetastoreConfigEndpointProtocolPtr) ToHiveMetastoreConfigEndpointP return pulumi.ToOutputWithContext(ctx, in).(HiveMetastoreConfigEndpointProtocolPtrOutput) } -func (in *hiveMetastoreConfigEndpointProtocolPtr) ToOutput(ctx context.Context) pulumix.Output[*HiveMetastoreConfigEndpointProtocol] { - return pulumix.Output[*HiveMetastoreConfigEndpointProtocol]{ - OutputState: in.ToHiveMetastoreConfigEndpointProtocolPtrOutputWithContext(ctx).OutputState, - } -} - // The day of week, when the window starts. type MaintenanceWindowDayOfWeek string @@ -905,12 +880,6 @@ func (in *maintenanceWindowDayOfWeekPtr) ToMaintenanceWindowDayOfWeekPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(MaintenanceWindowDayOfWeekPtrOutput) } -func (in *maintenanceWindowDayOfWeekPtr) ToOutput(ctx context.Context) pulumix.Output[*MaintenanceWindowDayOfWeek] { - return pulumix.Output[*MaintenanceWindowDayOfWeek]{ - OutputState: in.ToMaintenanceWindowDayOfWeekPtrOutputWithContext(ctx).OutputState, - } -} - // An enum of readable instance sizes, with each instance size mapping to a float value (e.g. InstanceSize.EXTRA_SMALL = scaling_factor(0.1)) type ScalingConfigInstanceSize string @@ -1091,12 +1060,6 @@ func (in *scalingConfigInstanceSizePtr) ToScalingConfigInstanceSizePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(ScalingConfigInstanceSizePtrOutput) } -func (in *scalingConfigInstanceSizePtr) ToOutput(ctx context.Context) pulumix.Output[*ScalingConfigInstanceSize] { - return pulumix.Output[*ScalingConfigInstanceSize]{ - OutputState: in.ToScalingConfigInstanceSizePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The database type that the Metastore service stores its data. type ServiceDatabaseType string @@ -1268,12 +1231,6 @@ func (in *serviceDatabaseTypePtr) ToServiceDatabaseTypePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(ServiceDatabaseTypePtrOutput) } -func (in *serviceDatabaseTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceDatabaseType] { - return pulumix.Output[*ServiceDatabaseType]{ - OutputState: in.ToServiceDatabaseTypePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The release channel of the service. If unspecified, defaults to STABLE. type ServiceReleaseChannel string @@ -1445,12 +1402,6 @@ func (in *serviceReleaseChannelPtr) ToServiceReleaseChannelPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ServiceReleaseChannelPtrOutput) } -func (in *serviceReleaseChannelPtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceReleaseChannel] { - return pulumix.Output[*ServiceReleaseChannel]{ - OutputState: in.ToServiceReleaseChannelPtrOutputWithContext(ctx).OutputState, - } -} - // The tier of the service. type ServiceTier string @@ -1622,12 +1573,6 @@ func (in *serviceTierPtr) ToServiceTierPtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(ServiceTierPtrOutput) } -func (in *serviceTierPtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceTier] { - return pulumix.Output[*ServiceTier]{ - OutputState: in.ToServiceTierPtrOutputWithContext(ctx).OutputState, - } -} - // The output format of the Dataproc Metastore service's logs. type TelemetryConfigLogFormat string @@ -1799,12 +1744,6 @@ func (in *telemetryConfigLogFormatPtr) ToTelemetryConfigLogFormatPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(TelemetryConfigLogFormatPtrOutput) } -func (in *telemetryConfigLogFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*TelemetryConfigLogFormat] { - return pulumix.Output[*TelemetryConfigLogFormat]{ - OutputState: in.ToTelemetryConfigLogFormatPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/migrationcenter/v1/pulumiEnums.go b/sdk/go/google/migrationcenter/v1/pulumiEnums.go index 839844e759..0cab7ed802 100644 --- a/sdk/go/google/migrationcenter/v1/pulumiEnums.go +++ b/sdk/go/google/migrationcenter/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // License type to consider when calculating costs for virtual machine insights and recommendations. If unspecified, costs are calculated based on the default licensing plan. @@ -182,12 +181,6 @@ func (in *computeEnginePreferencesLicenseTypePtr) ToComputeEnginePreferencesLice return pulumi.ToOutputWithContext(ctx, in).(ComputeEnginePreferencesLicenseTypePtrOutput) } -func (in *computeEnginePreferencesLicenseTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ComputeEnginePreferencesLicenseType] { - return pulumix.Output[*ComputeEnginePreferencesLicenseType]{ - OutputState: in.ToComputeEnginePreferencesLicenseTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The payload format. type ImportDataFileFormat string @@ -368,12 +361,6 @@ func (in *importDataFileFormatPtr) ToImportDataFileFormatPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(ImportDataFileFormatPtrOutput) } -func (in *importDataFileFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*ImportDataFileFormat] { - return pulumix.Output[*ImportDataFileFormat]{ - OutputState: in.ToImportDataFileFormatPtrOutputWithContext(ctx).OutputState, - } -} - // Report creation state. type ReportStateEnum string @@ -548,12 +535,6 @@ func (in *reportStateEnumPtr) ToReportStateEnumPtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(ReportStateEnumPtrOutput) } -func (in *reportStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*ReportStateEnum] { - return pulumix.Output[*ReportStateEnum]{ - OutputState: in.ToReportStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // Report type. type ReportType string @@ -722,12 +703,6 @@ func (in *reportTypePtr) ToReportTypePtrOutputWithContext(ctx context.Context) R return pulumi.ToOutputWithContext(ctx, in).(ReportTypePtrOutput) } -func (in *reportTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ReportType] { - return pulumix.Output[*ReportType]{ - OutputState: in.ToReportTypePtrOutputWithContext(ctx).OutputState, - } -} - // Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with. type SoleTenancyPreferencesCommitmentPlan string @@ -902,12 +877,6 @@ func (in *soleTenancyPreferencesCommitmentPlanPtr) ToSoleTenancyPreferencesCommi return pulumi.ToOutputWithContext(ctx, in).(SoleTenancyPreferencesCommitmentPlanPtrOutput) } -func (in *soleTenancyPreferencesCommitmentPlanPtr) ToOutput(ctx context.Context) pulumix.Output[*SoleTenancyPreferencesCommitmentPlan] { - return pulumix.Output[*SoleTenancyPreferencesCommitmentPlan]{ - OutputState: in.ToSoleTenancyPreferencesCommitmentPlanPtrOutputWithContext(ctx).OutputState, - } -} - // Sole Tenancy nodes maintenance policy. type SoleTenancyPreferencesHostMaintenancePolicy string @@ -1082,12 +1051,6 @@ func (in *soleTenancyPreferencesHostMaintenancePolicyPtr) ToSoleTenancyPreferenc return pulumi.ToOutputWithContext(ctx, in).(SoleTenancyPreferencesHostMaintenancePolicyPtrOutput) } -func (in *soleTenancyPreferencesHostMaintenancePolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*SoleTenancyPreferencesHostMaintenancePolicy] { - return pulumix.Output[*SoleTenancyPreferencesHostMaintenancePolicy]{ - OutputState: in.ToSoleTenancyPreferencesHostMaintenancePolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Data source type. type SourceType string @@ -1265,12 +1228,6 @@ func (in *sourceTypePtr) ToSourceTypePtrOutputWithContext(ctx context.Context) S return pulumi.ToOutputWithContext(ctx, in).(SourceTypePtrOutput) } -func (in *sourceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SourceType] { - return pulumix.Output[*SourceType]{ - OutputState: in.ToSourceTypePtrOutputWithContext(ctx).OutputState, - } -} - // Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with. type VirtualMachinePreferencesCommitmentPlan string @@ -1445,12 +1402,6 @@ func (in *virtualMachinePreferencesCommitmentPlanPtr) ToVirtualMachinePreference return pulumi.ToOutputWithContext(ctx, in).(VirtualMachinePreferencesCommitmentPlanPtrOutput) } -func (in *virtualMachinePreferencesCommitmentPlanPtr) ToOutput(ctx context.Context) pulumix.Output[*VirtualMachinePreferencesCommitmentPlan] { - return pulumix.Output[*VirtualMachinePreferencesCommitmentPlan]{ - OutputState: in.ToVirtualMachinePreferencesCommitmentPlanPtrOutputWithContext(ctx).OutputState, - } -} - // Sizing optimization strategy specifies the preferred strategy used when extrapolating usage data to calculate insights and recommendations for a virtual machine. If you are unsure which value to set, a moderate sizing optimization strategy is often a good value to start with. type VirtualMachinePreferencesSizingOptimizationStrategy string @@ -1625,12 +1576,6 @@ func (in *virtualMachinePreferencesSizingOptimizationStrategyPtr) ToVirtualMachi return pulumi.ToOutputWithContext(ctx, in).(VirtualMachinePreferencesSizingOptimizationStrategyPtrOutput) } -func (in *virtualMachinePreferencesSizingOptimizationStrategyPtr) ToOutput(ctx context.Context) pulumix.Output[*VirtualMachinePreferencesSizingOptimizationStrategy] { - return pulumix.Output[*VirtualMachinePreferencesSizingOptimizationStrategy]{ - OutputState: in.ToVirtualMachinePreferencesSizingOptimizationStrategyPtrOutputWithContext(ctx).OutputState, - } -} - // Target product for assets using this preference set. Specify either target product or business goal, but not both. type VirtualMachinePreferencesTargetProduct string @@ -1805,12 +1750,6 @@ func (in *virtualMachinePreferencesTargetProductPtr) ToVirtualMachinePreferences return pulumi.ToOutputWithContext(ctx, in).(VirtualMachinePreferencesTargetProductPtrOutput) } -func (in *virtualMachinePreferencesTargetProductPtr) ToOutput(ctx context.Context) pulumix.Output[*VirtualMachinePreferencesTargetProduct] { - return pulumix.Output[*VirtualMachinePreferencesTargetProduct]{ - OutputState: in.ToVirtualMachinePreferencesTargetProductPtrOutputWithContext(ctx).OutputState, - } -} - // Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with. type VmwareEnginePreferencesCommitmentPlan string @@ -1991,12 +1930,6 @@ func (in *vmwareEnginePreferencesCommitmentPlanPtr) ToVmwareEnginePreferencesCom return pulumi.ToOutputWithContext(ctx, in).(VmwareEnginePreferencesCommitmentPlanPtrOutput) } -func (in *vmwareEnginePreferencesCommitmentPlanPtr) ToOutput(ctx context.Context) pulumix.Output[*VmwareEnginePreferencesCommitmentPlan] { - return pulumix.Output[*VmwareEnginePreferencesCommitmentPlan]{ - OutputState: in.ToVmwareEnginePreferencesCommitmentPlanPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ComputeEnginePreferencesLicenseTypeInput)(nil)).Elem(), ComputeEnginePreferencesLicenseType("LICENSE_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*ComputeEnginePreferencesLicenseTypePtrInput)(nil)).Elem(), ComputeEnginePreferencesLicenseType("LICENSE_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/migrationcenter/v1alpha1/pulumiEnums.go b/sdk/go/google/migrationcenter/v1alpha1/pulumiEnums.go index a4717e1341..cf5e442606 100644 --- a/sdk/go/google/migrationcenter/v1alpha1/pulumiEnums.go +++ b/sdk/go/google/migrationcenter/v1alpha1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // License type to consider when calculating costs for virtual machine insights and recommendations. If unspecified, costs are calculated based on the default licensing plan. @@ -182,12 +181,6 @@ func (in *computeEnginePreferencesLicenseTypePtr) ToComputeEnginePreferencesLice return pulumi.ToOutputWithContext(ctx, in).(ComputeEnginePreferencesLicenseTypePtrOutput) } -func (in *computeEnginePreferencesLicenseTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ComputeEnginePreferencesLicenseType] { - return pulumix.Output[*ComputeEnginePreferencesLicenseType]{ - OutputState: in.ToComputeEnginePreferencesLicenseTypePtrOutputWithContext(ctx).OutputState, - } -} - // Persistent disk type to use. If unspecified (default), all types are considered, based on available usage data. type ComputeEnginePreferencesPersistentDiskType string @@ -362,12 +355,6 @@ func (in *computeEnginePreferencesPersistentDiskTypePtr) ToComputeEnginePreferen return pulumi.ToOutputWithContext(ctx, in).(ComputeEnginePreferencesPersistentDiskTypePtrOutput) } -func (in *computeEnginePreferencesPersistentDiskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ComputeEnginePreferencesPersistentDiskType] { - return pulumix.Output[*ComputeEnginePreferencesPersistentDiskType]{ - OutputState: in.ToComputeEnginePreferencesPersistentDiskTypePtrOutputWithContext(ctx).OutputState, - } -} - // The import job format. type GCSPayloadInfoFormat string @@ -551,12 +538,6 @@ func (in *gcspayloadInfoFormatPtr) ToGCSPayloadInfoFormatPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(GCSPayloadInfoFormatPtrOutput) } -func (in *gcspayloadInfoFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*GCSPayloadInfoFormat] { - return pulumix.Output[*GCSPayloadInfoFormat]{ - OutputState: in.ToGCSPayloadInfoFormatPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The payload format. type ImportDataFileFormat string @@ -740,12 +721,6 @@ func (in *importDataFileFormatPtr) ToImportDataFileFormatPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(ImportDataFileFormatPtrOutput) } -func (in *importDataFileFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*ImportDataFileFormat] { - return pulumix.Output[*ImportDataFileFormat]{ - OutputState: in.ToImportDataFileFormatPtrOutputWithContext(ctx).OutputState, - } -} - // The import job format. type InlinePayloadInfoFormat string @@ -929,12 +904,6 @@ func (in *inlinePayloadInfoFormatPtr) ToInlinePayloadInfoFormatPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(InlinePayloadInfoFormatPtrOutput) } -func (in *inlinePayloadInfoFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*InlinePayloadInfoFormat] { - return pulumix.Output[*InlinePayloadInfoFormat]{ - OutputState: in.ToInlinePayloadInfoFormatPtrOutputWithContext(ctx).OutputState, - } -} - // Report creation state. type ReportStateEnum string @@ -1109,12 +1078,6 @@ func (in *reportStateEnumPtr) ToReportStateEnumPtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(ReportStateEnumPtrOutput) } -func (in *reportStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*ReportStateEnum] { - return pulumix.Output[*ReportStateEnum]{ - OutputState: in.ToReportStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // Report type. type ReportType string @@ -1283,12 +1246,6 @@ func (in *reportTypePtr) ToReportTypePtrOutputWithContext(ctx context.Context) R return pulumi.ToOutputWithContext(ctx, in).(ReportTypePtrOutput) } -func (in *reportTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ReportType] { - return pulumix.Output[*ReportType]{ - OutputState: in.ToReportTypePtrOutputWithContext(ctx).OutputState, - } -} - // Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with. type SoleTenancyPreferencesCommitmentPlan string @@ -1463,12 +1420,6 @@ func (in *soleTenancyPreferencesCommitmentPlanPtr) ToSoleTenancyPreferencesCommi return pulumi.ToOutputWithContext(ctx, in).(SoleTenancyPreferencesCommitmentPlanPtrOutput) } -func (in *soleTenancyPreferencesCommitmentPlanPtr) ToOutput(ctx context.Context) pulumix.Output[*SoleTenancyPreferencesCommitmentPlan] { - return pulumix.Output[*SoleTenancyPreferencesCommitmentPlan]{ - OutputState: in.ToSoleTenancyPreferencesCommitmentPlanPtrOutputWithContext(ctx).OutputState, - } -} - // Sole Tenancy nodes maintenance policy. type SoleTenancyPreferencesHostMaintenancePolicy string @@ -1643,12 +1594,6 @@ func (in *soleTenancyPreferencesHostMaintenancePolicyPtr) ToSoleTenancyPreferenc return pulumi.ToOutputWithContext(ctx, in).(SoleTenancyPreferencesHostMaintenancePolicyPtrOutput) } -func (in *soleTenancyPreferencesHostMaintenancePolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*SoleTenancyPreferencesHostMaintenancePolicy] { - return pulumix.Output[*SoleTenancyPreferencesHostMaintenancePolicy]{ - OutputState: in.ToSoleTenancyPreferencesHostMaintenancePolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Data source type. type SourceType string @@ -1826,12 +1771,6 @@ func (in *sourceTypePtr) ToSourceTypePtrOutputWithContext(ctx context.Context) S return pulumi.ToOutputWithContext(ctx, in).(SourceTypePtrOutput) } -func (in *sourceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SourceType] { - return pulumix.Output[*SourceType]{ - OutputState: in.ToSourceTypePtrOutputWithContext(ctx).OutputState, - } -} - // Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with. type VirtualMachinePreferencesCommitmentPlan string @@ -2006,12 +1945,6 @@ func (in *virtualMachinePreferencesCommitmentPlanPtr) ToVirtualMachinePreference return pulumi.ToOutputWithContext(ctx, in).(VirtualMachinePreferencesCommitmentPlanPtrOutput) } -func (in *virtualMachinePreferencesCommitmentPlanPtr) ToOutput(ctx context.Context) pulumix.Output[*VirtualMachinePreferencesCommitmentPlan] { - return pulumix.Output[*VirtualMachinePreferencesCommitmentPlan]{ - OutputState: in.ToVirtualMachinePreferencesCommitmentPlanPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Type of statistical aggregation of a resource utilization data, on which to base the sizing metrics. type VirtualMachinePreferencesSizingOptimizationCustomParametersAggregationMethod string @@ -2189,12 +2122,6 @@ func (in *virtualMachinePreferencesSizingOptimizationCustomParametersAggregation return pulumi.ToOutputWithContext(ctx, in).(VirtualMachinePreferencesSizingOptimizationCustomParametersAggregationMethodPtrOutput) } -func (in *virtualMachinePreferencesSizingOptimizationCustomParametersAggregationMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*VirtualMachinePreferencesSizingOptimizationCustomParametersAggregationMethod] { - return pulumix.Output[*VirtualMachinePreferencesSizingOptimizationCustomParametersAggregationMethod]{ - OutputState: in.ToVirtualMachinePreferencesSizingOptimizationCustomParametersAggregationMethodPtrOutputWithContext(ctx).OutputState, - } -} - // Sizing optimization strategy specifies the preferred strategy used when extrapolating usage data to calculate insights and recommendations for a virtual machine. If you are unsure which value to set, a moderate sizing optimization strategy is often a good value to start with. type VirtualMachinePreferencesSizingOptimizationStrategy string @@ -2372,12 +2299,6 @@ func (in *virtualMachinePreferencesSizingOptimizationStrategyPtr) ToVirtualMachi return pulumi.ToOutputWithContext(ctx, in).(VirtualMachinePreferencesSizingOptimizationStrategyPtrOutput) } -func (in *virtualMachinePreferencesSizingOptimizationStrategyPtr) ToOutput(ctx context.Context) pulumix.Output[*VirtualMachinePreferencesSizingOptimizationStrategy] { - return pulumix.Output[*VirtualMachinePreferencesSizingOptimizationStrategy]{ - OutputState: in.ToVirtualMachinePreferencesSizingOptimizationStrategyPtrOutputWithContext(ctx).OutputState, - } -} - // Target product for assets using this preference set. Specify either target product or business goal, but not both. type VirtualMachinePreferencesTargetProduct string @@ -2552,12 +2473,6 @@ func (in *virtualMachinePreferencesTargetProductPtr) ToVirtualMachinePreferences return pulumi.ToOutputWithContext(ctx, in).(VirtualMachinePreferencesTargetProductPtrOutput) } -func (in *virtualMachinePreferencesTargetProductPtr) ToOutput(ctx context.Context) pulumix.Output[*VirtualMachinePreferencesTargetProduct] { - return pulumix.Output[*VirtualMachinePreferencesTargetProduct]{ - OutputState: in.ToVirtualMachinePreferencesTargetProductPtrOutputWithContext(ctx).OutputState, - } -} - // Commitment plan to consider when calculating costs for virtual machine insights and recommendations. If you are unsure which value to set, a 3 year commitment plan is often a good value to start with. type VmwareEnginePreferencesCommitmentPlan string @@ -2738,12 +2653,6 @@ func (in *vmwareEnginePreferencesCommitmentPlanPtr) ToVmwareEnginePreferencesCom return pulumi.ToOutputWithContext(ctx, in).(VmwareEnginePreferencesCommitmentPlanPtrOutput) } -func (in *vmwareEnginePreferencesCommitmentPlanPtr) ToOutput(ctx context.Context) pulumix.Output[*VmwareEnginePreferencesCommitmentPlan] { - return pulumix.Output[*VmwareEnginePreferencesCommitmentPlan]{ - OutputState: in.ToVmwareEnginePreferencesCommitmentPlanPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ComputeEnginePreferencesLicenseTypeInput)(nil)).Elem(), ComputeEnginePreferencesLicenseType("LICENSE_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*ComputeEnginePreferencesLicenseTypePtrInput)(nil)).Elem(), ComputeEnginePreferencesLicenseType("LICENSE_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/ml/v1/pulumiEnums.go b/sdk/go/google/ml/v1/pulumiEnums.go index ab3b8d4f1f..1e4e459674 100644 --- a/sdk/go/google/ml/v1/pulumiEnums.go +++ b/sdk/go/google/ml/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Required. The optimization goal of the metric. @@ -182,12 +181,6 @@ func (in *googleCloudMlV1_StudyConfig_MetricSpecGoalPtr) ToGoogleCloudMlV1_Study return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudMlV1_StudyConfig_MetricSpecGoalPtrOutput) } -func (in *googleCloudMlV1_StudyConfig_MetricSpecGoalPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudMlV1_StudyConfig_MetricSpecGoal] { - return pulumix.Output[*GoogleCloudMlV1_StudyConfig_MetricSpecGoal]{ - OutputState: in.ToGoogleCloudMlV1_StudyConfig_MetricSpecGoalPtrOutputWithContext(ctx).OutputState, - } -} - // How the parameter should be scaled. Leave unset for categorical parameters. type GoogleCloudMlV1_StudyConfig_ParameterSpecScaleType string @@ -362,12 +355,6 @@ func (in *googleCloudMlV1_StudyConfig_ParameterSpecScaleTypePtr) ToGoogleCloudMl return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudMlV1_StudyConfig_ParameterSpecScaleTypePtrOutput) } -func (in *googleCloudMlV1_StudyConfig_ParameterSpecScaleTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudMlV1_StudyConfig_ParameterSpecScaleType] { - return pulumix.Output[*GoogleCloudMlV1_StudyConfig_ParameterSpecScaleType]{ - OutputState: in.ToGoogleCloudMlV1_StudyConfig_ParameterSpecScaleTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of the parameter. type GoogleCloudMlV1_StudyConfig_ParameterSpecType string @@ -545,12 +532,6 @@ func (in *googleCloudMlV1_StudyConfig_ParameterSpecTypePtr) ToGoogleCloudMlV1_St return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudMlV1_StudyConfig_ParameterSpecTypePtrOutput) } -func (in *googleCloudMlV1_StudyConfig_ParameterSpecTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudMlV1_StudyConfig_ParameterSpecType] { - return pulumix.Output[*GoogleCloudMlV1_StudyConfig_ParameterSpecType]{ - OutputState: in.ToGoogleCloudMlV1_StudyConfig_ParameterSpecTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of accelerator to use. type GoogleCloudMlV1__AcceleratorConfigType string @@ -749,12 +730,6 @@ func (in *googleCloudMlV1__AcceleratorConfigTypePtr) ToGoogleCloudMlV1__Accelera return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudMlV1__AcceleratorConfigTypePtrOutput) } -func (in *googleCloudMlV1__AcceleratorConfigTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudMlV1__AcceleratorConfigType] { - return pulumix.Output[*GoogleCloudMlV1__AcceleratorConfigType]{ - OutputState: in.ToGoogleCloudMlV1__AcceleratorConfigTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The search algorithm specified for the hyperparameter tuning job. Uses the default AI Platform hyperparameter tuning algorithm if unspecified. type GoogleCloudMlV1__HyperparameterSpecAlgorithm string @@ -926,12 +901,6 @@ func (in *googleCloudMlV1__HyperparameterSpecAlgorithmPtr) ToGoogleCloudMlV1__Hy return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudMlV1__HyperparameterSpecAlgorithmPtrOutput) } -func (in *googleCloudMlV1__HyperparameterSpecAlgorithmPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudMlV1__HyperparameterSpecAlgorithm] { - return pulumix.Output[*GoogleCloudMlV1__HyperparameterSpecAlgorithm]{ - OutputState: in.ToGoogleCloudMlV1__HyperparameterSpecAlgorithmPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of goal to use for tuning. Available types are `MAXIMIZE` and `MINIMIZE`. Defaults to `MAXIMIZE`. type GoogleCloudMlV1__HyperparameterSpecGoal string @@ -1103,12 +1072,6 @@ func (in *googleCloudMlV1__HyperparameterSpecGoalPtr) ToGoogleCloudMlV1__Hyperpa return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudMlV1__HyperparameterSpecGoalPtrOutput) } -func (in *googleCloudMlV1__HyperparameterSpecGoalPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudMlV1__HyperparameterSpecGoal] { - return pulumix.Output[*GoogleCloudMlV1__HyperparameterSpecGoal]{ - OutputState: in.ToGoogleCloudMlV1__HyperparameterSpecGoalPtrOutputWithContext(ctx).OutputState, - } -} - // metric name. type GoogleCloudMlV1__MetricSpecName string @@ -1280,12 +1243,6 @@ func (in *googleCloudMlV1__MetricSpecNamePtr) ToGoogleCloudMlV1__MetricSpecNameP return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudMlV1__MetricSpecNamePtrOutput) } -func (in *googleCloudMlV1__MetricSpecNamePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudMlV1__MetricSpecName] { - return pulumix.Output[*GoogleCloudMlV1__MetricSpecName]{ - OutputState: in.ToGoogleCloudMlV1__MetricSpecNamePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. How the parameter should be scaled to the hypercube. Leave unset for categorical parameters. Some kind of scaling is strongly recommended for real or integral parameters (e.g., `UNIT_LINEAR_SCALE`). type GoogleCloudMlV1__ParameterSpecScaleType string @@ -1460,12 +1417,6 @@ func (in *googleCloudMlV1__ParameterSpecScaleTypePtr) ToGoogleCloudMlV1__Paramet return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudMlV1__ParameterSpecScaleTypePtrOutput) } -func (in *googleCloudMlV1__ParameterSpecScaleTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudMlV1__ParameterSpecScaleType] { - return pulumix.Output[*GoogleCloudMlV1__ParameterSpecScaleType]{ - OutputState: in.ToGoogleCloudMlV1__ParameterSpecScaleTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of the parameter. type GoogleCloudMlV1__ParameterSpecType string @@ -1643,12 +1594,6 @@ func (in *googleCloudMlV1__ParameterSpecTypePtr) ToGoogleCloudMlV1__ParameterSpe return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudMlV1__ParameterSpecTypePtrOutput) } -func (in *googleCloudMlV1__ParameterSpecTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudMlV1__ParameterSpecType] { - return pulumix.Output[*GoogleCloudMlV1__ParameterSpecType]{ - OutputState: in.ToGoogleCloudMlV1__ParameterSpecTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The format of the input data files. type GoogleCloudMlV1__PredictionInputDataFormat string @@ -1829,12 +1774,6 @@ func (in *googleCloudMlV1__PredictionInputDataFormatPtr) ToGoogleCloudMlV1__Pred return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudMlV1__PredictionInputDataFormatPtrOutput) } -func (in *googleCloudMlV1__PredictionInputDataFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudMlV1__PredictionInputDataFormat] { - return pulumix.Output[*GoogleCloudMlV1__PredictionInputDataFormat]{ - OutputState: in.ToGoogleCloudMlV1__PredictionInputDataFormatPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Format of the output data files, defaults to JSON. type GoogleCloudMlV1__PredictionInputOutputDataFormat string @@ -2015,12 +1954,6 @@ func (in *googleCloudMlV1__PredictionInputOutputDataFormatPtr) ToGoogleCloudMlV1 return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudMlV1__PredictionInputOutputDataFormatPtrOutput) } -func (in *googleCloudMlV1__PredictionInputOutputDataFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudMlV1__PredictionInputOutputDataFormat] { - return pulumix.Output[*GoogleCloudMlV1__PredictionInputOutputDataFormat]{ - OutputState: in.ToGoogleCloudMlV1__PredictionInputOutputDataFormatPtrOutputWithContext(ctx).OutputState, - } -} - // The search algorithm specified for the study. type GoogleCloudMlV1__StudyConfigAlgorithm string @@ -2195,12 +2128,6 @@ func (in *googleCloudMlV1__StudyConfigAlgorithmPtr) ToGoogleCloudMlV1__StudyConf return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudMlV1__StudyConfigAlgorithmPtrOutput) } -func (in *googleCloudMlV1__StudyConfigAlgorithmPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudMlV1__StudyConfigAlgorithm] { - return pulumix.Output[*GoogleCloudMlV1__StudyConfigAlgorithm]{ - OutputState: in.ToGoogleCloudMlV1__StudyConfigAlgorithmPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Specifies the machine types, the number of replicas for workers and parameter servers. type GoogleCloudMlV1__TrainingInputScaleTier string @@ -2381,12 +2308,6 @@ func (in *googleCloudMlV1__TrainingInputScaleTierPtr) ToGoogleCloudMlV1__Trainin return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudMlV1__TrainingInputScaleTierPtrOutput) } -func (in *googleCloudMlV1__TrainingInputScaleTierPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudMlV1__TrainingInputScaleTier] { - return pulumix.Output[*GoogleCloudMlV1__TrainingInputScaleTier]{ - OutputState: in.ToGoogleCloudMlV1__TrainingInputScaleTierPtrOutputWithContext(ctx).OutputState, - } -} - // The log type that this config enables. type GoogleIamV1__AuditLogConfigLogType string @@ -2561,12 +2482,6 @@ func (in *googleIamV1__AuditLogConfigLogTypePtr) ToGoogleIamV1__AuditLogConfigLo return pulumi.ToOutputWithContext(ctx, in).(GoogleIamV1__AuditLogConfigLogTypePtrOutput) } -func (in *googleIamV1__AuditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleIamV1__AuditLogConfigLogType] { - return pulumix.Output[*GoogleIamV1__AuditLogConfigLogType]{ - OutputState: in.ToGoogleIamV1__AuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // The detailed state of a trial. type TrialStateEnum string @@ -2744,12 +2659,6 @@ func (in *trialStateEnumPtr) ToTrialStateEnumPtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(TrialStateEnumPtrOutput) } -func (in *trialStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*TrialStateEnum] { - return pulumix.Output[*TrialStateEnum]{ - OutputState: in.ToTrialStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The machine learning framework AI Platform uses to train this version of the model. Valid values are `TENSORFLOW`, `SCIKIT_LEARN`, `XGBOOST`. If you do not specify a framework, AI Platform will analyze files in the deployment_uri to determine a framework. If you choose `SCIKIT_LEARN` or `XGBOOST`, you must also set the runtime version of the model to 1.4 or greater. Do **not** specify a framework if you're deploying a [custom prediction routine](/ai-platform/prediction/docs/custom-prediction-routines) or if you're using a [custom container](/ai-platform/prediction/docs/use-custom-container). type VersionFramework string @@ -2924,12 +2833,6 @@ func (in *versionFrameworkPtr) ToVersionFrameworkPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(VersionFrameworkPtrOutput) } -func (in *versionFrameworkPtr) ToOutput(ctx context.Context) pulumix.Output[*VersionFramework] { - return pulumix.Output[*VersionFramework]{ - OutputState: in.ToVersionFrameworkPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudMlV1_StudyConfig_MetricSpecGoalInput)(nil)).Elem(), GoogleCloudMlV1_StudyConfig_MetricSpecGoal("GOAL_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudMlV1_StudyConfig_MetricSpecGoalPtrInput)(nil)).Elem(), GoogleCloudMlV1_StudyConfig_MetricSpecGoal("GOAL_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/monitoring/v1/pulumiEnums.go b/sdk/go/google/monitoring/v1/pulumiEnums.go index 33bae26bc4..60b229e381 100644 --- a/sdk/go/google/monitoring/v1/pulumiEnums.go +++ b/sdk/go/google/monitoring/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The reduction operation to be used to combine time series into a single time series, where the value of each data point in the resulting series is a function of all the already aligned values in the input time series.Not all reducer operations can be applied to all time series. The valid choices depend on the metric_kind and the value_type of the original time series. Reduction can yield a time series with a different metric_kind or value_type than the input time series.Time series data must first be aligned (see per_series_aligner) in order to perform cross-time series reduction. If cross_series_reducer is specified, then per_series_aligner must be specified, and must not be ALIGN_NONE. An alignment_period must also be specified; otherwise, an error is returned. @@ -215,12 +214,6 @@ func (in *aggregationCrossSeriesReducerPtr) ToAggregationCrossSeriesReducerPtrOu return pulumi.ToOutputWithContext(ctx, in).(AggregationCrossSeriesReducerPtrOutput) } -func (in *aggregationCrossSeriesReducerPtr) ToOutput(ctx context.Context) pulumix.Output[*AggregationCrossSeriesReducer] { - return pulumix.Output[*AggregationCrossSeriesReducer]{ - OutputState: in.ToAggregationCrossSeriesReducerPtrOutputWithContext(ctx).OutputState, - } -} - // An Aligner describes how to bring the data points in a single time series into temporal alignment. Except for ALIGN_NONE, all alignments cause all the data points in an alignment_period to be mathematically grouped together, resulting in a single data point for each alignment_period with end timestamp at the end of the period.Not all alignment operations may be applied to all time series. The valid choices depend on the metric_kind and value_type of the original time series. Alignment can change the metric_kind or the value_type of the time series.Time series data must be aligned in order to perform cross-time series reduction. If cross_series_reducer is specified, then per_series_aligner must be specified and not equal to ALIGN_NONE and alignment_period must be specified; otherwise, an error is returned. type AggregationPerSeriesAligner string @@ -440,12 +433,6 @@ func (in *aggregationPerSeriesAlignerPtr) ToAggregationPerSeriesAlignerPtrOutput return pulumi.ToOutputWithContext(ctx, in).(AggregationPerSeriesAlignerPtrOutput) } -func (in *aggregationPerSeriesAlignerPtr) ToOutput(ctx context.Context) pulumix.Output[*AggregationPerSeriesAligner] { - return pulumix.Output[*AggregationPerSeriesAligner]{ - OutputState: in.ToAggregationPerSeriesAlignerPtrOutputWithContext(ctx).OutputState, - } -} - // The axis scale. By default, a linear scale is used. type AxisScale string @@ -617,12 +604,6 @@ func (in *axisScalePtr) ToAxisScalePtrOutputWithContext(ctx context.Context) Axi return pulumi.ToOutputWithContext(ctx, in).(AxisScalePtrOutput) } -func (in *axisScalePtr) ToOutput(ctx context.Context) pulumix.Output[*AxisScale] { - return pulumix.Output[*AxisScale]{ - OutputState: in.ToAxisScalePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The sort order is applied to the values of the breakdown column. type BreakdownSortOrder string @@ -797,12 +778,6 @@ func (in *breakdownSortOrderPtr) ToBreakdownSortOrderPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(BreakdownSortOrderPtrOutput) } -func (in *breakdownSortOrderPtr) ToOutput(ctx context.Context) pulumix.Output[*BreakdownSortOrder] { - return pulumix.Output[*BreakdownSortOrder]{ - OutputState: in.ToBreakdownSortOrderPtrOutputWithContext(ctx).OutputState, - } -} - // The chart mode. type ChartOptionsMode string @@ -977,12 +952,6 @@ func (in *chartOptionsModePtr) ToChartOptionsModePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(ChartOptionsModePtrOutput) } -func (in *chartOptionsModePtr) ToOutput(ctx context.Context) pulumix.Output[*ChartOptionsMode] { - return pulumix.Output[*ChartOptionsMode]{ - OutputState: in.ToChartOptionsModePtrOutputWithContext(ctx).OutputState, - } -} - // The specified filter type type DashboardFilterFilterType string @@ -1163,12 +1132,6 @@ func (in *dashboardFilterFilterTypePtr) ToDashboardFilterFilterTypePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(DashboardFilterFilterTypePtrOutput) } -func (in *dashboardFilterFilterTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DashboardFilterFilterType] { - return pulumix.Output[*DashboardFilterFilterType]{ - OutputState: in.ToDashboardFilterFilterTypePtrOutputWithContext(ctx).OutputState, - } -} - // How this data should be plotted on the chart. type DataSetPlotType string @@ -1346,12 +1309,6 @@ func (in *dataSetPlotTypePtr) ToDataSetPlotTypePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(DataSetPlotTypePtrOutput) } -func (in *dataSetPlotTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DataSetPlotType] { - return pulumix.Output[*DataSetPlotType]{ - OutputState: in.ToDataSetPlotTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The target axis to use for plotting the metric. type DataSetTargetAxis string @@ -1523,12 +1480,6 @@ func (in *dataSetTargetAxisPtr) ToDataSetTargetAxisPtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(DataSetTargetAxisPtrOutput) } -func (in *dataSetTargetAxisPtr) ToOutput(ctx context.Context) pulumix.Output[*DataSetTargetAxis] { - return pulumix.Output[*DataSetTargetAxis]{ - OutputState: in.ToDataSetTargetAxisPtrOutputWithContext(ctx).OutputState, - } -} - // The sort order applied to the sort column. type DimensionSortOrder string @@ -1703,12 +1654,6 @@ func (in *dimensionSortOrderPtr) ToDimensionSortOrderPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(DimensionSortOrderPtrOutput) } -func (in *dimensionSortOrderPtr) ToOutput(ctx context.Context) pulumix.Output[*DimensionSortOrder] { - return pulumix.Output[*DimensionSortOrder]{ - OutputState: in.ToDimensionSortOrderPtrOutputWithContext(ctx).OutputState, - } -} - // How to use the ranking to select time series that pass through the filter. type PickTimeSeriesFilterDirection string @@ -1880,12 +1825,6 @@ func (in *pickTimeSeriesFilterDirectionPtr) ToPickTimeSeriesFilterDirectionPtrOu return pulumi.ToOutputWithContext(ctx, in).(PickTimeSeriesFilterDirectionPtrOutput) } -func (in *pickTimeSeriesFilterDirectionPtr) ToOutput(ctx context.Context) pulumix.Output[*PickTimeSeriesFilterDirection] { - return pulumix.Output[*PickTimeSeriesFilterDirection]{ - OutputState: in.ToPickTimeSeriesFilterDirectionPtrOutputWithContext(ctx).OutputState, - } -} - // ranking_method is applied to each time series independently to produce the value which will be used to compare the time series to other time series. type PickTimeSeriesFilterRankingMethod string @@ -2066,12 +2005,6 @@ func (in *pickTimeSeriesFilterRankingMethodPtr) ToPickTimeSeriesFilterRankingMet return pulumi.ToOutputWithContext(ctx, in).(PickTimeSeriesFilterRankingMethodPtrOutput) } -func (in *pickTimeSeriesFilterRankingMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*PickTimeSeriesFilterRankingMethod] { - return pulumix.Output[*PickTimeSeriesFilterRankingMethod]{ - OutputState: in.ToPickTimeSeriesFilterRankingMethodPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Indicates the visualization type for the PieChart. type PieChartChartType string @@ -2243,12 +2176,6 @@ func (in *pieChartChartTypePtr) ToPieChartChartTypePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(PieChartChartTypePtrOutput) } -func (in *pieChartChartTypePtr) ToOutput(ctx context.Context) pulumix.Output[*PieChartChartType] { - return pulumix.Output[*PieChartChartType]{ - OutputState: in.ToPieChartChartTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of sparkchart to show in this chartView. type SparkChartViewSparkChartType string @@ -2420,12 +2347,6 @@ func (in *sparkChartViewSparkChartTypePtr) ToSparkChartViewSparkChartTypePtrOutp return pulumi.ToOutputWithContext(ctx, in).(SparkChartViewSparkChartTypePtrOutput) } -func (in *sparkChartViewSparkChartTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SparkChartViewSparkChartType] { - return pulumix.Output[*SparkChartViewSparkChartType]{ - OutputState: in.ToSparkChartViewSparkChartTypePtrOutputWithContext(ctx).OutputState, - } -} - // rankingMethod is applied to a set of time series, and then the produced value for each individual time series is used to compare a given time series to others. These are methods that cannot be applied stream-by-stream, but rather require the full context of a request to evaluate time series. type StatisticalTimeSeriesFilterRankingMethod string @@ -2594,12 +2515,6 @@ func (in *statisticalTimeSeriesFilterRankingMethodPtr) ToStatisticalTimeSeriesFi return pulumi.ToOutputWithContext(ctx, in).(StatisticalTimeSeriesFilterRankingMethodPtrOutput) } -func (in *statisticalTimeSeriesFilterRankingMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*StatisticalTimeSeriesFilterRankingMethod] { - return pulumix.Output[*StatisticalTimeSeriesFilterRankingMethod]{ - OutputState: in.ToStatisticalTimeSeriesFilterRankingMethodPtrOutputWithContext(ctx).OutputState, - } -} - // How the text content is formatted. type TextFormat string @@ -2771,12 +2686,6 @@ func (in *textFormatPtr) ToTextFormatPtrOutputWithContext(ctx context.Context) T return pulumi.ToOutputWithContext(ctx, in).(TextFormatPtrOutput) } -func (in *textFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*TextFormat] { - return pulumix.Output[*TextFormat]{ - OutputState: in.ToTextFormatPtrOutputWithContext(ctx).OutputState, - } -} - // Font sizes for both the title and content. The title will still be larger relative to the content. type TextStyleFontSize string @@ -2957,12 +2866,6 @@ func (in *textStyleFontSizePtr) ToTextStyleFontSizePtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(TextStyleFontSizePtrOutput) } -func (in *textStyleFontSizePtr) ToOutput(ctx context.Context) pulumix.Output[*TextStyleFontSize] { - return pulumix.Output[*TextStyleFontSize]{ - OutputState: in.ToTextStyleFontSizePtrOutputWithContext(ctx).OutputState, - } -} - // The horizontal alignment of both the title and content type TextStyleHorizontalAlignment string @@ -3137,12 +3040,6 @@ func (in *textStyleHorizontalAlignmentPtr) ToTextStyleHorizontalAlignmentPtrOutp return pulumi.ToOutputWithContext(ctx, in).(TextStyleHorizontalAlignmentPtrOutput) } -func (in *textStyleHorizontalAlignmentPtr) ToOutput(ctx context.Context) pulumix.Output[*TextStyleHorizontalAlignment] { - return pulumix.Output[*TextStyleHorizontalAlignment]{ - OutputState: in.ToTextStyleHorizontalAlignmentPtrOutputWithContext(ctx).OutputState, - } -} - // The amount of padding around the widget type TextStylePadding string @@ -3323,12 +3220,6 @@ func (in *textStylePaddingPtr) ToTextStylePaddingPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(TextStylePaddingPtrOutput) } -func (in *textStylePaddingPtr) ToOutput(ctx context.Context) pulumix.Output[*TextStylePadding] { - return pulumix.Output[*TextStylePadding]{ - OutputState: in.ToTextStylePaddingPtrOutputWithContext(ctx).OutputState, - } -} - // The pointer location for this widget (also sometimes called a "tail") type TextStylePointerLocation string @@ -3530,12 +3421,6 @@ func (in *textStylePointerLocationPtr) ToTextStylePointerLocationPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(TextStylePointerLocationPtrOutput) } -func (in *textStylePointerLocationPtr) ToOutput(ctx context.Context) pulumix.Output[*TextStylePointerLocation] { - return pulumix.Output[*TextStylePointerLocation]{ - OutputState: in.ToTextStylePointerLocationPtrOutputWithContext(ctx).OutputState, - } -} - // The vertical alignment of both the title and content type TextStyleVerticalAlignment string @@ -3710,12 +3595,6 @@ func (in *textStyleVerticalAlignmentPtr) ToTextStyleVerticalAlignmentPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(TextStyleVerticalAlignmentPtrOutput) } -func (in *textStyleVerticalAlignmentPtr) ToOutput(ctx context.Context) pulumix.Output[*TextStyleVerticalAlignment] { - return pulumix.Output[*TextStyleVerticalAlignment]{ - OutputState: in.ToTextStyleVerticalAlignmentPtrOutputWithContext(ctx).OutputState, - } -} - // The state color for this threshold. Color is not allowed in a XyChart. type ThresholdColor string @@ -3887,12 +3766,6 @@ func (in *thresholdColorPtr) ToThresholdColorPtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(ThresholdColorPtrOutput) } -func (in *thresholdColorPtr) ToOutput(ctx context.Context) pulumix.Output[*ThresholdColor] { - return pulumix.Output[*ThresholdColor]{ - OutputState: in.ToThresholdColorPtrOutputWithContext(ctx).OutputState, - } -} - // The direction for the current threshold. Direction is not allowed in a XyChart. type ThresholdDirection string @@ -4064,12 +3937,6 @@ func (in *thresholdDirectionPtr) ToThresholdDirectionPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(ThresholdDirectionPtrOutput) } -func (in *thresholdDirectionPtr) ToOutput(ctx context.Context) pulumix.Output[*ThresholdDirection] { - return pulumix.Output[*ThresholdDirection]{ - OutputState: in.ToThresholdDirectionPtrOutputWithContext(ctx).OutputState, - } -} - // The target axis to use for plotting the threshold. Target axis is not allowed in a Scorecard. type ThresholdTargetAxis string @@ -4241,12 +4108,6 @@ func (in *thresholdTargetAxisPtr) ToThresholdTargetAxisPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(ThresholdTargetAxisPtrOutput) } -func (in *thresholdTargetAxisPtr) ToOutput(ctx context.Context) pulumix.Output[*ThresholdTargetAxis] { - return pulumix.Output[*ThresholdTargetAxis]{ - OutputState: in.ToThresholdTargetAxisPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Store rendering strategy type TimeSeriesTableMetricVisualization string @@ -4418,12 +4279,6 @@ func (in *timeSeriesTableMetricVisualizationPtr) ToTimeSeriesTableMetricVisualiz return pulumi.ToOutputWithContext(ctx, in).(TimeSeriesTableMetricVisualizationPtrOutput) } -func (in *timeSeriesTableMetricVisualizationPtr) ToOutput(ctx context.Context) pulumix.Output[*TimeSeriesTableMetricVisualization] { - return pulumix.Output[*TimeSeriesTableMetricVisualization]{ - OutputState: in.ToTimeSeriesTableMetricVisualizationPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AggregationCrossSeriesReducerInput)(nil)).Elem(), AggregationCrossSeriesReducer("REDUCE_NONE")) pulumi.RegisterInputType(reflect.TypeOf((*AggregationCrossSeriesReducerPtrInput)(nil)).Elem(), AggregationCrossSeriesReducer("REDUCE_NONE")) diff --git a/sdk/go/google/monitoring/v3/pulumiEnums.go b/sdk/go/google/monitoring/v3/pulumiEnums.go index 8f62e1e99e..3c3e935bff 100644 --- a/sdk/go/google/monitoring/v3/pulumiEnums.go +++ b/sdk/go/google/monitoring/v3/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The reduction operation to be used to combine time series into a single time series, where the value of each data point in the resulting series is a function of all the already aligned values in the input time series.Not all reducer operations can be applied to all time series. The valid choices depend on the metric_kind and the value_type of the original time series. Reduction can yield a time series with a different metric_kind or value_type than the input time series.Time series data must first be aligned (see per_series_aligner) in order to perform cross-time series reduction. If cross_series_reducer is specified, then per_series_aligner must be specified, and must not be ALIGN_NONE. An alignment_period must also be specified; otherwise, an error is returned. @@ -215,12 +214,6 @@ func (in *aggregationCrossSeriesReducerPtr) ToAggregationCrossSeriesReducerPtrOu return pulumi.ToOutputWithContext(ctx, in).(AggregationCrossSeriesReducerPtrOutput) } -func (in *aggregationCrossSeriesReducerPtr) ToOutput(ctx context.Context) pulumix.Output[*AggregationCrossSeriesReducer] { - return pulumix.Output[*AggregationCrossSeriesReducer]{ - OutputState: in.ToAggregationCrossSeriesReducerPtrOutputWithContext(ctx).OutputState, - } -} - // An Aligner describes how to bring the data points in a single time series into temporal alignment. Except for ALIGN_NONE, all alignments cause all the data points in an alignment_period to be mathematically grouped together, resulting in a single data point for each alignment_period with end timestamp at the end of the period.Not all alignment operations may be applied to all time series. The valid choices depend on the metric_kind and value_type of the original time series. Alignment can change the metric_kind or the value_type of the time series.Time series data must be aligned in order to perform cross-time series reduction. If cross_series_reducer is specified, then per_series_aligner must be specified and not equal to ALIGN_NONE and alignment_period must be specified; otherwise, an error is returned. type AggregationPerSeriesAligner string @@ -440,12 +433,6 @@ func (in *aggregationPerSeriesAlignerPtr) ToAggregationPerSeriesAlignerPtrOutput return pulumi.ToOutputWithContext(ctx, in).(AggregationPerSeriesAlignerPtrOutput) } -func (in *aggregationPerSeriesAlignerPtr) ToOutput(ctx context.Context) pulumix.Output[*AggregationPerSeriesAligner] { - return pulumix.Output[*AggregationPerSeriesAligner]{ - OutputState: in.ToAggregationPerSeriesAlignerPtrOutputWithContext(ctx).OutputState, - } -} - // How to combine the results of multiple conditions to determine if an incident should be opened. If condition_time_series_query_language is present, this must be COMBINE_UNSPECIFIED. type AlertPolicyCombiner string @@ -620,12 +607,6 @@ func (in *alertPolicyCombinerPtr) ToAlertPolicyCombinerPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(AlertPolicyCombinerPtrOutput) } -func (in *alertPolicyCombinerPtr) ToOutput(ctx context.Context) pulumix.Output[*AlertPolicyCombiner] { - return pulumix.Output[*AlertPolicyCombiner]{ - OutputState: in.ToAlertPolicyCombinerPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The severity of an alert policy indicates how important incidents generated by that policy are. The severity level will be displayed on the Incident detail page and in notifications. type AlertPolicySeverity string @@ -800,12 +781,6 @@ func (in *alertPolicySeverityPtr) ToAlertPolicySeverityPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(AlertPolicySeverityPtrOutput) } -func (in *alertPolicySeverityPtr) ToOutput(ctx context.Context) pulumix.Output[*AlertPolicySeverity] { - return pulumix.Output[*AlertPolicySeverity]{ - OutputState: in.ToAlertPolicySeverityPtrOutputWithContext(ctx).OutputState, - } -} - // The type of content matcher that will be applied to the server output, compared to the content string when the check is run. type ContentMatcherMatcher string @@ -989,12 +964,6 @@ func (in *contentMatcherMatcherPtr) ToContentMatcherMatcherPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ContentMatcherMatcherPtrOutput) } -func (in *contentMatcherMatcherPtr) ToOutput(ctx context.Context) pulumix.Output[*ContentMatcherMatcher] { - return pulumix.Output[*ContentMatcherMatcher]{ - OutputState: in.ToContentMatcherMatcherPtrOutputWithContext(ctx).OutputState, - } -} - // The content type header to use for the check. The following configurations result in errors: 1. Content type is specified in both the headers field and the content_type field. 2. Request method is GET and content_type is not TYPE_UNSPECIFIED 3. Request method is POST and content_type is TYPE_UNSPECIFIED. 4. Request method is POST and a "Content-Type" header is provided via headers field. The content_type field should be used instead. type HttpCheckContentType string @@ -1166,12 +1135,6 @@ func (in *httpCheckContentTypePtr) ToHttpCheckContentTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(HttpCheckContentTypePtrOutput) } -func (in *httpCheckContentTypePtr) ToOutput(ctx context.Context) pulumix.Output[*HttpCheckContentType] { - return pulumix.Output[*HttpCheckContentType]{ - OutputState: in.ToHttpCheckContentTypePtrOutputWithContext(ctx).OutputState, - } -} - // The HTTP request method to use for the check. If set to METHOD_UNSPECIFIED then request_method defaults to GET. type HttpCheckRequestMethod string @@ -1343,12 +1306,6 @@ func (in *httpCheckRequestMethodPtr) ToHttpCheckRequestMethodPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(HttpCheckRequestMethodPtrOutput) } -func (in *httpCheckRequestMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*HttpCheckRequestMethod] { - return pulumix.Output[*HttpCheckRequestMethod]{ - OutputState: in.ToHttpCheckRequestMethodPtrOutputWithContext(ctx).OutputState, - } -} - // The current operational state of the internal checker. type InternalCheckerState string @@ -1520,12 +1477,6 @@ func (in *internalCheckerStatePtr) ToInternalCheckerStatePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(InternalCheckerStatePtrOutput) } -func (in *internalCheckerStatePtr) ToOutput(ctx context.Context) pulumix.Output[*InternalCheckerState] { - return pulumix.Output[*InternalCheckerState]{ - OutputState: in.ToInternalCheckerStatePtrOutputWithContext(ctx).OutputState, - } -} - // The type of JSONPath match that will be applied to the JSON output (ContentMatcher.content) type JsonPathMatcherJsonMatcher string @@ -1697,12 +1648,6 @@ func (in *jsonPathMatcherJsonMatcherPtr) ToJsonPathMatcherJsonMatcherPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(JsonPathMatcherJsonMatcherPtrOutput) } -func (in *jsonPathMatcherJsonMatcherPtr) ToOutput(ctx context.Context) pulumix.Output[*JsonPathMatcherJsonMatcher] { - return pulumix.Output[*JsonPathMatcherJsonMatcher]{ - OutputState: in.ToJsonPathMatcherJsonMatcherPtrOutputWithContext(ctx).OutputState, - } -} - // The type of data that can be assigned to the label. type LabelDescriptorValueType string @@ -1874,12 +1819,6 @@ func (in *labelDescriptorValueTypePtr) ToLabelDescriptorValueTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(LabelDescriptorValueTypePtrOutput) } -func (in *labelDescriptorValueTypePtr) ToOutput(ctx context.Context) pulumix.Output[*LabelDescriptorValueType] { - return pulumix.Output[*LabelDescriptorValueType]{ - OutputState: in.ToLabelDescriptorValueTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The launch stage of the metric definition. type MetricDescriptorLaunchStage string @@ -2066,12 +2005,6 @@ func (in *metricDescriptorLaunchStagePtr) ToMetricDescriptorLaunchStagePtrOutput return pulumi.ToOutputWithContext(ctx, in).(MetricDescriptorLaunchStagePtrOutput) } -func (in *metricDescriptorLaunchStagePtr) ToOutput(ctx context.Context) pulumix.Output[*MetricDescriptorLaunchStage] { - return pulumix.Output[*MetricDescriptorLaunchStage]{ - OutputState: in.ToMetricDescriptorLaunchStagePtrOutputWithContext(ctx).OutputState, - } -} - // Deprecated. Must use the MetricDescriptor.launch_stage instead. type MetricDescriptorMetadataLaunchStage string @@ -2258,12 +2191,6 @@ func (in *metricDescriptorMetadataLaunchStagePtr) ToMetricDescriptorMetadataLaun return pulumi.ToOutputWithContext(ctx, in).(MetricDescriptorMetadataLaunchStagePtrOutput) } -func (in *metricDescriptorMetadataLaunchStagePtr) ToOutput(ctx context.Context) pulumix.Output[*MetricDescriptorMetadataLaunchStage] { - return pulumix.Output[*MetricDescriptorMetadataLaunchStage]{ - OutputState: in.ToMetricDescriptorMetadataLaunchStagePtrOutputWithContext(ctx).OutputState, - } -} - // Whether the metric records instantaneous values, changes to a value, etc. Some combinations of metric_kind and value_type might not be supported. type MetricDescriptorMetricKind string @@ -2438,12 +2365,6 @@ func (in *metricDescriptorMetricKindPtr) ToMetricDescriptorMetricKindPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(MetricDescriptorMetricKindPtrOutput) } -func (in *metricDescriptorMetricKindPtr) ToOutput(ctx context.Context) pulumix.Output[*MetricDescriptorMetricKind] { - return pulumix.Output[*MetricDescriptorMetricKind]{ - OutputState: in.ToMetricDescriptorMetricKindPtrOutputWithContext(ctx).OutputState, - } -} - // Whether the measurement is an integer, a floating-point number, etc. Some combinations of metric_kind and value_type might not be supported. type MetricDescriptorValueType string @@ -2627,12 +2548,6 @@ func (in *metricDescriptorValueTypePtr) ToMetricDescriptorValueTypePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(MetricDescriptorValueTypePtrOutput) } -func (in *metricDescriptorValueTypePtr) ToOutput(ctx context.Context) pulumix.Output[*MetricDescriptorValueType] { - return pulumix.Output[*MetricDescriptorValueType]{ - OutputState: in.ToMetricDescriptorValueTypePtrOutputWithContext(ctx).OutputState, - } -} - // The comparison to apply between the time series (indicated by filter and aggregation) and the threshold (indicated by threshold_value). The comparison is applied on each time series, with the time series on the left-hand side and the threshold on the right-hand side.Only COMPARISON_LT and COMPARISON_GT are supported currently. type MetricThresholdComparison string @@ -2816,12 +2731,6 @@ func (in *metricThresholdComparisonPtr) ToMetricThresholdComparisonPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(MetricThresholdComparisonPtrOutput) } -func (in *metricThresholdComparisonPtr) ToOutput(ctx context.Context) pulumix.Output[*MetricThresholdComparison] { - return pulumix.Output[*MetricThresholdComparison]{ - OutputState: in.ToMetricThresholdComparisonPtrOutputWithContext(ctx).OutputState, - } -} - // A condition control that determines how metric-threshold conditions are evaluated when data stops arriving. type MetricThresholdEvaluationMissingData string @@ -2996,12 +2905,6 @@ func (in *metricThresholdEvaluationMissingDataPtr) ToMetricThresholdEvaluationMi return pulumi.ToOutputWithContext(ctx, in).(MetricThresholdEvaluationMissingDataPtrOutput) } -func (in *metricThresholdEvaluationMissingDataPtr) ToOutput(ctx context.Context) pulumix.Output[*MetricThresholdEvaluationMissingData] { - return pulumix.Output[*MetricThresholdEvaluationMissingData]{ - OutputState: in.ToMetricThresholdEvaluationMissingDataPtrOutputWithContext(ctx).OutputState, - } -} - // A condition control that determines how metric-threshold conditions are evaluated when data stops arriving. type MonitoringQueryLanguageConditionEvaluationMissingData string @@ -3176,12 +3079,6 @@ func (in *monitoringQueryLanguageConditionEvaluationMissingDataPtr) ToMonitoring return pulumi.ToOutputWithContext(ctx, in).(MonitoringQueryLanguageConditionEvaluationMissingDataPtrOutput) } -func (in *monitoringQueryLanguageConditionEvaluationMissingDataPtr) ToOutput(ctx context.Context) pulumix.Output[*MonitoringQueryLanguageConditionEvaluationMissingData] { - return pulumix.Output[*MonitoringQueryLanguageConditionEvaluationMissingData]{ - OutputState: in.ToMonitoringQueryLanguageConditionEvaluationMissingDataPtrOutputWithContext(ctx).OutputState, - } -} - // Indicates whether this channel has been verified or not. On a ListNotificationChannels or GetNotificationChannel operation, this field is expected to be populated.If the value is UNVERIFIED, then it indicates that the channel is non-functioning (it both requires verification and lacks verification); otherwise, it is assumed that the channel works.If the channel is neither VERIFIED nor UNVERIFIED, it implies that the channel is of a type that does not require verification or that this specific channel has been exempted from verification because it was created prior to verification being required for channels of this type.This field cannot be modified using a standard UpdateNotificationChannel operation. To change the value of this field, you must call VerifyNotificationChannel. type NotificationChannelVerificationStatus string @@ -3353,12 +3250,6 @@ func (in *notificationChannelVerificationStatusPtr) ToNotificationChannelVerific return pulumi.ToOutputWithContext(ctx, in).(NotificationChannelVerificationStatusPtrOutput) } -func (in *notificationChannelVerificationStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*NotificationChannelVerificationStatus] { - return pulumix.Output[*NotificationChannelVerificationStatus]{ - OutputState: in.ToNotificationChannelVerificationStatusPtrOutputWithContext(ctx).OutputState, - } -} - // The resource type of the group members. type ResourceGroupResourceType string @@ -3530,12 +3421,6 @@ func (in *resourceGroupResourceTypePtr) ToResourceGroupResourceTypePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(ResourceGroupResourceTypePtrOutput) } -func (in *resourceGroupResourceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ResourceGroupResourceType] { - return pulumix.Output[*ResourceGroupResourceType]{ - OutputState: in.ToResourceGroupResourceTypePtrOutputWithContext(ctx).OutputState, - } -} - // A class of status codes to accept. type ResponseStatusCodeStatusClass string @@ -3719,12 +3604,6 @@ func (in *responseStatusCodeStatusClassPtr) ToResponseStatusCodeStatusClassPtrOu return pulumi.ToOutputWithContext(ctx, in).(ResponseStatusCodeStatusClassPtrOutput) } -func (in *responseStatusCodeStatusClassPtr) ToOutput(ctx context.Context) pulumix.Output[*ResponseStatusCodeStatusClass] { - return pulumix.Output[*ResponseStatusCodeStatusClass]{ - OutputState: in.ToResponseStatusCodeStatusClassPtrOutputWithContext(ctx).OutputState, - } -} - // A calendar period, semantically "since the start of the current ". At this time, only DAY, WEEK, FORTNIGHT, and MONTH are supported. type ServiceLevelObjectiveCalendarPeriod string @@ -3911,12 +3790,6 @@ func (in *serviceLevelObjectiveCalendarPeriodPtr) ToServiceLevelObjectiveCalenda return pulumi.ToOutputWithContext(ctx, in).(ServiceLevelObjectiveCalendarPeriodPtrOutput) } -func (in *serviceLevelObjectiveCalendarPeriodPtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceLevelObjectiveCalendarPeriod] { - return pulumix.Output[*ServiceLevelObjectiveCalendarPeriod]{ - OutputState: in.ToServiceLevelObjectiveCalendarPeriodPtrOutputWithContext(ctx).OutputState, - } -} - // The type of checkers to use to execute the Uptime check. type UptimeCheckConfigCheckerType string @@ -4088,12 +3961,6 @@ func (in *uptimeCheckConfigCheckerTypePtr) ToUptimeCheckConfigCheckerTypePtrOutp return pulumi.ToOutputWithContext(ctx, in).(UptimeCheckConfigCheckerTypePtrOutput) } -func (in *uptimeCheckConfigCheckerTypePtr) ToOutput(ctx context.Context) pulumix.Output[*UptimeCheckConfigCheckerType] { - return pulumix.Output[*UptimeCheckConfigCheckerType]{ - OutputState: in.ToUptimeCheckConfigCheckerTypePtrOutputWithContext(ctx).OutputState, - } -} - type UptimeCheckConfigSelectedRegionsItem string const ( @@ -4279,12 +4146,6 @@ func (in *uptimeCheckConfigSelectedRegionsItemPtr) ToUptimeCheckConfigSelectedRe return pulumi.ToOutputWithContext(ctx, in).(UptimeCheckConfigSelectedRegionsItemPtrOutput) } -func (in *uptimeCheckConfigSelectedRegionsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*UptimeCheckConfigSelectedRegionsItem] { - return pulumix.Output[*UptimeCheckConfigSelectedRegionsItem]{ - OutputState: in.ToUptimeCheckConfigSelectedRegionsItemPtrOutputWithContext(ctx).OutputState, - } -} - // UptimeCheckConfigSelectedRegionsItemArrayInput is an input type that accepts UptimeCheckConfigSelectedRegionsItemArray and UptimeCheckConfigSelectedRegionsItemArrayOutput values. // You can construct a concrete instance of `UptimeCheckConfigSelectedRegionsItemArrayInput` via: // diff --git a/sdk/go/google/networkconnectivity/v1/pulumiEnums.go b/sdk/go/google/networkconnectivity/v1/pulumiEnums.go index 98e95321e5..883541fcb8 100644 --- a/sdk/go/google/networkconnectivity/v1/pulumiEnums.go +++ b/sdk/go/google/networkconnectivity/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Internet protocol versions this policy-based route applies to. For this version, only IPV4 is supported. type FilterProtocolVersion string @@ -359,12 +352,6 @@ func (in *filterProtocolVersionPtr) ToFilterProtocolVersionPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(FilterProtocolVersionPtrOutput) } -func (in *filterProtocolVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*FilterProtocolVersion] { - return pulumix.Output[*FilterProtocolVersion]{ - OutputState: in.ToFilterProtocolVersionPtrOutputWithContext(ctx).OutputState, - } -} - type InternalRangeOverlapsItem string const ( @@ -535,12 +522,6 @@ func (in *internalRangeOverlapsItemPtr) ToInternalRangeOverlapsItemPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(InternalRangeOverlapsItemPtrOutput) } -func (in *internalRangeOverlapsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*InternalRangeOverlapsItem] { - return pulumix.Output[*InternalRangeOverlapsItem]{ - OutputState: in.ToInternalRangeOverlapsItemPtrOutputWithContext(ctx).OutputState, - } -} - // InternalRangeOverlapsItemArrayInput is an input type that accepts InternalRangeOverlapsItemArray and InternalRangeOverlapsItemArrayOutput values. // You can construct a concrete instance of `InternalRangeOverlapsItemArrayInput` via: // @@ -760,12 +741,6 @@ func (in *internalRangePeeringPtr) ToInternalRangePeeringPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(InternalRangePeeringPtrOutput) } -func (in *internalRangePeeringPtr) ToOutput(ctx context.Context) pulumix.Output[*InternalRangePeering] { - return pulumix.Output[*InternalRangePeering]{ - OutputState: in.ToInternalRangePeeringPtrOutputWithContext(ctx).OutputState, - } -} - // The type of usage set for this InternalRange. type InternalRangeUsage string @@ -937,12 +912,6 @@ func (in *internalRangeUsagePtr) ToInternalRangeUsagePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(InternalRangeUsagePtrOutput) } -func (in *internalRangeUsagePtr) ToOutput(ctx context.Context) pulumix.Output[*InternalRangeUsage] { - return pulumix.Output[*InternalRangeUsage]{ - OutputState: in.ToInternalRangeUsagePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Other routes that will be referenced to determine the next hop of the packet. type PolicyBasedRouteNextHopOtherRoutes string @@ -1111,12 +1080,6 @@ func (in *policyBasedRouteNextHopOtherRoutesPtr) ToPolicyBasedRouteNextHopOtherR return pulumi.ToOutputWithContext(ctx, in).(PolicyBasedRouteNextHopOtherRoutesPtrOutput) } -func (in *policyBasedRouteNextHopOtherRoutesPtr) ToOutput(ctx context.Context) pulumix.Output[*PolicyBasedRouteNextHopOtherRoutes] { - return pulumix.Output[*PolicyBasedRouteNextHopOtherRoutes]{ - OutputState: in.ToPolicyBasedRouteNextHopOtherRoutesPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/networkconnectivity/v1alpha1/pulumiEnums.go b/sdk/go/google/networkconnectivity/v1alpha1/pulumiEnums.go index 9c907522ba..18cb62ad17 100644 --- a/sdk/go/google/networkconnectivity/v1alpha1/pulumiEnums.go +++ b/sdk/go/google/networkconnectivity/v1alpha1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - type InternalRangeOverlapsItem string const ( @@ -361,12 +354,6 @@ func (in *internalRangeOverlapsItemPtr) ToInternalRangeOverlapsItemPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(InternalRangeOverlapsItemPtrOutput) } -func (in *internalRangeOverlapsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*InternalRangeOverlapsItem] { - return pulumix.Output[*InternalRangeOverlapsItem]{ - OutputState: in.ToInternalRangeOverlapsItemPtrOutputWithContext(ctx).OutputState, - } -} - // InternalRangeOverlapsItemArrayInput is an input type that accepts InternalRangeOverlapsItemArray and InternalRangeOverlapsItemArrayOutput values. // You can construct a concrete instance of `InternalRangeOverlapsItemArrayInput` via: // @@ -586,12 +573,6 @@ func (in *internalRangePeeringPtr) ToInternalRangePeeringPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(InternalRangePeeringPtrOutput) } -func (in *internalRangePeeringPtr) ToOutput(ctx context.Context) pulumix.Output[*InternalRangePeering] { - return pulumix.Output[*InternalRangePeering]{ - OutputState: in.ToInternalRangePeeringPtrOutputWithContext(ctx).OutputState, - } -} - // The type of usage set for this internal range. type InternalRangeUsage string @@ -763,12 +744,6 @@ func (in *internalRangeUsagePtr) ToInternalRangeUsagePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(InternalRangeUsagePtrOutput) } -func (in *internalRangeUsagePtr) ToOutput(ctx context.Context) pulumix.Output[*InternalRangeUsage] { - return pulumix.Output[*InternalRangeUsage]{ - OutputState: in.ToInternalRangeUsagePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/networkmanagement/v1/pulumiEnums.go b/sdk/go/google/networkmanagement/v1/pulumiEnums.go index 85664782b5..1bddae62df 100644 --- a/sdk/go/google/networkmanagement/v1/pulumiEnums.go +++ b/sdk/go/google/networkmanagement/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of the network where the endpoint is located. Applicable only to source endpoint, as destination network type can be inferred from the source. type EndpointNetworkType string @@ -362,12 +355,6 @@ func (in *endpointNetworkTypePtr) ToEndpointNetworkTypePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(EndpointNetworkTypePtrOutput) } -func (in *endpointNetworkTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EndpointNetworkType] { - return pulumix.Output[*EndpointNetworkType]{ - OutputState: in.ToEndpointNetworkTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/networkmanagement/v1beta1/pulumiEnums.go b/sdk/go/google/networkmanagement/v1beta1/pulumiEnums.go index ff82afbc4e..4190b352ac 100644 --- a/sdk/go/google/networkmanagement/v1beta1/pulumiEnums.go +++ b/sdk/go/google/networkmanagement/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Type of the network where the endpoint is located. Applicable only to source endpoint, as destination network type can be inferred from the source. type EndpointNetworkType string @@ -362,12 +355,6 @@ func (in *endpointNetworkTypePtr) ToEndpointNetworkTypePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(EndpointNetworkTypePtrOutput) } -func (in *endpointNetworkTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EndpointNetworkType] { - return pulumix.Output[*EndpointNetworkType]{ - OutputState: in.ToEndpointNetworkTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/networksecurity/v1/pulumiEnums.go b/sdk/go/google/networksecurity/v1/pulumiEnums.go index 0786615af7..16d9abeee6 100644 --- a/sdk/go/google/networksecurity/v1/pulumiEnums.go +++ b/sdk/go/google/networksecurity/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Required. The type of the Address Group. Possible values are "IPv4" or "IPV6". @@ -182,12 +181,6 @@ func (in *addressGroupTypePtr) ToAddressGroupTypePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(AddressGroupTypePtrOutput) } -func (in *addressGroupTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AddressGroupType] { - return pulumix.Output[*AddressGroupType]{ - OutputState: in.ToAddressGroupTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The action to take when a rule match is found. Possible values are "ALLOW" or "DENY". type AuthorizationPolicyAction string @@ -359,12 +352,6 @@ func (in *authorizationPolicyActionPtr) ToAuthorizationPolicyActionPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(AuthorizationPolicyActionPtrOutput) } -func (in *authorizationPolicyActionPtr) ToOutput(ctx context.Context) pulumix.Output[*AuthorizationPolicyAction] { - return pulumix.Output[*AuthorizationPolicyAction]{ - OutputState: in.ToAuthorizationPolicyActionPtrOutputWithContext(ctx).OutputState, - } -} - // The log type that this config enables. type GoogleIamV1AuditLogConfigLogType string @@ -539,12 +526,6 @@ func (in *googleIamV1AuditLogConfigLogTypePtr) ToGoogleIamV1AuditLogConfigLogTyp return pulumi.ToOutputWithContext(ctx, in).(GoogleIamV1AuditLogConfigLogTypePtrOutput) } -func (in *googleIamV1AuditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleIamV1AuditLogConfigLogType] { - return pulumix.Output[*GoogleIamV1AuditLogConfigLogType]{ - OutputState: in.ToGoogleIamV1AuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // When the client presents an invalid certificate or no certificate to the load balancer, the `client_validation_mode` specifies how the client connection is handled. Required if the policy is to be used with the external HTTPS load balancing. For Traffic Director it must be empty. type MTLSPolicyClientValidationMode string @@ -716,12 +697,6 @@ func (in *mtlspolicyClientValidationModePtr) ToMTLSPolicyClientValidationModePtr return pulumi.ToOutputWithContext(ctx, in).(MTLSPolicyClientValidationModePtrOutput) } -func (in *mtlspolicyClientValidationModePtr) ToOutput(ctx context.Context) pulumix.Output[*MTLSPolicyClientValidationMode] { - return pulumix.Output[*MTLSPolicyClientValidationMode]{ - OutputState: in.ToMTLSPolicyClientValidationModePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of the Address Group. Possible values are "IPv4" or "IPV6". type OrganizationAddressGroupType string @@ -893,12 +868,6 @@ func (in *organizationAddressGroupTypePtr) ToOrganizationAddressGroupTypePtrOutp return pulumi.ToOutputWithContext(ctx, in).(OrganizationAddressGroupTypePtrOutput) } -func (in *organizationAddressGroupTypePtr) ToOutput(ctx context.Context) pulumix.Output[*OrganizationAddressGroupType] { - return pulumix.Output[*OrganizationAddressGroupType]{ - OutputState: in.ToOrganizationAddressGroupTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Profile which tells what the primitive action should be. type RuleBasicProfile string @@ -1070,12 +1039,6 @@ func (in *ruleBasicProfilePtr) ToRuleBasicProfilePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(RuleBasicProfilePtrOutput) } -func (in *ruleBasicProfilePtr) ToOutput(ctx context.Context) pulumix.Output[*RuleBasicProfile] { - return pulumix.Output[*RuleBasicProfile]{ - OutputState: in.ToRuleBasicProfilePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Minimum TLS version that the firewall should use when negotiating connections with both clients and servers. If this is not set, then the default value is to allow the broadest set of clients and servers (TLS 1.0 or higher). Setting this to more restrictive values may improve security, but may also prevent the firewall from connecting to some clients or servers. Note that Secure Web Proxy does not yet honor this field. type TlsInspectionPolicyMinTlsVersion string @@ -1253,12 +1216,6 @@ func (in *tlsInspectionPolicyMinTlsVersionPtr) ToTlsInspectionPolicyMinTlsVersio return pulumi.ToOutputWithContext(ctx, in).(TlsInspectionPolicyMinTlsVersionPtrOutput) } -func (in *tlsInspectionPolicyMinTlsVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*TlsInspectionPolicyMinTlsVersion] { - return pulumix.Output[*TlsInspectionPolicyMinTlsVersion]{ - OutputState: in.ToTlsInspectionPolicyMinTlsVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The selected Profile. If this is not set, then the default value is to allow the broadest set of clients and servers ("PROFILE_COMPATIBLE"). Setting this to more restrictive values may improve security, but may also prevent the TLS inspection proxy from connecting to some clients or servers. Note that Secure Web Proxy does not yet honor this field. type TlsInspectionPolicyTlsFeatureProfile string @@ -1436,12 +1393,6 @@ func (in *tlsInspectionPolicyTlsFeatureProfilePtr) ToTlsInspectionPolicyTlsFeatu return pulumi.ToOutputWithContext(ctx, in).(TlsInspectionPolicyTlsFeatureProfilePtrOutput) } -func (in *tlsInspectionPolicyTlsFeatureProfilePtr) ToOutput(ctx context.Context) pulumix.Output[*TlsInspectionPolicyTlsFeatureProfile] { - return pulumix.Output[*TlsInspectionPolicyTlsFeatureProfile]{ - OutputState: in.ToTlsInspectionPolicyTlsFeatureProfilePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AddressGroupTypeInput)(nil)).Elem(), AddressGroupType("TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AddressGroupTypePtrInput)(nil)).Elem(), AddressGroupType("TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/networksecurity/v1beta1/pulumiEnums.go b/sdk/go/google/networksecurity/v1beta1/pulumiEnums.go index 8a47a65a69..d821a9b29d 100644 --- a/sdk/go/google/networksecurity/v1beta1/pulumiEnums.go +++ b/sdk/go/google/networksecurity/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Required. The type of the Address Group. Possible values are "IPv4" or "IPV6". @@ -182,12 +181,6 @@ func (in *addressGroupTypePtr) ToAddressGroupTypePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(AddressGroupTypePtrOutput) } -func (in *addressGroupTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AddressGroupType] { - return pulumix.Output[*AddressGroupType]{ - OutputState: in.ToAddressGroupTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The action to take when a rule match is found. Possible values are "ALLOW" or "DENY". type AuthorizationPolicyAction string @@ -359,12 +352,6 @@ func (in *authorizationPolicyActionPtr) ToAuthorizationPolicyActionPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(AuthorizationPolicyActionPtrOutput) } -func (in *authorizationPolicyActionPtr) ToOutput(ctx context.Context) pulumix.Output[*AuthorizationPolicyAction] { - return pulumix.Output[*AuthorizationPolicyAction]{ - OutputState: in.ToAuthorizationPolicyActionPtrOutputWithContext(ctx).OutputState, - } -} - // The log type that this config enables. type GoogleIamV1AuditLogConfigLogType string @@ -539,12 +526,6 @@ func (in *googleIamV1AuditLogConfigLogTypePtr) ToGoogleIamV1AuditLogConfigLogTyp return pulumi.ToOutputWithContext(ctx, in).(GoogleIamV1AuditLogConfigLogTypePtrOutput) } -func (in *googleIamV1AuditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleIamV1AuditLogConfigLogType] { - return pulumix.Output[*GoogleIamV1AuditLogConfigLogType]{ - OutputState: in.ToGoogleIamV1AuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // When the client presents an invalid certificate or no certificate to the load balancer, the `client_validation_mode` specifies how the client connection is handled. Required if the policy is to be used with the external HTTPS load balancing. For Traffic Director it must be empty. type MTLSPolicyClientValidationMode string @@ -716,12 +697,6 @@ func (in *mtlspolicyClientValidationModePtr) ToMTLSPolicyClientValidationModePtr return pulumi.ToOutputWithContext(ctx, in).(MTLSPolicyClientValidationModePtrOutput) } -func (in *mtlspolicyClientValidationModePtr) ToOutput(ctx context.Context) pulumix.Output[*MTLSPolicyClientValidationMode] { - return pulumix.Output[*MTLSPolicyClientValidationMode]{ - OutputState: in.ToMTLSPolicyClientValidationModePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of the Address Group. Possible values are "IPv4" or "IPV6". type OrganizationAddressGroupType string @@ -893,12 +868,6 @@ func (in *organizationAddressGroupTypePtr) ToOrganizationAddressGroupTypePtrOutp return pulumi.ToOutputWithContext(ctx, in).(OrganizationAddressGroupTypePtrOutput) } -func (in *organizationAddressGroupTypePtr) ToOutput(ctx context.Context) pulumix.Output[*OrganizationAddressGroupType] { - return pulumix.Output[*OrganizationAddressGroupType]{ - OutputState: in.ToOrganizationAddressGroupTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Profile which tells what the primitive action should be. type RuleBasicProfile string @@ -1070,12 +1039,6 @@ func (in *ruleBasicProfilePtr) ToRuleBasicProfilePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(RuleBasicProfilePtrOutput) } -func (in *ruleBasicProfilePtr) ToOutput(ctx context.Context) pulumix.Output[*RuleBasicProfile] { - return pulumix.Output[*RuleBasicProfile]{ - OutputState: in.ToRuleBasicProfilePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The single ProfileType that the SecurityProfile resource configures. type SecurityProfileType string @@ -1244,12 +1207,6 @@ func (in *securityProfileTypePtr) ToSecurityProfileTypePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(SecurityProfileTypePtrOutput) } -func (in *securityProfileTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SecurityProfileType] { - return pulumix.Output[*SecurityProfileType]{ - OutputState: in.ToSecurityProfileTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Threat action override. type SeverityOverrideAction string @@ -1427,12 +1384,6 @@ func (in *severityOverrideActionPtr) ToSeverityOverrideActionPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(SeverityOverrideActionPtrOutput) } -func (in *severityOverrideActionPtr) ToOutput(ctx context.Context) pulumix.Output[*SeverityOverrideAction] { - return pulumix.Output[*SeverityOverrideAction]{ - OutputState: in.ToSeverityOverrideActionPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Severity level to match. type SeverityOverrideSeverity string @@ -1613,12 +1564,6 @@ func (in *severityOverrideSeverityPtr) ToSeverityOverrideSeverityPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(SeverityOverrideSeverityPtrOutput) } -func (in *severityOverrideSeverityPtr) ToOutput(ctx context.Context) pulumix.Output[*SeverityOverrideSeverity] { - return pulumix.Output[*SeverityOverrideSeverity]{ - OutputState: in.ToSeverityOverrideSeverityPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Threat action override. For some threat types, only a subset of actions applies. type ThreatOverrideAction string @@ -1796,12 +1741,6 @@ func (in *threatOverrideActionPtr) ToThreatOverrideActionPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(ThreatOverrideActionPtrOutput) } -func (in *threatOverrideActionPtr) ToOutput(ctx context.Context) pulumix.Output[*ThreatOverrideAction] { - return pulumix.Output[*ThreatOverrideAction]{ - OutputState: in.ToThreatOverrideActionPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Minimum TLS version that the firewall should use when negotiating connections with both clients and servers. If this is not set, then the default value is to allow the broadest set of clients and servers (TLS 1.0 or higher). Setting this to more restrictive values may improve security, but may also prevent the firewall from connecting to some clients or servers. Note that Secure Web Proxy does not yet honor this field. type TlsInspectionPolicyMinTlsVersion string @@ -1979,12 +1918,6 @@ func (in *tlsInspectionPolicyMinTlsVersionPtr) ToTlsInspectionPolicyMinTlsVersio return pulumi.ToOutputWithContext(ctx, in).(TlsInspectionPolicyMinTlsVersionPtrOutput) } -func (in *tlsInspectionPolicyMinTlsVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*TlsInspectionPolicyMinTlsVersion] { - return pulumix.Output[*TlsInspectionPolicyMinTlsVersion]{ - OutputState: in.ToTlsInspectionPolicyMinTlsVersionPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The selected Profile. If this is not set, then the default value is to allow the broadest set of clients and servers ("PROFILE_COMPATIBLE"). Setting this to more restrictive values may improve security, but may also prevent the TLS inspection proxy from connecting to some clients or servers. Note that Secure Web Proxy does not yet honor this field. type TlsInspectionPolicyTlsFeatureProfile string @@ -2162,12 +2095,6 @@ func (in *tlsInspectionPolicyTlsFeatureProfilePtr) ToTlsInspectionPolicyTlsFeatu return pulumi.ToOutputWithContext(ctx, in).(TlsInspectionPolicyTlsFeatureProfilePtrOutput) } -func (in *tlsInspectionPolicyTlsFeatureProfilePtr) ToOutput(ctx context.Context) pulumix.Output[*TlsInspectionPolicyTlsFeatureProfile] { - return pulumix.Output[*TlsInspectionPolicyTlsFeatureProfile]{ - OutputState: in.ToTlsInspectionPolicyTlsFeatureProfilePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AddressGroupTypeInput)(nil)).Elem(), AddressGroupType("TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AddressGroupTypePtrInput)(nil)).Elem(), AddressGroupType("TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/networkservices/v1/pulumiEnums.go b/sdk/go/google/networkservices/v1/pulumiEnums.go index e6c397af95..8f1a8fd281 100644 --- a/sdk/go/google/networkservices/v1/pulumiEnums.go +++ b/sdk/go/google/networkservices/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how matching should be done. Supported values are: MATCH_ANY: At least one of the Labels specified in the matcher should match the metadata presented by xDS client. MATCH_ALL: The metadata presented by the xDS client should contain all of the labels specified here. The selection is determined based on the best match. For example, suppose there are three EndpointPolicy resources P1, P2 and P3 and if P1 has a the matcher as MATCH_ANY , P2 has MATCH_ALL , and P3 has MATCH_ALL . If a client with label connects, the config from P1 will be selected. If a client with label connects, the config from P2 will be selected. If a client with label connects, the config from P3 will be selected. If there is more than one best match, (for example, if a config P4 with selector exists and if a client with label connects), an error will be thrown. type EndpointMatcherMetadataLabelMatcherMetadataLabelMatchCriteria string @@ -362,12 +355,6 @@ func (in *endpointMatcherMetadataLabelMatcherMetadataLabelMatchCriteriaPtr) ToEn return pulumi.ToOutputWithContext(ctx, in).(EndpointMatcherMetadataLabelMatcherMetadataLabelMatchCriteriaPtrOutput) } -func (in *endpointMatcherMetadataLabelMatcherMetadataLabelMatchCriteriaPtr) ToOutput(ctx context.Context) pulumix.Output[*EndpointMatcherMetadataLabelMatcherMetadataLabelMatchCriteria] { - return pulumix.Output[*EndpointMatcherMetadataLabelMatcherMetadataLabelMatchCriteria]{ - OutputState: in.ToEndpointMatcherMetadataLabelMatcherMetadataLabelMatchCriteriaPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of endpoint policy. This is primarily used to validate the configuration. type EndpointPolicyType string @@ -539,12 +526,6 @@ func (in *endpointPolicyTypePtr) ToEndpointPolicyTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(EndpointPolicyTypePtrOutput) } -func (in *endpointPolicyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EndpointPolicyType] { - return pulumix.Output[*EndpointPolicyType]{ - OutputState: in.ToEndpointPolicyTypePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The type of the customer managed gateway. This field is required. If unspecified, an error is returned. type GatewayType string @@ -716,12 +697,6 @@ func (in *gatewayTypePtr) ToGatewayTypePtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(GatewayTypePtrOutput) } -func (in *gatewayTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GatewayType] { - return pulumix.Output[*GatewayType]{ - OutputState: in.ToGatewayTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Specifies how to match against the value of the header. If not specified, a default value of EXACT is used. type GrpcRouteHeaderMatchType string @@ -893,12 +868,6 @@ func (in *grpcRouteHeaderMatchTypePtr) ToGrpcRouteHeaderMatchTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(GrpcRouteHeaderMatchTypePtrOutput) } -func (in *grpcRouteHeaderMatchTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GrpcRouteHeaderMatchType] { - return pulumix.Output[*GrpcRouteHeaderMatchType]{ - OutputState: in.ToGrpcRouteHeaderMatchTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Specifies how to match against the name. If not specified, a default value of "EXACT" is used. type GrpcRouteMethodMatchType string @@ -1070,12 +1039,6 @@ func (in *grpcRouteMethodMatchTypePtr) ToGrpcRouteMethodMatchTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(GrpcRouteMethodMatchTypePtrOutput) } -func (in *grpcRouteMethodMatchTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GrpcRouteMethodMatchType] { - return pulumix.Output[*GrpcRouteMethodMatchType]{ - OutputState: in.ToGrpcRouteMethodMatchTypePtrOutputWithContext(ctx).OutputState, - } -} - // The HTTP Status code to use for the redirect. type HttpRouteRedirectResponseCode string @@ -1256,12 +1219,6 @@ func (in *httpRouteRedirectResponseCodePtr) ToHttpRouteRedirectResponseCodePtrOu return pulumi.ToOutputWithContext(ctx, in).(HttpRouteRedirectResponseCodePtrOutput) } -func (in *httpRouteRedirectResponseCodePtr) ToOutput(ctx context.Context) pulumix.Output[*HttpRouteRedirectResponseCode] { - return pulumix.Output[*HttpRouteRedirectResponseCode]{ - OutputState: in.ToHttpRouteRedirectResponseCodePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/networkservices/v1beta1/pulumiEnums.go b/sdk/go/google/networkservices/v1beta1/pulumiEnums.go index 4ba837f4d7..a2842ccb03 100644 --- a/sdk/go/google/networkservices/v1beta1/pulumiEnums.go +++ b/sdk/go/google/networkservices/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of endpoint policy. This is primarily used to validate the configuration. type EndpointPolicyType string @@ -362,12 +355,6 @@ func (in *endpointPolicyTypePtr) ToEndpointPolicyTypePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(EndpointPolicyTypePtrOutput) } -func (in *endpointPolicyTypePtr) ToOutput(ctx context.Context) pulumix.Output[*EndpointPolicyType] { - return pulumix.Output[*EndpointPolicyType]{ - OutputState: in.ToEndpointPolicyTypePtrOutputWithContext(ctx).OutputState, - } -} - type ExtensionChainExtensionSupportedEventsItem string const ( @@ -544,12 +531,6 @@ func (in *extensionChainExtensionSupportedEventsItemPtr) ToExtensionChainExtensi return pulumi.ToOutputWithContext(ctx, in).(ExtensionChainExtensionSupportedEventsItemPtrOutput) } -func (in *extensionChainExtensionSupportedEventsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*ExtensionChainExtensionSupportedEventsItem] { - return pulumix.Output[*ExtensionChainExtensionSupportedEventsItem]{ - OutputState: in.ToExtensionChainExtensionSupportedEventsItemPtrOutputWithContext(ctx).OutputState, - } -} - // ExtensionChainExtensionSupportedEventsItemArrayInput is an input type that accepts ExtensionChainExtensionSupportedEventsItemArray and ExtensionChainExtensionSupportedEventsItemArrayOutput values. // You can construct a concrete instance of `ExtensionChainExtensionSupportedEventsItemArrayInput` via: // @@ -766,12 +747,6 @@ func (in *gatewayTypePtr) ToGatewayTypePtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(GatewayTypePtrOutput) } -func (in *gatewayTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GatewayType] { - return pulumix.Output[*GatewayType]{ - OutputState: in.ToGatewayTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Specifies how to match against the value of the header. If not specified, a default value of EXACT is used. type GrpcRouteHeaderMatchType string @@ -943,12 +918,6 @@ func (in *grpcRouteHeaderMatchTypePtr) ToGrpcRouteHeaderMatchTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(GrpcRouteHeaderMatchTypePtrOutput) } -func (in *grpcRouteHeaderMatchTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GrpcRouteHeaderMatchType] { - return pulumix.Output[*GrpcRouteHeaderMatchType]{ - OutputState: in.ToGrpcRouteHeaderMatchTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Specifies how to match against the name. If not specified, a default value of "EXACT" is used. type GrpcRouteMethodMatchType string @@ -1120,12 +1089,6 @@ func (in *grpcRouteMethodMatchTypePtr) ToGrpcRouteMethodMatchTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(GrpcRouteMethodMatchTypePtrOutput) } -func (in *grpcRouteMethodMatchTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GrpcRouteMethodMatchType] { - return pulumix.Output[*GrpcRouteMethodMatchType]{ - OutputState: in.ToGrpcRouteMethodMatchTypePtrOutputWithContext(ctx).OutputState, - } -} - // The HTTP Status code to use for the redirect. type HttpRouteRedirectResponseCode string @@ -1306,12 +1269,6 @@ func (in *httpRouteRedirectResponseCodePtr) ToHttpRouteRedirectResponseCodePtrOu return pulumi.ToOutputWithContext(ctx, in).(HttpRouteRedirectResponseCodePtrOutput) } -func (in *httpRouteRedirectResponseCodePtr) ToOutput(ctx context.Context) pulumix.Output[*HttpRouteRedirectResponseCode] { - return pulumix.Output[*HttpRouteRedirectResponseCode]{ - OutputState: in.ToHttpRouteRedirectResponseCodePtrOutputWithContext(ctx).OutputState, - } -} - // Required. All backend services and forwarding rules referenced by this extension must share the same load balancing scheme. Supported values: `INTERNAL_MANAGED`, `EXTERNAL_MANAGED`. For more information, refer to [Choosing a load balancer](https://cloud.google.com/load-balancing/docs/backend-service). type LbRouteExtensionLoadBalancingScheme string @@ -1483,12 +1440,6 @@ func (in *lbRouteExtensionLoadBalancingSchemePtr) ToLbRouteExtensionLoadBalancin return pulumi.ToOutputWithContext(ctx, in).(LbRouteExtensionLoadBalancingSchemePtrOutput) } -func (in *lbRouteExtensionLoadBalancingSchemePtr) ToOutput(ctx context.Context) pulumix.Output[*LbRouteExtensionLoadBalancingScheme] { - return pulumix.Output[*LbRouteExtensionLoadBalancingScheme]{ - OutputState: in.ToLbRouteExtensionLoadBalancingSchemePtrOutputWithContext(ctx).OutputState, - } -} - // Required. All backend services and forwarding rules referenced by this extension must share the same load balancing scheme. Supported values: `INTERNAL_MANAGED`, `EXTERNAL_MANAGED`. For more information, refer to [Choosing a load balancer](https://cloud.google.com/load-balancing/docs/backend-service). type LbTrafficExtensionLoadBalancingScheme string @@ -1660,12 +1611,6 @@ func (in *lbTrafficExtensionLoadBalancingSchemePtr) ToLbTrafficExtensionLoadBala return pulumi.ToOutputWithContext(ctx, in).(LbTrafficExtensionLoadBalancingSchemePtrOutput) } -func (in *lbTrafficExtensionLoadBalancingSchemePtr) ToOutput(ctx context.Context) pulumix.Output[*LbTrafficExtensionLoadBalancingScheme] { - return pulumix.Output[*LbTrafficExtensionLoadBalancingScheme]{ - OutputState: in.ToLbTrafficExtensionLoadBalancingSchemePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how matching should be done. Supported values are: MATCH_ANY: At least one of the Labels specified in the matcher should match the metadata presented by xDS client. MATCH_ALL: The metadata presented by the xDS client should contain all of the labels specified here. The selection is determined based on the best match. For example, suppose there are three EndpointPolicy resources P1, P2 and P3 and if P1 has a the matcher as MATCH_ANY , P2 has MATCH_ALL , and P3 has MATCH_ALL . If a client with label connects, the config from P1 will be selected. If a client with label connects, the config from P2 will be selected. If a client with label connects, the config from P3 will be selected. If there is more than one best match, (for example, if a config P4 with selector exists and if a client with label connects), an error will be thrown. type MetadataLabelMatcherMetadataLabelMatchCriteria string @@ -1837,12 +1782,6 @@ func (in *metadataLabelMatcherMetadataLabelMatchCriteriaPtr) ToMetadataLabelMatc return pulumi.ToOutputWithContext(ctx, in).(MetadataLabelMatcherMetadataLabelMatchCriteriaPtrOutput) } -func (in *metadataLabelMatcherMetadataLabelMatchCriteriaPtr) ToOutput(ctx context.Context) pulumix.Output[*MetadataLabelMatcherMetadataLabelMatchCriteria] { - return pulumix.Output[*MetadataLabelMatcherMetadataLabelMatchCriteria]{ - OutputState: in.ToMetadataLabelMatcherMetadataLabelMatchCriteriaPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The type of load balancing algorithm to be used. The default behavior is WATERFALL_BY_REGION. type ServiceLbPolicyLoadBalancingAlgorithm string @@ -2020,12 +1959,6 @@ func (in *serviceLbPolicyLoadBalancingAlgorithmPtr) ToServiceLbPolicyLoadBalanci return pulumi.ToOutputWithContext(ctx, in).(ServiceLbPolicyLoadBalancingAlgorithmPtrOutput) } -func (in *serviceLbPolicyLoadBalancingAlgorithmPtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceLbPolicyLoadBalancingAlgorithm] { - return pulumix.Output[*ServiceLbPolicyLoadBalancingAlgorithm]{ - OutputState: in.ToServiceLbPolicyLoadBalancingAlgorithmPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/notebooks/v1/pulumiEnums.go b/sdk/go/google/notebooks/v1/pulumiEnums.go index 84e7cb1e9b..f3eca5ac94 100644 --- a/sdk/go/google/notebooks/v1/pulumiEnums.go +++ b/sdk/go/google/notebooks/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Type of this accelerator. @@ -212,12 +211,6 @@ func (in *acceleratorConfigTypePtr) ToAcceleratorConfigTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AcceleratorConfigTypePtrOutput) } -func (in *acceleratorConfigTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AcceleratorConfigType] { - return pulumix.Output[*AcceleratorConfigType]{ - OutputState: in.ToAcceleratorConfigTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of Job to be used on this execution. type ExecutionTemplateJobType string @@ -389,12 +382,6 @@ func (in *executionTemplateJobTypePtr) ToExecutionTemplateJobTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(ExecutionTemplateJobTypePtrOutput) } -func (in *executionTemplateJobTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ExecutionTemplateJobType] { - return pulumix.Output[*ExecutionTemplateJobType]{ - OutputState: in.ToExecutionTemplateJobTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Scale tier of the hardware used for notebook execution. DEPRECATED Will be discontinued. As right now only CUSTOM is supported. type ExecutionTemplateScaleTier string @@ -578,12 +565,6 @@ func (in *executionTemplateScaleTierPtr) ToExecutionTemplateScaleTierPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(ExecutionTemplateScaleTierPtrOutput) } -func (in *executionTemplateScaleTierPtr) ToOutput(ctx context.Context) pulumix.Output[*ExecutionTemplateScaleTier] { - return pulumix.Output[*ExecutionTemplateScaleTier]{ - OutputState: in.ToExecutionTemplateScaleTierPtrOutputWithContext(ctx).OutputState, - } -} - // Input only. The type of the boot disk attached to this instance, defaults to standard persistent disk (`PD_STANDARD`). type InstanceBootDiskType string @@ -761,12 +742,6 @@ func (in *instanceBootDiskTypePtr) ToInstanceBootDiskTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(InstanceBootDiskTypePtrOutput) } -func (in *instanceBootDiskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceBootDiskType] { - return pulumix.Output[*InstanceBootDiskType]{ - OutputState: in.ToInstanceBootDiskTypePtrOutputWithContext(ctx).OutputState, - } -} - // Input only. The type of the data disk attached to this instance, defaults to standard persistent disk (`PD_STANDARD`). type InstanceDataDiskType string @@ -944,12 +919,6 @@ func (in *instanceDataDiskTypePtr) ToInstanceDataDiskTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(InstanceDataDiskTypePtrOutput) } -func (in *instanceDataDiskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceDataDiskType] { - return pulumix.Output[*InstanceDataDiskType]{ - OutputState: in.ToInstanceDataDiskTypePtrOutputWithContext(ctx).OutputState, - } -} - // Input only. Disk encryption method used on the boot and data disks, defaults to GMEK. type InstanceDiskEncryption string @@ -1121,12 +1090,6 @@ func (in *instanceDiskEncryptionPtr) ToInstanceDiskEncryptionPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(InstanceDiskEncryptionPtrOutput) } -func (in *instanceDiskEncryptionPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceDiskEncryption] { - return pulumix.Output[*InstanceDiskEncryption]{ - OutputState: in.ToInstanceDiskEncryptionPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The type of vNIC to be used on this interface. This may be gVNIC or VirtioNet. type InstanceNicType string @@ -1298,12 +1261,6 @@ func (in *instanceNicTypePtr) ToInstanceNicTypePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(InstanceNicTypePtrOutput) } -func (in *instanceNicTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceNicType] { - return pulumix.Output[*InstanceNicType]{ - OutputState: in.ToInstanceNicTypePtrOutputWithContext(ctx).OutputState, - } -} - // Input only. The type of the boot disk attached to this instance, defaults to standard persistent disk (`PD_STANDARD`). type LocalDiskInitializeParamsDiskType string @@ -1481,12 +1438,6 @@ func (in *localDiskInitializeParamsDiskTypePtr) ToLocalDiskInitializeParamsDiskT return pulumi.ToOutputWithContext(ctx, in).(LocalDiskInitializeParamsDiskTypePtrOutput) } -func (in *localDiskInitializeParamsDiskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*LocalDiskInitializeParamsDiskType] { - return pulumix.Output[*LocalDiskInitializeParamsDiskType]{ - OutputState: in.ToLocalDiskInitializeParamsDiskTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Type of reservation to consume type ReservationAffinityConsumeReservationType string @@ -1661,12 +1612,6 @@ func (in *reservationAffinityConsumeReservationTypePtr) ToReservationAffinityCon return pulumi.ToOutputWithContext(ctx, in).(ReservationAffinityConsumeReservationTypePtrOutput) } -func (in *reservationAffinityConsumeReservationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ReservationAffinityConsumeReservationType] { - return pulumix.Output[*ReservationAffinityConsumeReservationType]{ - OutputState: in.ToReservationAffinityConsumeReservationTypePtrOutputWithContext(ctx).OutputState, - } -} - // Accelerator model. type RuntimeAcceleratorConfigType string @@ -1868,12 +1813,6 @@ func (in *runtimeAcceleratorConfigTypePtr) ToRuntimeAcceleratorConfigTypePtrOutp return pulumi.ToOutputWithContext(ctx, in).(RuntimeAcceleratorConfigTypePtrOutput) } -func (in *runtimeAcceleratorConfigTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RuntimeAcceleratorConfigType] { - return pulumix.Output[*RuntimeAcceleratorConfigType]{ - OutputState: in.ToRuntimeAcceleratorConfigTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of access mode this instance. type RuntimeAccessConfigAccessType string @@ -2045,12 +1984,6 @@ func (in *runtimeAccessConfigAccessTypePtr) ToRuntimeAccessConfigAccessTypePtrOu return pulumi.ToOutputWithContext(ctx, in).(RuntimeAccessConfigAccessTypePtrOutput) } -func (in *runtimeAccessConfigAccessTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RuntimeAccessConfigAccessType] { - return pulumix.Output[*RuntimeAccessConfigAccessType]{ - OutputState: in.ToRuntimeAccessConfigAccessTypePtrOutputWithContext(ctx).OutputState, - } -} - // Behavior for the post startup script. type RuntimeSoftwareConfigPostStartupScriptBehavior string @@ -2222,12 +2155,6 @@ func (in *runtimeSoftwareConfigPostStartupScriptBehaviorPtr) ToRuntimeSoftwareCo return pulumi.ToOutputWithContext(ctx, in).(RuntimeSoftwareConfigPostStartupScriptBehaviorPtrOutput) } -func (in *runtimeSoftwareConfigPostStartupScriptBehaviorPtr) ToOutput(ctx context.Context) pulumix.Output[*RuntimeSoftwareConfigPostStartupScriptBehavior] { - return pulumix.Output[*RuntimeSoftwareConfigPostStartupScriptBehavior]{ - OutputState: in.ToRuntimeSoftwareConfigPostStartupScriptBehaviorPtrOutputWithContext(ctx).OutputState, - } -} - type ScheduleStateEnum string const ( @@ -2410,12 +2337,6 @@ func (in *scheduleStateEnumPtr) ToScheduleStateEnumPtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(ScheduleStateEnumPtrOutput) } -func (in *scheduleStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*ScheduleStateEnum] { - return pulumix.Output[*ScheduleStateEnum]{ - OutputState: in.ToScheduleStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // Type of this accelerator. type SchedulerAcceleratorConfigType string @@ -2605,12 +2526,6 @@ func (in *schedulerAcceleratorConfigTypePtr) ToSchedulerAcceleratorConfigTypePtr return pulumi.ToOutputWithContext(ctx, in).(SchedulerAcceleratorConfigTypePtrOutput) } -func (in *schedulerAcceleratorConfigTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SchedulerAcceleratorConfigType] { - return pulumix.Output[*SchedulerAcceleratorConfigType]{ - OutputState: in.ToSchedulerAcceleratorConfigTypePtrOutputWithContext(ctx).OutputState, - } -} - // Action. Rolloback or Upgrade. type UpgradeHistoryEntryAction string @@ -2782,12 +2697,6 @@ func (in *upgradeHistoryEntryActionPtr) ToUpgradeHistoryEntryActionPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(UpgradeHistoryEntryActionPtrOutput) } -func (in *upgradeHistoryEntryActionPtr) ToOutput(ctx context.Context) pulumix.Output[*UpgradeHistoryEntryAction] { - return pulumix.Output[*UpgradeHistoryEntryAction]{ - OutputState: in.ToUpgradeHistoryEntryActionPtrOutputWithContext(ctx).OutputState, - } -} - // The state of this instance upgrade history entry. type UpgradeHistoryEntryState string @@ -2962,12 +2871,6 @@ func (in *upgradeHistoryEntryStatePtr) ToUpgradeHistoryEntryStatePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(UpgradeHistoryEntryStatePtrOutput) } -func (in *upgradeHistoryEntryStatePtr) ToOutput(ctx context.Context) pulumix.Output[*UpgradeHistoryEntryState] { - return pulumix.Output[*UpgradeHistoryEntryState]{ - OutputState: in.ToUpgradeHistoryEntryStatePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The type of vNIC to be used on this interface. This may be gVNIC or VirtioNet. type VirtualMachineConfigNicType string @@ -3139,12 +3042,6 @@ func (in *virtualMachineConfigNicTypePtr) ToVirtualMachineConfigNicTypePtrOutput return pulumi.ToOutputWithContext(ctx, in).(VirtualMachineConfigNicTypePtrOutput) } -func (in *virtualMachineConfigNicTypePtr) ToOutput(ctx context.Context) pulumix.Output[*VirtualMachineConfigNicType] { - return pulumix.Output[*VirtualMachineConfigNicType]{ - OutputState: in.ToVirtualMachineConfigNicTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AcceleratorConfigTypeInput)(nil)).Elem(), AcceleratorConfigType("ACCELERATOR_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AcceleratorConfigTypePtrInput)(nil)).Elem(), AcceleratorConfigType("ACCELERATOR_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/notebooks/v2/pulumiEnums.go b/sdk/go/google/notebooks/v2/pulumiEnums.go index cabee3a193..6c42988a71 100644 --- a/sdk/go/google/notebooks/v2/pulumiEnums.go +++ b/sdk/go/google/notebooks/v2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Optional. Type of this accelerator. @@ -206,12 +205,6 @@ func (in *acceleratorConfigTypePtr) ToAcceleratorConfigTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AcceleratorConfigTypePtrOutput) } -func (in *acceleratorConfigTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AcceleratorConfigType] { - return pulumix.Output[*AcceleratorConfigType]{ - OutputState: in.ToAcceleratorConfigTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Input only. Disk encryption method used on the boot and data disks, defaults to GMEK. type BootDiskDiskEncryption string @@ -383,12 +376,6 @@ func (in *bootDiskDiskEncryptionPtr) ToBootDiskDiskEncryptionPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(BootDiskDiskEncryptionPtrOutput) } -func (in *bootDiskDiskEncryptionPtr) ToOutput(ctx context.Context) pulumix.Output[*BootDiskDiskEncryption] { - return pulumix.Output[*BootDiskDiskEncryption]{ - OutputState: in.ToBootDiskDiskEncryptionPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Indicates the type of the disk. type BootDiskDiskType string @@ -566,12 +553,6 @@ func (in *bootDiskDiskTypePtr) ToBootDiskDiskTypePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(BootDiskDiskTypePtrOutput) } -func (in *bootDiskDiskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*BootDiskDiskType] { - return pulumix.Output[*BootDiskDiskType]{ - OutputState: in.ToBootDiskDiskTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Input only. Disk encryption method used on the boot and data disks, defaults to GMEK. type DataDiskDiskEncryption string @@ -743,12 +724,6 @@ func (in *dataDiskDiskEncryptionPtr) ToDataDiskDiskEncryptionPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(DataDiskDiskEncryptionPtrOutput) } -func (in *dataDiskDiskEncryptionPtr) ToOutput(ctx context.Context) pulumix.Output[*DataDiskDiskEncryption] { - return pulumix.Output[*DataDiskDiskEncryption]{ - OutputState: in.ToDataDiskDiskEncryptionPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Input only. Indicates the type of the disk. type DataDiskDiskType string @@ -926,12 +901,6 @@ func (in *dataDiskDiskTypePtr) ToDataDiskDiskTypePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(DataDiskDiskTypePtrOutput) } -func (in *dataDiskDiskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*DataDiskDiskType] { - return pulumix.Output[*DataDiskDiskType]{ - OutputState: in.ToDataDiskDiskTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The type of vNIC to be used on this interface. This may be gVNIC or VirtioNet. type NetworkInterfaceNicType string @@ -1103,12 +1072,6 @@ func (in *networkInterfaceNicTypePtr) ToNetworkInterfaceNicTypePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(NetworkInterfaceNicTypePtrOutput) } -func (in *networkInterfaceNicTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkInterfaceNicType] { - return pulumix.Output[*NetworkInterfaceNicType]{ - OutputState: in.ToNetworkInterfaceNicTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AcceleratorConfigTypeInput)(nil)).Elem(), AcceleratorConfigType("ACCELERATOR_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AcceleratorConfigTypePtrInput)(nil)).Elem(), AcceleratorConfigType("ACCELERATOR_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/orgpolicy/v2/pulumiEnums.go b/sdk/go/google/orgpolicy/v2/pulumiEnums.go index 282e9b8970..215d98baa7 100644 --- a/sdk/go/google/orgpolicy/v2/pulumiEnums.go +++ b/sdk/go/google/orgpolicy/v2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Allow or deny type. @@ -182,12 +181,6 @@ func (in *customConstraintActionTypePtr) ToCustomConstraintActionTypePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(CustomConstraintActionTypePtrOutput) } -func (in *customConstraintActionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*CustomConstraintActionType] { - return pulumix.Output[*CustomConstraintActionType]{ - OutputState: in.ToCustomConstraintActionTypePtrOutputWithContext(ctx).OutputState, - } -} - type CustomConstraintMethodTypesItem string const ( @@ -361,12 +354,6 @@ func (in *customConstraintMethodTypesItemPtr) ToCustomConstraintMethodTypesItemP return pulumi.ToOutputWithContext(ctx, in).(CustomConstraintMethodTypesItemPtrOutput) } -func (in *customConstraintMethodTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*CustomConstraintMethodTypesItem] { - return pulumix.Output[*CustomConstraintMethodTypesItem]{ - OutputState: in.ToCustomConstraintMethodTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // CustomConstraintMethodTypesItemArrayInput is an input type that accepts CustomConstraintMethodTypesItemArray and CustomConstraintMethodTypesItemArrayOutput values. // You can construct a concrete instance of `CustomConstraintMethodTypesItemArrayInput` via: // diff --git a/sdk/go/google/osconfig/v1/pulumiEnums.go b/sdk/go/google/osconfig/v1/pulumiEnums.go index 17c1c64422..241ca9510b 100644 --- a/sdk/go/google/osconfig/v1/pulumiEnums.go +++ b/sdk/go/google/osconfig/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // By changing the type to DIST, the patching is performed using `apt-get dist-upgrade` instead. @@ -182,12 +181,6 @@ func (in *aptSettingsTypePtr) ToAptSettingsTypePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(AptSettingsTypePtrOutput) } -func (in *aptSettingsTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AptSettingsType] { - return pulumix.Output[*AptSettingsType]{ - OutputState: in.ToAptSettingsTypePtrOutputWithContext(ctx).OutputState, - } -} - // The script interpreter to use to run the script. If no interpreter is specified the script will be executed directly, which will likely only succeed for scripts with [shebang lines] (https://en.wikipedia.org/wiki/Shebang_\(Unix\)). type ExecStepConfigInterpreter string @@ -362,12 +355,6 @@ func (in *execStepConfigInterpreterPtr) ToExecStepConfigInterpreterPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(ExecStepConfigInterpreterPtrOutput) } -func (in *execStepConfigInterpreterPtr) ToOutput(ctx context.Context) pulumix.Output[*ExecStepConfigInterpreter] { - return pulumix.Output[*ExecStepConfigInterpreter]{ - OutputState: in.ToExecStepConfigInterpreterPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Policy mode type OSPolicyMode string @@ -539,12 +526,6 @@ func (in *ospolicyModePtr) ToOSPolicyModePtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(OSPolicyModePtrOutput) } -func (in *ospolicyModePtr) ToOutput(ctx context.Context) pulumix.Output[*OSPolicyMode] { - return pulumix.Output[*OSPolicyMode]{ - OutputState: in.ToOSPolicyModePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The script interpreter to use. type OSPolicyResourceExecResourceExecInterpreter string @@ -719,12 +700,6 @@ func (in *ospolicyResourceExecResourceExecInterpreterPtr) ToOSPolicyResourceExec return pulumi.ToOutputWithContext(ctx, in).(OSPolicyResourceExecResourceExecInterpreterPtrOutput) } -func (in *ospolicyResourceExecResourceExecInterpreterPtr) ToOutput(ctx context.Context) pulumix.Output[*OSPolicyResourceExecResourceExecInterpreter] { - return pulumix.Output[*OSPolicyResourceExecResourceExecInterpreter]{ - OutputState: in.ToOSPolicyResourceExecResourceExecInterpreterPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Desired state of the file. type OSPolicyResourceFileResourceState string @@ -899,12 +874,6 @@ func (in *ospolicyResourceFileResourceStatePtr) ToOSPolicyResourceFileResourceSt return pulumi.ToOutputWithContext(ctx, in).(OSPolicyResourceFileResourceStatePtrOutput) } -func (in *ospolicyResourceFileResourceStatePtr) ToOutput(ctx context.Context) pulumix.Output[*OSPolicyResourceFileResourceState] { - return pulumix.Output[*OSPolicyResourceFileResourceState]{ - OutputState: in.ToOSPolicyResourceFileResourceStatePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The desired state the agent should maintain for this package. type OSPolicyResourcePackageResourceDesiredState string @@ -1076,12 +1045,6 @@ func (in *ospolicyResourcePackageResourceDesiredStatePtr) ToOSPolicyResourcePack return pulumi.ToOutputWithContext(ctx, in).(OSPolicyResourcePackageResourceDesiredStatePtrOutput) } -func (in *ospolicyResourcePackageResourceDesiredStatePtr) ToOutput(ctx context.Context) pulumix.Output[*OSPolicyResourcePackageResourceDesiredState] { - return pulumix.Output[*OSPolicyResourcePackageResourceDesiredState]{ - OutputState: in.ToOSPolicyResourcePackageResourceDesiredStatePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Type of archive files in this repository. type OSPolicyResourceRepositoryResourceAptRepositoryArchiveType string @@ -1253,12 +1216,6 @@ func (in *ospolicyResourceRepositoryResourceAptRepositoryArchiveTypePtr) ToOSPol return pulumi.ToOutputWithContext(ctx, in).(OSPolicyResourceRepositoryResourceAptRepositoryArchiveTypePtrOutput) } -func (in *ospolicyResourceRepositoryResourceAptRepositoryArchiveTypePtr) ToOutput(ctx context.Context) pulumix.Output[*OSPolicyResourceRepositoryResourceAptRepositoryArchiveType] { - return pulumix.Output[*OSPolicyResourceRepositoryResourceAptRepositoryArchiveType]{ - OutputState: in.ToOSPolicyResourceRepositoryResourceAptRepositoryArchiveTypePtrOutputWithContext(ctx).OutputState, - } -} - // Post-patch reboot settings. type PatchConfigRebootConfig string @@ -1433,12 +1390,6 @@ func (in *patchConfigRebootConfigPtr) ToPatchConfigRebootConfigPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(PatchConfigRebootConfigPtrOutput) } -func (in *patchConfigRebootConfigPtr) ToOutput(ctx context.Context) pulumix.Output[*PatchConfigRebootConfig] { - return pulumix.Output[*PatchConfigRebootConfig]{ - OutputState: in.ToPatchConfigRebootConfigPtrOutputWithContext(ctx).OutputState, - } -} - // Mode of the patch rollout. type PatchRolloutMode string @@ -1610,12 +1561,6 @@ func (in *patchRolloutModePtr) ToPatchRolloutModePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(PatchRolloutModePtrOutput) } -func (in *patchRolloutModePtr) ToOutput(ctx context.Context) pulumix.Output[*PatchRolloutMode] { - return pulumix.Output[*PatchRolloutMode]{ - OutputState: in.ToPatchRolloutModePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The frequency unit of this recurring schedule. type RecurringScheduleFrequency string @@ -1790,12 +1735,6 @@ func (in *recurringScheduleFrequencyPtr) ToRecurringScheduleFrequencyPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(RecurringScheduleFrequencyPtrOutput) } -func (in *recurringScheduleFrequencyPtr) ToOutput(ctx context.Context) pulumix.Output[*RecurringScheduleFrequency] { - return pulumix.Output[*RecurringScheduleFrequency]{ - OutputState: in.ToRecurringScheduleFrequencyPtrOutputWithContext(ctx).OutputState, - } -} - // Required. A day of the week. type WeekDayOfMonthDayOfWeek string @@ -1982,12 +1921,6 @@ func (in *weekDayOfMonthDayOfWeekPtr) ToWeekDayOfMonthDayOfWeekPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(WeekDayOfMonthDayOfWeekPtrOutput) } -func (in *weekDayOfMonthDayOfWeekPtr) ToOutput(ctx context.Context) pulumix.Output[*WeekDayOfMonthDayOfWeek] { - return pulumix.Output[*WeekDayOfMonthDayOfWeek]{ - OutputState: in.ToWeekDayOfMonthDayOfWeekPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Day of the week. type WeeklyScheduleDayOfWeek string @@ -2174,12 +2107,6 @@ func (in *weeklyScheduleDayOfWeekPtr) ToWeeklyScheduleDayOfWeekPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(WeeklyScheduleDayOfWeekPtrOutput) } -func (in *weeklyScheduleDayOfWeekPtr) ToOutput(ctx context.Context) pulumix.Output[*WeeklyScheduleDayOfWeek] { - return pulumix.Output[*WeeklyScheduleDayOfWeek]{ - OutputState: in.ToWeeklyScheduleDayOfWeekPtrOutputWithContext(ctx).OutputState, - } -} - type WindowsUpdateSettingsClassificationsItem string const ( @@ -2371,12 +2298,6 @@ func (in *windowsUpdateSettingsClassificationsItemPtr) ToWindowsUpdateSettingsCl return pulumi.ToOutputWithContext(ctx, in).(WindowsUpdateSettingsClassificationsItemPtrOutput) } -func (in *windowsUpdateSettingsClassificationsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*WindowsUpdateSettingsClassificationsItem] { - return pulumix.Output[*WindowsUpdateSettingsClassificationsItem]{ - OutputState: in.ToWindowsUpdateSettingsClassificationsItemPtrOutputWithContext(ctx).OutputState, - } -} - // WindowsUpdateSettingsClassificationsItemArrayInput is an input type that accepts WindowsUpdateSettingsClassificationsItemArray and WindowsUpdateSettingsClassificationsItemArrayOutput values. // You can construct a concrete instance of `WindowsUpdateSettingsClassificationsItemArrayInput` via: // diff --git a/sdk/go/google/osconfig/v1alpha/pulumiEnums.go b/sdk/go/google/osconfig/v1alpha/pulumiEnums.go index d33fb70d5a..67859ff1ad 100644 --- a/sdk/go/google/osconfig/v1alpha/pulumiEnums.go +++ b/sdk/go/google/osconfig/v1alpha/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Required. Policy mode @@ -182,12 +181,6 @@ func (in *ospolicyModePtr) ToOSPolicyModePtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(OSPolicyModePtrOutput) } -func (in *ospolicyModePtr) ToOutput(ctx context.Context) pulumix.Output[*OSPolicyMode] { - return pulumix.Output[*OSPolicyMode]{ - OutputState: in.ToOSPolicyModePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The script interpreter to use. type OSPolicyResourceExecResourceExecInterpreter string @@ -362,12 +355,6 @@ func (in *ospolicyResourceExecResourceExecInterpreterPtr) ToOSPolicyResourceExec return pulumi.ToOutputWithContext(ctx, in).(OSPolicyResourceExecResourceExecInterpreterPtrOutput) } -func (in *ospolicyResourceExecResourceExecInterpreterPtr) ToOutput(ctx context.Context) pulumix.Output[*OSPolicyResourceExecResourceExecInterpreter] { - return pulumix.Output[*OSPolicyResourceExecResourceExecInterpreter]{ - OutputState: in.ToOSPolicyResourceExecResourceExecInterpreterPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Desired state of the file. type OSPolicyResourceFileResourceState string @@ -542,12 +529,6 @@ func (in *ospolicyResourceFileResourceStatePtr) ToOSPolicyResourceFileResourceSt return pulumi.ToOutputWithContext(ctx, in).(OSPolicyResourceFileResourceStatePtrOutput) } -func (in *ospolicyResourceFileResourceStatePtr) ToOutput(ctx context.Context) pulumix.Output[*OSPolicyResourceFileResourceState] { - return pulumix.Output[*OSPolicyResourceFileResourceState]{ - OutputState: in.ToOSPolicyResourceFileResourceStatePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The desired state the agent should maintain for this package. type OSPolicyResourcePackageResourceDesiredState string @@ -719,12 +700,6 @@ func (in *ospolicyResourcePackageResourceDesiredStatePtr) ToOSPolicyResourcePack return pulumi.ToOutputWithContext(ctx, in).(OSPolicyResourcePackageResourceDesiredStatePtrOutput) } -func (in *ospolicyResourcePackageResourceDesiredStatePtr) ToOutput(ctx context.Context) pulumix.Output[*OSPolicyResourcePackageResourceDesiredState] { - return pulumix.Output[*OSPolicyResourcePackageResourceDesiredState]{ - OutputState: in.ToOSPolicyResourcePackageResourceDesiredStatePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Type of archive files in this repository. type OSPolicyResourceRepositoryResourceAptRepositoryArchiveType string @@ -896,12 +871,6 @@ func (in *ospolicyResourceRepositoryResourceAptRepositoryArchiveTypePtr) ToOSPol return pulumi.ToOutputWithContext(ctx, in).(OSPolicyResourceRepositoryResourceAptRepositoryArchiveTypePtrOutput) } -func (in *ospolicyResourceRepositoryResourceAptRepositoryArchiveTypePtr) ToOutput(ctx context.Context) pulumix.Output[*OSPolicyResourceRepositoryResourceAptRepositoryArchiveType] { - return pulumix.Output[*OSPolicyResourceRepositoryResourceAptRepositoryArchiveType]{ - OutputState: in.ToOSPolicyResourceRepositoryResourceAptRepositoryArchiveTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*OSPolicyModeInput)(nil)).Elem(), OSPolicyMode("MODE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*OSPolicyModePtrInput)(nil)).Elem(), OSPolicyMode("MODE_UNSPECIFIED")) diff --git a/sdk/go/google/osconfig/v1beta/pulumiEnums.go b/sdk/go/google/osconfig/v1beta/pulumiEnums.go index 254bc6757d..16e1f2dff2 100644 --- a/sdk/go/google/osconfig/v1beta/pulumiEnums.go +++ b/sdk/go/google/osconfig/v1beta/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Type of archive files in this repository. The default behavior is DEB. @@ -182,12 +181,6 @@ func (in *aptRepositoryArchiveTypePtr) ToAptRepositoryArchiveTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(AptRepositoryArchiveTypePtrOutput) } -func (in *aptRepositoryArchiveTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AptRepositoryArchiveType] { - return pulumix.Output[*AptRepositoryArchiveType]{ - OutputState: in.ToAptRepositoryArchiveTypePtrOutputWithContext(ctx).OutputState, - } -} - // By changing the type to DIST, the patching is performed using `apt-get dist-upgrade` instead. type AptSettingsType string @@ -359,12 +352,6 @@ func (in *aptSettingsTypePtr) ToAptSettingsTypePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(AptSettingsTypePtrOutput) } -func (in *aptSettingsTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AptSettingsType] { - return pulumix.Output[*AptSettingsType]{ - OutputState: in.ToAptSettingsTypePtrOutputWithContext(ctx).OutputState, - } -} - // The script interpreter to use to run the script. If no interpreter is specified the script will be executed directly, which will likely only succeed for scripts with [shebang lines] (https://en.wikipedia.org/wiki/Shebang_\(Unix\)). type ExecStepConfigInterpreter string @@ -539,12 +526,6 @@ func (in *execStepConfigInterpreterPtr) ToExecStepConfigInterpreterPtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(ExecStepConfigInterpreterPtrOutput) } -func (in *execStepConfigInterpreterPtr) ToOutput(ctx context.Context) pulumix.Output[*ExecStepConfigInterpreter] { - return pulumix.Output[*ExecStepConfigInterpreter]{ - OutputState: in.ToExecStepConfigInterpreterPtrOutputWithContext(ctx).OutputState, - } -} - // The desired_state the agent should maintain for this package. The default is to ensure the package is installed. type PackageDesiredState string @@ -719,12 +700,6 @@ func (in *packageDesiredStatePtr) ToPackageDesiredStatePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(PackageDesiredStatePtrOutput) } -func (in *packageDesiredStatePtr) ToOutput(ctx context.Context) pulumix.Output[*PackageDesiredState] { - return pulumix.Output[*PackageDesiredState]{ - OutputState: in.ToPackageDesiredStatePtrOutputWithContext(ctx).OutputState, - } -} - // Type of package manager that can be used to install this package. If a system does not have the package manager, the package is not installed or removed no error message is returned. By default, or if you specify `ANY`, the agent attempts to install and remove this package using the default package manager. This is useful when creating a policy that applies to different types of systems. The default behavior is ANY. type PackageManager string @@ -905,12 +880,6 @@ func (in *packageManagerPtr) ToPackageManagerPtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(PackageManagerPtrOutput) } -func (in *packageManagerPtr) ToOutput(ctx context.Context) pulumix.Output[*PackageManager] { - return pulumix.Output[*PackageManager]{ - OutputState: in.ToPackageManagerPtrOutputWithContext(ctx).OutputState, - } -} - // Post-patch reboot settings. type PatchConfigRebootConfig string @@ -1085,12 +1054,6 @@ func (in *patchConfigRebootConfigPtr) ToPatchConfigRebootConfigPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(PatchConfigRebootConfigPtrOutput) } -func (in *patchConfigRebootConfigPtr) ToOutput(ctx context.Context) pulumix.Output[*PatchConfigRebootConfig] { - return pulumix.Output[*PatchConfigRebootConfig]{ - OutputState: in.ToPatchConfigRebootConfigPtrOutputWithContext(ctx).OutputState, - } -} - // Mode of the patch rollout. type PatchRolloutMode string @@ -1262,12 +1225,6 @@ func (in *patchRolloutModePtr) ToPatchRolloutModePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(PatchRolloutModePtrOutput) } -func (in *patchRolloutModePtr) ToOutput(ctx context.Context) pulumix.Output[*PatchRolloutMode] { - return pulumix.Output[*PatchRolloutMode]{ - OutputState: in.ToPatchRolloutModePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The frequency unit of this recurring schedule. type RecurringScheduleFrequency string @@ -1442,12 +1399,6 @@ func (in *recurringScheduleFrequencyPtr) ToRecurringScheduleFrequencyPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(RecurringScheduleFrequencyPtrOutput) } -func (in *recurringScheduleFrequencyPtr) ToOutput(ctx context.Context) pulumix.Output[*RecurringScheduleFrequency] { - return pulumix.Output[*RecurringScheduleFrequency]{ - OutputState: in.ToRecurringScheduleFrequencyPtrOutputWithContext(ctx).OutputState, - } -} - // Default is INSTALLED. The desired state the agent should maintain for this recipe. INSTALLED: The software recipe is installed on the instance but won't be updated to new versions. UPDATED: The software recipe is installed on the instance. The recipe is updated to a higher version, if a higher version of the recipe is assigned to this instance. REMOVE: Remove is unsupported for software recipes and attempts to create or update a recipe to the REMOVE state is rejected. type SoftwareRecipeDesiredState string @@ -1622,12 +1573,6 @@ func (in *softwareRecipeDesiredStatePtr) ToSoftwareRecipeDesiredStatePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(SoftwareRecipeDesiredStatePtrOutput) } -func (in *softwareRecipeDesiredStatePtr) ToOutput(ctx context.Context) pulumix.Output[*SoftwareRecipeDesiredState] { - return pulumix.Output[*SoftwareRecipeDesiredState]{ - OutputState: in.ToSoftwareRecipeDesiredStatePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of the archive to extract. type SoftwareRecipeStepExtractArchiveType string @@ -1811,12 +1756,6 @@ func (in *softwareRecipeStepExtractArchiveTypePtr) ToSoftwareRecipeStepExtractAr return pulumi.ToOutputWithContext(ctx, in).(SoftwareRecipeStepExtractArchiveTypePtrOutput) } -func (in *softwareRecipeStepExtractArchiveTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SoftwareRecipeStepExtractArchiveType] { - return pulumix.Output[*SoftwareRecipeStepExtractArchiveType]{ - OutputState: in.ToSoftwareRecipeStepExtractArchiveTypePtrOutputWithContext(ctx).OutputState, - } -} - // The script interpreter to use to run the script. If no interpreter is specified the script is executed directly, which likely only succeed for scripts with [shebang lines](). type SoftwareRecipeStepRunScriptInterpreter string @@ -1988,12 +1927,6 @@ func (in *softwareRecipeStepRunScriptInterpreterPtr) ToSoftwareRecipeStepRunScri return pulumi.ToOutputWithContext(ctx, in).(SoftwareRecipeStepRunScriptInterpreterPtrOutput) } -func (in *softwareRecipeStepRunScriptInterpreterPtr) ToOutput(ctx context.Context) pulumix.Output[*SoftwareRecipeStepRunScriptInterpreter] { - return pulumix.Output[*SoftwareRecipeStepRunScriptInterpreter]{ - OutputState: in.ToSoftwareRecipeStepRunScriptInterpreterPtrOutputWithContext(ctx).OutputState, - } -} - // Required. A day of the week. type WeekDayOfMonthDayOfWeek string @@ -2180,12 +2113,6 @@ func (in *weekDayOfMonthDayOfWeekPtr) ToWeekDayOfMonthDayOfWeekPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(WeekDayOfMonthDayOfWeekPtrOutput) } -func (in *weekDayOfMonthDayOfWeekPtr) ToOutput(ctx context.Context) pulumix.Output[*WeekDayOfMonthDayOfWeek] { - return pulumix.Output[*WeekDayOfMonthDayOfWeek]{ - OutputState: in.ToWeekDayOfMonthDayOfWeekPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Day of the week. type WeeklyScheduleDayOfWeek string @@ -2372,12 +2299,6 @@ func (in *weeklyScheduleDayOfWeekPtr) ToWeeklyScheduleDayOfWeekPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(WeeklyScheduleDayOfWeekPtrOutput) } -func (in *weeklyScheduleDayOfWeekPtr) ToOutput(ctx context.Context) pulumix.Output[*WeeklyScheduleDayOfWeek] { - return pulumix.Output[*WeeklyScheduleDayOfWeek]{ - OutputState: in.ToWeeklyScheduleDayOfWeekPtrOutputWithContext(ctx).OutputState, - } -} - type WindowsUpdateSettingsClassificationsItem string const ( @@ -2569,12 +2490,6 @@ func (in *windowsUpdateSettingsClassificationsItemPtr) ToWindowsUpdateSettingsCl return pulumi.ToOutputWithContext(ctx, in).(WindowsUpdateSettingsClassificationsItemPtrOutput) } -func (in *windowsUpdateSettingsClassificationsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*WindowsUpdateSettingsClassificationsItem] { - return pulumix.Output[*WindowsUpdateSettingsClassificationsItem]{ - OutputState: in.ToWindowsUpdateSettingsClassificationsItemPtrOutputWithContext(ctx).OutputState, - } -} - // WindowsUpdateSettingsClassificationsItemArrayInput is an input type that accepts WindowsUpdateSettingsClassificationsItemArray and WindowsUpdateSettingsClassificationsItemArrayOutput values. // You can construct a concrete instance of `WindowsUpdateSettingsClassificationsItemArrayInput` via: // diff --git a/sdk/go/google/policysimulator/v1/pulumiEnums.go b/sdk/go/google/policysimulator/v1/pulumiEnums.go index 250784cc4e..7734cb11a5 100644 --- a/sdk/go/google/policysimulator/v1/pulumiEnums.go +++ b/sdk/go/google/policysimulator/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The logs to use as input for the Replay. @@ -179,12 +178,6 @@ func (in *googleCloudPolicysimulatorV1ReplayConfigLogSourcePtr) ToGoogleCloudPol return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudPolicysimulatorV1ReplayConfigLogSourcePtrOutput) } -func (in *googleCloudPolicysimulatorV1ReplayConfigLogSourcePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudPolicysimulatorV1ReplayConfigLogSource] { - return pulumix.Output[*GoogleCloudPolicysimulatorV1ReplayConfigLogSource]{ - OutputState: in.ToGoogleCloudPolicysimulatorV1ReplayConfigLogSourcePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudPolicysimulatorV1ReplayConfigLogSourceInput)(nil)).Elem(), GoogleCloudPolicysimulatorV1ReplayConfigLogSource("LOG_SOURCE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudPolicysimulatorV1ReplayConfigLogSourcePtrInput)(nil)).Elem(), GoogleCloudPolicysimulatorV1ReplayConfigLogSource("LOG_SOURCE_UNSPECIFIED")) diff --git a/sdk/go/google/policysimulator/v1alpha/pulumiEnums.go b/sdk/go/google/policysimulator/v1alpha/pulumiEnums.go index caf19ffb05..0fd6e9d0e4 100644 --- a/sdk/go/google/policysimulator/v1alpha/pulumiEnums.go +++ b/sdk/go/google/policysimulator/v1alpha/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The logs to use as input for the Replay. @@ -179,12 +178,6 @@ func (in *googleCloudPolicysimulatorV1alphaReplayConfigLogSourcePtr) ToGoogleClo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudPolicysimulatorV1alphaReplayConfigLogSourcePtrOutput) } -func (in *googleCloudPolicysimulatorV1alphaReplayConfigLogSourcePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudPolicysimulatorV1alphaReplayConfigLogSource] { - return pulumix.Output[*GoogleCloudPolicysimulatorV1alphaReplayConfigLogSource]{ - OutputState: in.ToGoogleCloudPolicysimulatorV1alphaReplayConfigLogSourcePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudPolicysimulatorV1alphaReplayConfigLogSourceInput)(nil)).Elem(), GoogleCloudPolicysimulatorV1alphaReplayConfigLogSource("LOG_SOURCE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudPolicysimulatorV1alphaReplayConfigLogSourcePtrInput)(nil)).Elem(), GoogleCloudPolicysimulatorV1alphaReplayConfigLogSource("LOG_SOURCE_UNSPECIFIED")) diff --git a/sdk/go/google/policysimulator/v1beta/pulumiEnums.go b/sdk/go/google/policysimulator/v1beta/pulumiEnums.go index 14264ff02d..514e032cc9 100644 --- a/sdk/go/google/policysimulator/v1beta/pulumiEnums.go +++ b/sdk/go/google/policysimulator/v1beta/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The logs to use as input for the Replay. @@ -179,12 +178,6 @@ func (in *googleCloudPolicysimulatorV1betaReplayConfigLogSourcePtr) ToGoogleClou return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudPolicysimulatorV1betaReplayConfigLogSourcePtrOutput) } -func (in *googleCloudPolicysimulatorV1betaReplayConfigLogSourcePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudPolicysimulatorV1betaReplayConfigLogSource] { - return pulumix.Output[*GoogleCloudPolicysimulatorV1betaReplayConfigLogSource]{ - OutputState: in.ToGoogleCloudPolicysimulatorV1betaReplayConfigLogSourcePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudPolicysimulatorV1betaReplayConfigLogSourceInput)(nil)).Elem(), GoogleCloudPolicysimulatorV1betaReplayConfigLogSource("LOG_SOURCE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudPolicysimulatorV1betaReplayConfigLogSourcePtrInput)(nil)).Elem(), GoogleCloudPolicysimulatorV1betaReplayConfigLogSource("LOG_SOURCE_UNSPECIFIED")) diff --git a/sdk/go/google/policysimulator/v1beta1/pulumiEnums.go b/sdk/go/google/policysimulator/v1beta1/pulumiEnums.go index 1736b1d214..651309804a 100644 --- a/sdk/go/google/policysimulator/v1beta1/pulumiEnums.go +++ b/sdk/go/google/policysimulator/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The logs to use as input for the Replay. @@ -179,12 +178,6 @@ func (in *googleCloudPolicysimulatorV1beta1ReplayConfigLogSourcePtr) ToGoogleClo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudPolicysimulatorV1beta1ReplayConfigLogSourcePtrOutput) } -func (in *googleCloudPolicysimulatorV1beta1ReplayConfigLogSourcePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudPolicysimulatorV1beta1ReplayConfigLogSource] { - return pulumix.Output[*GoogleCloudPolicysimulatorV1beta1ReplayConfigLogSource]{ - OutputState: in.ToGoogleCloudPolicysimulatorV1beta1ReplayConfigLogSourcePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudPolicysimulatorV1beta1ReplayConfigLogSourceInput)(nil)).Elem(), GoogleCloudPolicysimulatorV1beta1ReplayConfigLogSource("LOG_SOURCE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudPolicysimulatorV1beta1ReplayConfigLogSourcePtrInput)(nil)).Elem(), GoogleCloudPolicysimulatorV1beta1ReplayConfigLogSource("LOG_SOURCE_UNSPECIFIED")) diff --git a/sdk/go/google/privateca/v1/pulumiEnums.go b/sdk/go/google/privateca/v1/pulumiEnums.go index edced23093..0197b0d8e0 100644 --- a/sdk/go/google/privateca/v1/pulumiEnums.go +++ b/sdk/go/google/privateca/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Immutable. The Tier of this CaPool. type CaPoolTier string @@ -362,12 +355,6 @@ func (in *caPoolTierPtr) ToCaPoolTierPtrOutputWithContext(ctx context.Context) C return pulumi.ToOutputWithContext(ctx, in).(CaPoolTierPtrOutput) } -func (in *caPoolTierPtr) ToOutput(ctx context.Context) pulumix.Output[*CaPoolTier] { - return pulumix.Output[*CaPoolTier]{ - OutputState: in.ToCaPoolTierPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Immutable. The Type of this CertificateAuthority. type CertificateAuthorityType string @@ -539,12 +526,6 @@ func (in *certificateAuthorityTypePtr) ToCertificateAuthorityTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(CertificateAuthorityTypePtrOutput) } -func (in *certificateAuthorityTypePtr) ToOutput(ctx context.Context) pulumix.Output[*CertificateAuthorityType] { - return pulumix.Output[*CertificateAuthorityType]{ - OutputState: in.ToCertificateAuthorityTypePtrOutputWithContext(ctx).OutputState, - } -} - type CertificateExtensionConstraintsKnownExtensionsItem string const ( @@ -727,12 +708,6 @@ func (in *certificateExtensionConstraintsKnownExtensionsItemPtr) ToCertificateEx return pulumi.ToOutputWithContext(ctx, in).(CertificateExtensionConstraintsKnownExtensionsItemPtrOutput) } -func (in *certificateExtensionConstraintsKnownExtensionsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*CertificateExtensionConstraintsKnownExtensionsItem] { - return pulumix.Output[*CertificateExtensionConstraintsKnownExtensionsItem]{ - OutputState: in.ToCertificateExtensionConstraintsKnownExtensionsItemPtrOutputWithContext(ctx).OutputState, - } -} - // CertificateExtensionConstraintsKnownExtensionsItemArrayInput is an input type that accepts CertificateExtensionConstraintsKnownExtensionsItemArray and CertificateExtensionConstraintsKnownExtensionsItemArrayOutput values. // You can construct a concrete instance of `CertificateExtensionConstraintsKnownExtensionsItemArrayInput` via: // @@ -949,12 +924,6 @@ func (in *certificateSubjectModePtr) ToCertificateSubjectModePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(CertificateSubjectModePtrOutput) } -func (in *certificateSubjectModePtr) ToOutput(ctx context.Context) pulumix.Output[*CertificateSubjectMode] { - return pulumix.Output[*CertificateSubjectMode]{ - OutputState: in.ToCertificateSubjectModePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. A signature algorithm that must be used. If this is omitted, any EC-based signature algorithm will be allowed. type EcKeyTypeSignatureAlgorithm string @@ -1129,12 +1098,6 @@ func (in *ecKeyTypeSignatureAlgorithmPtr) ToEcKeyTypeSignatureAlgorithmPtrOutput return pulumi.ToOutputWithContext(ctx, in).(EcKeyTypeSignatureAlgorithmPtrOutput) } -func (in *ecKeyTypeSignatureAlgorithmPtr) ToOutput(ctx context.Context) pulumix.Output[*EcKeyTypeSignatureAlgorithm] { - return pulumix.Output[*EcKeyTypeSignatureAlgorithm]{ - OutputState: in.ToEcKeyTypeSignatureAlgorithmPtrOutputWithContext(ctx).OutputState, - } -} - // The algorithm to use for creating a managed Cloud KMS key for a for a simplified experience. All managed keys will be have their ProtectionLevel as `HSM`. type KeyVersionSpecAlgorithm string @@ -1324,12 +1287,6 @@ func (in *keyVersionSpecAlgorithmPtr) ToKeyVersionSpecAlgorithmPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(KeyVersionSpecAlgorithmPtrOutput) } -func (in *keyVersionSpecAlgorithmPtr) ToOutput(ctx context.Context) pulumix.Output[*KeyVersionSpecAlgorithm] { - return pulumix.Output[*KeyVersionSpecAlgorithm]{ - OutputState: in.ToKeyVersionSpecAlgorithmPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The format of the public key. type PublicKeyFormat string @@ -1498,12 +1455,6 @@ func (in *publicKeyFormatPtr) ToPublicKeyFormatPtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(PublicKeyFormatPtrOutput) } -func (in *publicKeyFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*PublicKeyFormat] { - return pulumix.Output[*PublicKeyFormat]{ - OutputState: in.ToPublicKeyFormatPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Specifies the encoding format of each CertificateAuthority's CA certificate and CRLs. If this is omitted, CA certificates and CRLs will be published in PEM. type PublishingOptionsEncodingFormat string @@ -1675,12 +1626,6 @@ func (in *publishingOptionsEncodingFormatPtr) ToPublishingOptionsEncodingFormatP return pulumi.ToOutputWithContext(ctx, in).(PublishingOptionsEncodingFormatPtrOutput) } -func (in *publishingOptionsEncodingFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*PublishingOptionsEncodingFormat] { - return pulumix.Output[*PublishingOptionsEncodingFormat]{ - OutputState: in.ToPublishingOptionsEncodingFormatPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/privateca/v1beta1/pulumiEnums.go b/sdk/go/google/privateca/v1beta1/pulumiEnums.go index 186b214402..623323d9f9 100644 --- a/sdk/go/google/privateca/v1beta1/pulumiEnums.go +++ b/sdk/go/google/privateca/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/pubsub/v1/pulumiEnums.go b/sdk/go/google/pubsub/v1/pulumiEnums.go index 09a8004df1..9a3bd6c2d1 100644 --- a/sdk/go/google/pubsub/v1/pulumiEnums.go +++ b/sdk/go/google/pubsub/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Optional. The encoding of messages validated against `schema`. @@ -182,12 +181,6 @@ func (in *schemaSettingsEncodingPtr) ToSchemaSettingsEncodingPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(SchemaSettingsEncodingPtrOutput) } -func (in *schemaSettingsEncodingPtr) ToOutput(ctx context.Context) pulumix.Output[*SchemaSettingsEncoding] { - return pulumix.Output[*SchemaSettingsEncoding]{ - OutputState: in.ToSchemaSettingsEncodingPtrOutputWithContext(ctx).OutputState, - } -} - // The type of the schema definition. type SchemaType string @@ -359,12 +352,6 @@ func (in *schemaTypePtr) ToSchemaTypePtrOutputWithContext(ctx context.Context) S return pulumi.ToOutputWithContext(ctx, in).(SchemaTypePtrOutput) } -func (in *schemaTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SchemaType] { - return pulumix.Output[*SchemaType]{ - OutputState: in.ToSchemaTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*SchemaSettingsEncodingInput)(nil)).Elem(), SchemaSettingsEncoding("ENCODING_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*SchemaSettingsEncodingPtrInput)(nil)).Elem(), SchemaSettingsEncoding("ENCODING_UNSPECIFIED")) diff --git a/sdk/go/google/pubsublite/v1/pulumiEnums.go b/sdk/go/google/pubsublite/v1/pulumiEnums.go index d0c5e09698..37df476788 100644 --- a/sdk/go/google/pubsublite/v1/pulumiEnums.go +++ b/sdk/go/google/pubsublite/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The DeliveryRequirement for this subscription. @@ -182,12 +181,6 @@ func (in *deliveryConfigDeliveryRequirementPtr) ToDeliveryConfigDeliveryRequirem return pulumi.ToOutputWithContext(ctx, in).(DeliveryConfigDeliveryRequirementPtrOutput) } -func (in *deliveryConfigDeliveryRequirementPtr) ToOutput(ctx context.Context) pulumix.Output[*DeliveryConfigDeliveryRequirement] { - return pulumix.Output[*DeliveryConfigDeliveryRequirement]{ - OutputState: in.ToDeliveryConfigDeliveryRequirementPtrOutputWithContext(ctx).OutputState, - } -} - // The desired state of this export. Setting this to values other than `ACTIVE` and `PAUSED` will result in an error. type ExportConfigDesiredState string @@ -365,12 +358,6 @@ func (in *exportConfigDesiredStatePtr) ToExportConfigDesiredStatePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(ExportConfigDesiredStatePtrOutput) } -func (in *exportConfigDesiredStatePtr) ToOutput(ctx context.Context) pulumix.Output[*ExportConfigDesiredState] { - return pulumix.Output[*ExportConfigDesiredState]{ - OutputState: in.ToExportConfigDesiredStatePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*DeliveryConfigDeliveryRequirementInput)(nil)).Elem(), DeliveryConfigDeliveryRequirement("DELIVERY_REQUIREMENT_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*DeliveryConfigDeliveryRequirementPtrInput)(nil)).Elem(), DeliveryConfigDeliveryRequirement("DELIVERY_REQUIREMENT_UNSPECIFIED")) diff --git a/sdk/go/google/pulumi-plugin.json b/sdk/go/google/pulumi-plugin.json index b5986d128c..62865ea91e 100644 --- a/sdk/go/google/pulumi-plugin.json +++ b/sdk/go/google/pulumi-plugin.json @@ -1,4 +1,5 @@ { "resource": true, - "name": "google-native" + "name": "google-native", + "version": "0.0.1-alpha.0+dev" } diff --git a/sdk/go/google/rapidmigrationassessment/v1/pulumiEnums.go b/sdk/go/google/rapidmigrationassessment/v1/pulumiEnums.go index cccd37e10e..d0de751a1c 100644 --- a/sdk/go/google/rapidmigrationassessment/v1/pulumiEnums.go +++ b/sdk/go/google/rapidmigrationassessment/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Type of an annotation. @@ -182,12 +181,6 @@ func (in *annotationTypePtr) ToAnnotationTypePtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(AnnotationTypePtrOutput) } -func (in *annotationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AnnotationType] { - return pulumix.Output[*AnnotationType]{ - OutputState: in.ToAnnotationTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AnnotationTypeInput)(nil)).Elem(), AnnotationType("TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AnnotationTypePtrInput)(nil)).Elem(), AnnotationType("TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/recaptchaenterprise/v1/pulumiEnums.go b/sdk/go/google/recaptchaenterprise/v1/pulumiEnums.go index 4bca677e39..4c7723cb1c 100644 --- a/sdk/go/google/recaptchaenterprise/v1/pulumiEnums.go +++ b/sdk/go/google/recaptchaenterprise/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Optional. For challenge-based keys only (CHECKBOX, INVISIBLE), all challenge requests for this site will return nocaptcha if NOCAPTCHA, or an unsolvable challenge if CHALLENGE. @@ -182,12 +181,6 @@ func (in *googleCloudRecaptchaenterpriseV1TestingOptionsTestingChallengePtr) ToG return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudRecaptchaenterpriseV1TestingOptionsTestingChallengePtrOutput) } -func (in *googleCloudRecaptchaenterpriseV1TestingOptionsTestingChallengePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudRecaptchaenterpriseV1TestingOptionsTestingChallenge] { - return pulumix.Output[*GoogleCloudRecaptchaenterpriseV1TestingOptionsTestingChallenge]{ - OutputState: in.ToGoogleCloudRecaptchaenterpriseV1TestingOptionsTestingChallengePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The WAF feature for which this key is enabled. type GoogleCloudRecaptchaenterpriseV1WafSettingsWafFeature string @@ -365,12 +358,6 @@ func (in *googleCloudRecaptchaenterpriseV1WafSettingsWafFeaturePtr) ToGoogleClou return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudRecaptchaenterpriseV1WafSettingsWafFeaturePtrOutput) } -func (in *googleCloudRecaptchaenterpriseV1WafSettingsWafFeaturePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudRecaptchaenterpriseV1WafSettingsWafFeature] { - return pulumix.Output[*GoogleCloudRecaptchaenterpriseV1WafSettingsWafFeature]{ - OutputState: in.ToGoogleCloudRecaptchaenterpriseV1WafSettingsWafFeaturePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The WAF service that uses this key. type GoogleCloudRecaptchaenterpriseV1WafSettingsWafService string @@ -542,12 +529,6 @@ func (in *googleCloudRecaptchaenterpriseV1WafSettingsWafServicePtr) ToGoogleClou return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudRecaptchaenterpriseV1WafSettingsWafServicePtrOutput) } -func (in *googleCloudRecaptchaenterpriseV1WafSettingsWafServicePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudRecaptchaenterpriseV1WafSettingsWafService] { - return pulumix.Output[*GoogleCloudRecaptchaenterpriseV1WafSettingsWafService]{ - OutputState: in.ToGoogleCloudRecaptchaenterpriseV1WafSettingsWafServicePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Settings for the frequency and difficulty at which this key triggers captcha challenges. This should only be specified for IntegrationTypes CHECKBOX and INVISIBLE. type GoogleCloudRecaptchaenterpriseV1WebKeySettingsChallengeSecurityPreference string @@ -722,12 +703,6 @@ func (in *googleCloudRecaptchaenterpriseV1WebKeySettingsChallengeSecurityPrefere return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudRecaptchaenterpriseV1WebKeySettingsChallengeSecurityPreferencePtrOutput) } -func (in *googleCloudRecaptchaenterpriseV1WebKeySettingsChallengeSecurityPreferencePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudRecaptchaenterpriseV1WebKeySettingsChallengeSecurityPreference] { - return pulumix.Output[*GoogleCloudRecaptchaenterpriseV1WebKeySettingsChallengeSecurityPreference]{ - OutputState: in.ToGoogleCloudRecaptchaenterpriseV1WebKeySettingsChallengeSecurityPreferencePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Describes how this key is integrated with the website. type GoogleCloudRecaptchaenterpriseV1WebKeySettingsIntegrationType string @@ -902,12 +877,6 @@ func (in *googleCloudRecaptchaenterpriseV1WebKeySettingsIntegrationTypePtr) ToGo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudRecaptchaenterpriseV1WebKeySettingsIntegrationTypePtrOutput) } -func (in *googleCloudRecaptchaenterpriseV1WebKeySettingsIntegrationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudRecaptchaenterpriseV1WebKeySettingsIntegrationType] { - return pulumix.Output[*GoogleCloudRecaptchaenterpriseV1WebKeySettingsIntegrationType]{ - OutputState: in.ToGoogleCloudRecaptchaenterpriseV1WebKeySettingsIntegrationTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudRecaptchaenterpriseV1TestingOptionsTestingChallengeInput)(nil)).Elem(), GoogleCloudRecaptchaenterpriseV1TestingOptionsTestingChallenge("TESTING_CHALLENGE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudRecaptchaenterpriseV1TestingOptionsTestingChallengePtrInput)(nil)).Elem(), GoogleCloudRecaptchaenterpriseV1TestingOptionsTestingChallenge("TESTING_CHALLENGE_UNSPECIFIED")) diff --git a/sdk/go/google/recommendationengine/v1beta1/pulumiEnums.go b/sdk/go/google/recommendationengine/v1beta1/pulumiEnums.go index 3fc7321ea3..dd9f7ae119 100644 --- a/sdk/go/google/recommendationengine/v1beta1/pulumiEnums.go +++ b/sdk/go/google/recommendationengine/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Optional. Online stock state of the catalog item. Default is `IN_STOCK`. @@ -188,12 +187,6 @@ func (in *googleCloudRecommendationengineV1beta1ProductCatalogItemStockStatePtr) return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudRecommendationengineV1beta1ProductCatalogItemStockStatePtrOutput) } -func (in *googleCloudRecommendationengineV1beta1ProductCatalogItemStockStatePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudRecommendationengineV1beta1ProductCatalogItemStockState] { - return pulumix.Output[*GoogleCloudRecommendationengineV1beta1ProductCatalogItemStockState]{ - OutputState: in.ToGoogleCloudRecommendationengineV1beta1ProductCatalogItemStockStatePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudRecommendationengineV1beta1ProductCatalogItemStockStateInput)(nil)).Elem(), GoogleCloudRecommendationengineV1beta1ProductCatalogItemStockState("STOCK_STATE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudRecommendationengineV1beta1ProductCatalogItemStockStatePtrInput)(nil)).Elem(), GoogleCloudRecommendationengineV1beta1ProductCatalogItemStockState("STOCK_STATE_UNSPECIFIED")) diff --git a/sdk/go/google/redis/v1/pulumiEnums.go b/sdk/go/google/redis/v1/pulumiEnums.go index 583181b393..460d843ac7 100644 --- a/sdk/go/google/redis/v1/pulumiEnums.go +++ b/sdk/go/google/redis/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Optional. The authorization mode of the Redis cluster. If not provided, auth feature is disabled for the cluster. @@ -182,12 +181,6 @@ func (in *clusterAuthorizationModePtr) ToClusterAuthorizationModePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(ClusterAuthorizationModePtrOutput) } -func (in *clusterAuthorizationModePtr) ToOutput(ctx context.Context) pulumix.Output[*ClusterAuthorizationMode] { - return pulumix.Output[*ClusterAuthorizationMode]{ - OutputState: in.ToClusterAuthorizationModePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The in-transit encryption for the Redis cluster. If not provided, encryption is disabled for the cluster. type ClusterTransitEncryptionMode string @@ -359,12 +352,6 @@ func (in *clusterTransitEncryptionModePtr) ToClusterTransitEncryptionModePtrOutp return pulumi.ToOutputWithContext(ctx, in).(ClusterTransitEncryptionModePtrOutput) } -func (in *clusterTransitEncryptionModePtr) ToOutput(ctx context.Context) pulumix.Output[*ClusterTransitEncryptionMode] { - return pulumix.Output[*ClusterTransitEncryptionMode]{ - OutputState: in.ToClusterTransitEncryptionModePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The network connect mode of the Redis instance. If not provided, the connect mode defaults to DIRECT_PEERING. type InstanceConnectMode string @@ -536,12 +523,6 @@ func (in *instanceConnectModePtr) ToInstanceConnectModePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(InstanceConnectModePtrOutput) } -func (in *instanceConnectModePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceConnectMode] { - return pulumix.Output[*InstanceConnectMode]{ - OutputState: in.ToInstanceConnectModePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Read replicas mode for the instance. Defaults to READ_REPLICAS_DISABLED. type InstanceReadReplicasMode string @@ -713,12 +694,6 @@ func (in *instanceReadReplicasModePtr) ToInstanceReadReplicasModePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(InstanceReadReplicasModePtrOutput) } -func (in *instanceReadReplicasModePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceReadReplicasMode] { - return pulumix.Output[*InstanceReadReplicasMode]{ - OutputState: in.ToInstanceReadReplicasModePtrOutputWithContext(ctx).OutputState, - } -} - type InstanceSuspensionReasonsItem string const ( @@ -886,12 +861,6 @@ func (in *instanceSuspensionReasonsItemPtr) ToInstanceSuspensionReasonsItemPtrOu return pulumi.ToOutputWithContext(ctx, in).(InstanceSuspensionReasonsItemPtrOutput) } -func (in *instanceSuspensionReasonsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceSuspensionReasonsItem] { - return pulumix.Output[*InstanceSuspensionReasonsItem]{ - OutputState: in.ToInstanceSuspensionReasonsItemPtrOutputWithContext(ctx).OutputState, - } -} - // InstanceSuspensionReasonsItemArrayInput is an input type that accepts InstanceSuspensionReasonsItemArray and InstanceSuspensionReasonsItemArrayOutput values. // You can construct a concrete instance of `InstanceSuspensionReasonsItemArrayInput` via: // @@ -1108,12 +1077,6 @@ func (in *instanceTierPtr) ToInstanceTierPtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(InstanceTierPtrOutput) } -func (in *instanceTierPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceTier] { - return pulumix.Output[*InstanceTier]{ - OutputState: in.ToInstanceTierPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The TLS mode of the Redis instance. If not provided, TLS is disabled for the instance. type InstanceTransitEncryptionMode string @@ -1285,12 +1248,6 @@ func (in *instanceTransitEncryptionModePtr) ToInstanceTransitEncryptionModePtrOu return pulumi.ToOutputWithContext(ctx, in).(InstanceTransitEncryptionModePtrOutput) } -func (in *instanceTransitEncryptionModePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceTransitEncryptionMode] { - return pulumix.Output[*InstanceTransitEncryptionMode]{ - OutputState: in.ToInstanceTransitEncryptionModePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Controls whether Persistence features are enabled. If not provided, the existing value will be used. type PersistenceConfigPersistenceMode string @@ -1462,12 +1419,6 @@ func (in *persistenceConfigPersistenceModePtr) ToPersistenceConfigPersistenceMod return pulumi.ToOutputWithContext(ctx, in).(PersistenceConfigPersistenceModePtrOutput) } -func (in *persistenceConfigPersistenceModePtr) ToOutput(ctx context.Context) pulumix.Output[*PersistenceConfigPersistenceMode] { - return pulumix.Output[*PersistenceConfigPersistenceMode]{ - OutputState: in.ToPersistenceConfigPersistenceModePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Period between RDB snapshots. Snapshots will be attempted every period starting from the provided snapshot start time. For example, a start time of 01/01/2033 06:45 and SIX_HOURS snapshot period will do nothing until 01/01/2033, and then trigger snapshots every day at 06:45, 12:45, 18:45, and 00:45 the next day, and so on. If not provided, TWENTY_FOUR_HOURS will be used as default. type PersistenceConfigRdbSnapshotPeriod string @@ -1645,12 +1596,6 @@ func (in *persistenceConfigRdbSnapshotPeriodPtr) ToPersistenceConfigRdbSnapshotP return pulumi.ToOutputWithContext(ctx, in).(PersistenceConfigRdbSnapshotPeriodPtrOutput) } -func (in *persistenceConfigRdbSnapshotPeriodPtr) ToOutput(ctx context.Context) pulumix.Output[*PersistenceConfigRdbSnapshotPeriod] { - return pulumix.Output[*PersistenceConfigRdbSnapshotPeriod]{ - OutputState: in.ToPersistenceConfigRdbSnapshotPeriodPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The day of week that maintenance updates occur. type WeeklyMaintenanceWindowDay string @@ -1837,12 +1782,6 @@ func (in *weeklyMaintenanceWindowDayPtr) ToWeeklyMaintenanceWindowDayPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(WeeklyMaintenanceWindowDayPtrOutput) } -func (in *weeklyMaintenanceWindowDayPtr) ToOutput(ctx context.Context) pulumix.Output[*WeeklyMaintenanceWindowDay] { - return pulumix.Output[*WeeklyMaintenanceWindowDay]{ - OutputState: in.ToWeeklyMaintenanceWindowDayPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ClusterAuthorizationModeInput)(nil)).Elem(), ClusterAuthorizationMode("AUTH_MODE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*ClusterAuthorizationModePtrInput)(nil)).Elem(), ClusterAuthorizationMode("AUTH_MODE_UNSPECIFIED")) diff --git a/sdk/go/google/redis/v1beta1/pulumiEnums.go b/sdk/go/google/redis/v1beta1/pulumiEnums.go index 08a6818528..cfdd02210a 100644 --- a/sdk/go/google/redis/v1beta1/pulumiEnums.go +++ b/sdk/go/google/redis/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Optional. The authorization mode of the Redis cluster. If not provided, auth feature is disabled for the cluster. @@ -182,12 +181,6 @@ func (in *clusterAuthorizationModePtr) ToClusterAuthorizationModePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(ClusterAuthorizationModePtrOutput) } -func (in *clusterAuthorizationModePtr) ToOutput(ctx context.Context) pulumix.Output[*ClusterAuthorizationMode] { - return pulumix.Output[*ClusterAuthorizationMode]{ - OutputState: in.ToClusterAuthorizationModePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The in-transit encryption for the Redis cluster. If not provided, encryption is disabled for the cluster. type ClusterTransitEncryptionMode string @@ -359,12 +352,6 @@ func (in *clusterTransitEncryptionModePtr) ToClusterTransitEncryptionModePtrOutp return pulumi.ToOutputWithContext(ctx, in).(ClusterTransitEncryptionModePtrOutput) } -func (in *clusterTransitEncryptionModePtr) ToOutput(ctx context.Context) pulumix.Output[*ClusterTransitEncryptionMode] { - return pulumix.Output[*ClusterTransitEncryptionMode]{ - OutputState: in.ToClusterTransitEncryptionModePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The network connect mode of the Redis instance. If not provided, the connect mode defaults to DIRECT_PEERING. type InstanceConnectMode string @@ -536,12 +523,6 @@ func (in *instanceConnectModePtr) ToInstanceConnectModePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(InstanceConnectModePtrOutput) } -func (in *instanceConnectModePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceConnectMode] { - return pulumix.Output[*InstanceConnectMode]{ - OutputState: in.ToInstanceConnectModePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Read replicas mode for the instance. Defaults to READ_REPLICAS_DISABLED. type InstanceReadReplicasMode string @@ -713,12 +694,6 @@ func (in *instanceReadReplicasModePtr) ToInstanceReadReplicasModePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(InstanceReadReplicasModePtrOutput) } -func (in *instanceReadReplicasModePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceReadReplicasMode] { - return pulumix.Output[*InstanceReadReplicasMode]{ - OutputState: in.ToInstanceReadReplicasModePtrOutputWithContext(ctx).OutputState, - } -} - type InstanceSuspensionReasonsItem string const ( @@ -886,12 +861,6 @@ func (in *instanceSuspensionReasonsItemPtr) ToInstanceSuspensionReasonsItemPtrOu return pulumi.ToOutputWithContext(ctx, in).(InstanceSuspensionReasonsItemPtrOutput) } -func (in *instanceSuspensionReasonsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceSuspensionReasonsItem] { - return pulumix.Output[*InstanceSuspensionReasonsItem]{ - OutputState: in.ToInstanceSuspensionReasonsItemPtrOutputWithContext(ctx).OutputState, - } -} - // InstanceSuspensionReasonsItemArrayInput is an input type that accepts InstanceSuspensionReasonsItemArray and InstanceSuspensionReasonsItemArrayOutput values. // You can construct a concrete instance of `InstanceSuspensionReasonsItemArrayInput` via: // @@ -1108,12 +1077,6 @@ func (in *instanceTierPtr) ToInstanceTierPtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(InstanceTierPtrOutput) } -func (in *instanceTierPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceTier] { - return pulumix.Output[*InstanceTier]{ - OutputState: in.ToInstanceTierPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The TLS mode of the Redis instance. If not provided, TLS is disabled for the instance. type InstanceTransitEncryptionMode string @@ -1285,12 +1248,6 @@ func (in *instanceTransitEncryptionModePtr) ToInstanceTransitEncryptionModePtrOu return pulumi.ToOutputWithContext(ctx, in).(InstanceTransitEncryptionModePtrOutput) } -func (in *instanceTransitEncryptionModePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceTransitEncryptionMode] { - return pulumix.Output[*InstanceTransitEncryptionMode]{ - OutputState: in.ToInstanceTransitEncryptionModePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Controls whether Persistence features are enabled. If not provided, the existing value will be used. type PersistenceConfigPersistenceMode string @@ -1462,12 +1419,6 @@ func (in *persistenceConfigPersistenceModePtr) ToPersistenceConfigPersistenceMod return pulumi.ToOutputWithContext(ctx, in).(PersistenceConfigPersistenceModePtrOutput) } -func (in *persistenceConfigPersistenceModePtr) ToOutput(ctx context.Context) pulumix.Output[*PersistenceConfigPersistenceMode] { - return pulumix.Output[*PersistenceConfigPersistenceMode]{ - OutputState: in.ToPersistenceConfigPersistenceModePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Period between RDB snapshots. Snapshots will be attempted every period starting from the provided snapshot start time. For example, a start time of 01/01/2033 06:45 and SIX_HOURS snapshot period will do nothing until 01/01/2033, and then trigger snapshots every day at 06:45, 12:45, 18:45, and 00:45 the next day, and so on. If not provided, TWENTY_FOUR_HOURS will be used as default. type PersistenceConfigRdbSnapshotPeriod string @@ -1645,12 +1596,6 @@ func (in *persistenceConfigRdbSnapshotPeriodPtr) ToPersistenceConfigRdbSnapshotP return pulumi.ToOutputWithContext(ctx, in).(PersistenceConfigRdbSnapshotPeriodPtrOutput) } -func (in *persistenceConfigRdbSnapshotPeriodPtr) ToOutput(ctx context.Context) pulumix.Output[*PersistenceConfigRdbSnapshotPeriod] { - return pulumix.Output[*PersistenceConfigRdbSnapshotPeriod]{ - OutputState: in.ToPersistenceConfigRdbSnapshotPeriodPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The day of week that maintenance updates occur. type WeeklyMaintenanceWindowDay string @@ -1837,12 +1782,6 @@ func (in *weeklyMaintenanceWindowDayPtr) ToWeeklyMaintenanceWindowDayPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(WeeklyMaintenanceWindowDayPtrOutput) } -func (in *weeklyMaintenanceWindowDayPtr) ToOutput(ctx context.Context) pulumix.Output[*WeeklyMaintenanceWindowDay] { - return pulumix.Output[*WeeklyMaintenanceWindowDay]{ - OutputState: in.ToWeeklyMaintenanceWindowDayPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ClusterAuthorizationModeInput)(nil)).Elem(), ClusterAuthorizationMode("AUTH_MODE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*ClusterAuthorizationModePtrInput)(nil)).Elem(), ClusterAuthorizationMode("AUTH_MODE_UNSPECIFIED")) diff --git a/sdk/go/google/remotebuildexecution/v1alpha/pulumiEnums.go b/sdk/go/google/remotebuildexecution/v1alpha/pulumiEnums.go index e38dd672da..5b32388918 100644 --- a/sdk/go/google/remotebuildexecution/v1alpha/pulumiEnums.go +++ b/sdk/go/google/remotebuildexecution/v1alpha/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The policy of the feature. @@ -185,12 +184,6 @@ func (in *googleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeaturePoli return pulumi.ToOutputWithContext(ctx, in).(GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeaturePolicyPtrOutput) } -func (in *googleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeaturePolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeaturePolicy] { - return pulumix.Output[*GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeaturePolicy]{ - OutputState: in.ToGoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeaturePolicyPtrOutputWithContext(ctx).OutputState, - } -} - // linux_isolation allows overriding the docker runtime used for containers started on Linux. type GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyLinuxIsolation string @@ -362,12 +355,6 @@ func (in *googleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyLinuxIsolat return pulumi.ToOutputWithContext(ctx, in).(GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyLinuxIsolationPtrOutput) } -func (in *googleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyLinuxIsolationPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyLinuxIsolation] { - return pulumix.Output[*GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyLinuxIsolation]{ - OutputState: in.ToGoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyLinuxIsolationPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeaturePolicyInput)(nil)).Elem(), GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeaturePolicy("POLICY_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeaturePolicyPtrInput)(nil)).Elem(), GoogleDevtoolsRemotebuildexecutionAdminV1alphaFeaturePolicyFeaturePolicy("POLICY_UNSPECIFIED")) diff --git a/sdk/go/google/retail/v2/pulumiEnums.go b/sdk/go/google/retail/v2/pulumiEnums.go index 786f8e3b5e..6014368547 100644 --- a/sdk/go/google/retail/v2/pulumiEnums.go +++ b/sdk/go/google/retail/v2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) type ControlSearchSolutionUseCaseItem string @@ -181,12 +180,6 @@ func (in *controlSearchSolutionUseCaseItemPtr) ToControlSearchSolutionUseCaseIte return pulumi.ToOutputWithContext(ctx, in).(ControlSearchSolutionUseCaseItemPtrOutput) } -func (in *controlSearchSolutionUseCaseItemPtr) ToOutput(ctx context.Context) pulumix.Output[*ControlSearchSolutionUseCaseItem] { - return pulumix.Output[*ControlSearchSolutionUseCaseItem]{ - OutputState: in.ToControlSearchSolutionUseCaseItemPtrOutputWithContext(ctx).OutputState, - } -} - // ControlSearchSolutionUseCaseItemArrayInput is an input type that accepts ControlSearchSolutionUseCaseItemArray and ControlSearchSolutionUseCaseItemArrayOutput values. // You can construct a concrete instance of `ControlSearchSolutionUseCaseItemArrayInput` via: // @@ -402,12 +395,6 @@ func (in *controlSolutionTypesItemPtr) ToControlSolutionTypesItemPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(ControlSolutionTypesItemPtrOutput) } -func (in *controlSolutionTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*ControlSolutionTypesItem] { - return pulumix.Output[*ControlSolutionTypesItem]{ - OutputState: in.ToControlSolutionTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // ControlSolutionTypesItemArrayInput is an input type that accepts ControlSolutionTypesItemArray and ControlSolutionTypesItemArrayOutput values. // You can construct a concrete instance of `ControlSolutionTypesItemArrayInput` via: // @@ -624,12 +611,6 @@ func (in *googleCloudRetailV2ModelFrequentlyBoughtTogetherFeaturesConfigContextP return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudRetailV2ModelFrequentlyBoughtTogetherFeaturesConfigContextProductsTypePtrOutput) } -func (in *googleCloudRetailV2ModelFrequentlyBoughtTogetherFeaturesConfigContextProductsTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudRetailV2ModelFrequentlyBoughtTogetherFeaturesConfigContextProductsType] { - return pulumix.Output[*GoogleCloudRetailV2ModelFrequentlyBoughtTogetherFeaturesConfigContextProductsType]{ - OutputState: in.ToGoogleCloudRetailV2ModelFrequentlyBoughtTogetherFeaturesConfigContextProductsTypePtrOutputWithContext(ctx).OutputState, - } -} - // Mode of the DynamicFacet feature. Defaults to Mode.DISABLED if it's unset. type GoogleCloudRetailV2SearchRequestDynamicFacetSpecMode string @@ -801,12 +782,6 @@ func (in *googleCloudRetailV2SearchRequestDynamicFacetSpecModePtr) ToGoogleCloud return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudRetailV2SearchRequestDynamicFacetSpecModePtrOutput) } -func (in *googleCloudRetailV2SearchRequestDynamicFacetSpecModePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudRetailV2SearchRequestDynamicFacetSpecMode] { - return pulumix.Output[*GoogleCloudRetailV2SearchRequestDynamicFacetSpecMode]{ - OutputState: in.ToGoogleCloudRetailV2SearchRequestDynamicFacetSpecModePtrOutputWithContext(ctx).OutputState, - } -} - // Defaults to Mode.AUTO. type GoogleCloudRetailV2SearchRequestPersonalizationSpecMode string @@ -978,12 +953,6 @@ func (in *googleCloudRetailV2SearchRequestPersonalizationSpecModePtr) ToGoogleCl return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudRetailV2SearchRequestPersonalizationSpecModePtrOutput) } -func (in *googleCloudRetailV2SearchRequestPersonalizationSpecModePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudRetailV2SearchRequestPersonalizationSpecMode] { - return pulumix.Output[*GoogleCloudRetailV2SearchRequestPersonalizationSpecMode]{ - OutputState: in.ToGoogleCloudRetailV2SearchRequestPersonalizationSpecModePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. If `RECOMMENDATIONS_FILTERING_ENABLED`, recommendation filtering by attributes is enabled for the model. type ModelFilteringOption string @@ -1155,12 +1124,6 @@ func (in *modelFilteringOptionPtr) ToModelFilteringOptionPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(ModelFilteringOptionPtrOutput) } -func (in *modelFilteringOptionPtr) ToOutput(ctx context.Context) pulumix.Output[*ModelFilteringOption] { - return pulumix.Output[*ModelFilteringOption]{ - OutputState: in.ToModelFilteringOptionPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The state of periodic tuning. The period we use is 3 months - to do a one-off tune earlier use the `TuneModel` method. Default value is `PERIODIC_TUNING_ENABLED`. type ModelPeriodicTuningState string @@ -1335,12 +1298,6 @@ func (in *modelPeriodicTuningStatePtr) ToModelPeriodicTuningStatePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(ModelPeriodicTuningStatePtrOutput) } -func (in *modelPeriodicTuningStatePtr) ToOutput(ctx context.Context) pulumix.Output[*ModelPeriodicTuningState] { - return pulumix.Output[*ModelPeriodicTuningState]{ - OutputState: in.ToModelPeriodicTuningStatePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The training state that the model is in (e.g. `TRAINING` or `PAUSED`). Since part of the cost of running the service is frequency of training - this can be used to determine when to train model in order to control cost. If not specified: the default value for `CreateModel` method is `TRAINING`. The default value for `UpdateModel` method is to keep the state the same as before. type ModelTrainingState string @@ -1512,12 +1469,6 @@ func (in *modelTrainingStatePtr) ToModelTrainingStatePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(ModelTrainingStatePtrOutput) } -func (in *modelTrainingStatePtr) ToOutput(ctx context.Context) pulumix.Output[*ModelTrainingState] { - return pulumix.Output[*ModelTrainingState]{ - OutputState: in.ToModelTrainingStatePtrOutputWithContext(ctx).OutputState, - } -} - // The online availability of the Product. Default to Availability.IN_STOCK. Corresponding properties: Google Merchant Center property [availability](https://support.google.com/merchants/answer/6324448). Schema.org property [Offer.availability](https://schema.org/availability). type ProductAvailability string @@ -1695,12 +1646,6 @@ func (in *productAvailabilityPtr) ToProductAvailabilityPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(ProductAvailabilityPtrOutput) } -func (in *productAvailabilityPtr) ToOutput(ctx context.Context) pulumix.Output[*ProductAvailability] { - return pulumix.Output[*ProductAvailability]{ - OutputState: in.ToProductAvailabilityPtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The type of the product. Default to Catalog.product_level_config.ingestion_product_type if unset. type ProductType string @@ -1875,12 +1820,6 @@ func (in *productTypePtr) ToProductTypePtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(ProductTypePtrOutput) } -func (in *productTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ProductType] { - return pulumix.Output[*ProductType]{ - OutputState: in.ToProductTypePtrOutputWithContext(ctx).OutputState, - } -} - // What kind of diversity to use - data driven or rule based. If unset, the server behavior defaults to RULE_BASED_DIVERSITY. type ServingConfigDiversityType string @@ -2052,12 +1991,6 @@ func (in *servingConfigDiversityTypePtr) ToServingConfigDiversityTypePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(ServingConfigDiversityTypePtrOutput) } -func (in *servingConfigDiversityTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ServingConfigDiversityType] { - return pulumix.Output[*ServingConfigDiversityType]{ - OutputState: in.ToServingConfigDiversityTypePtrOutputWithContext(ctx).OutputState, - } -} - type ServingConfigSolutionTypesItem string const ( @@ -2228,12 +2161,6 @@ func (in *servingConfigSolutionTypesItemPtr) ToServingConfigSolutionTypesItemPtr return pulumi.ToOutputWithContext(ctx, in).(ServingConfigSolutionTypesItemPtrOutput) } -func (in *servingConfigSolutionTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*ServingConfigSolutionTypesItem] { - return pulumix.Output[*ServingConfigSolutionTypesItem]{ - OutputState: in.ToServingConfigSolutionTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // ServingConfigSolutionTypesItemArrayInput is an input type that accepts ServingConfigSolutionTypesItemArray and ServingConfigSolutionTypesItemArrayOutput values. // You can construct a concrete instance of `ServingConfigSolutionTypesItemArrayInput` via: // diff --git a/sdk/go/google/retail/v2alpha/pulumiEnums.go b/sdk/go/google/retail/v2alpha/pulumiEnums.go index aa8a55ddb8..c3081dd321 100644 --- a/sdk/go/google/retail/v2alpha/pulumiEnums.go +++ b/sdk/go/google/retail/v2alpha/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) type ControlSearchSolutionUseCaseItem string @@ -181,12 +180,6 @@ func (in *controlSearchSolutionUseCaseItemPtr) ToControlSearchSolutionUseCaseIte return pulumi.ToOutputWithContext(ctx, in).(ControlSearchSolutionUseCaseItemPtrOutput) } -func (in *controlSearchSolutionUseCaseItemPtr) ToOutput(ctx context.Context) pulumix.Output[*ControlSearchSolutionUseCaseItem] { - return pulumix.Output[*ControlSearchSolutionUseCaseItem]{ - OutputState: in.ToControlSearchSolutionUseCaseItemPtrOutputWithContext(ctx).OutputState, - } -} - // ControlSearchSolutionUseCaseItemArrayInput is an input type that accepts ControlSearchSolutionUseCaseItemArray and ControlSearchSolutionUseCaseItemArrayOutput values. // You can construct a concrete instance of `ControlSearchSolutionUseCaseItemArrayInput` via: // @@ -402,12 +395,6 @@ func (in *controlSolutionTypesItemPtr) ToControlSolutionTypesItemPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(ControlSolutionTypesItemPtrOutput) } -func (in *controlSolutionTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*ControlSolutionTypesItem] { - return pulumix.Output[*ControlSolutionTypesItem]{ - OutputState: in.ToControlSolutionTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // ControlSolutionTypesItemArrayInput is an input type that accepts ControlSolutionTypesItemArray and ControlSolutionTypesItemArrayOutput values. // You can construct a concrete instance of `ControlSolutionTypesItemArrayInput` via: // @@ -624,12 +611,6 @@ func (in *googleCloudRetailV2alphaModelFrequentlyBoughtTogetherFeaturesConfigCon return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudRetailV2alphaModelFrequentlyBoughtTogetherFeaturesConfigContextProductsTypePtrOutput) } -func (in *googleCloudRetailV2alphaModelFrequentlyBoughtTogetherFeaturesConfigContextProductsTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudRetailV2alphaModelFrequentlyBoughtTogetherFeaturesConfigContextProductsType] { - return pulumix.Output[*GoogleCloudRetailV2alphaModelFrequentlyBoughtTogetherFeaturesConfigContextProductsType]{ - OutputState: in.ToGoogleCloudRetailV2alphaModelFrequentlyBoughtTogetherFeaturesConfigContextProductsTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. How to restrict results across panels e.g. can the same ServingConfig be shown on multiple panels at once. If unspecified, default to `UNIQUE_MODEL_RESTRICTION`. type GoogleCloudRetailV2alphaModelPageOptimizationConfigRestriction string @@ -807,12 +788,6 @@ func (in *googleCloudRetailV2alphaModelPageOptimizationConfigRestrictionPtr) ToG return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudRetailV2alphaModelPageOptimizationConfigRestrictionPtrOutput) } -func (in *googleCloudRetailV2alphaModelPageOptimizationConfigRestrictionPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudRetailV2alphaModelPageOptimizationConfigRestriction] { - return pulumix.Output[*GoogleCloudRetailV2alphaModelPageOptimizationConfigRestriction]{ - OutputState: in.ToGoogleCloudRetailV2alphaModelPageOptimizationConfigRestrictionPtrOutputWithContext(ctx).OutputState, - } -} - // Mode of the DynamicFacet feature. Defaults to Mode.DISABLED if it's unset. type GoogleCloudRetailV2alphaSearchRequestDynamicFacetSpecMode string @@ -984,12 +959,6 @@ func (in *googleCloudRetailV2alphaSearchRequestDynamicFacetSpecModePtr) ToGoogle return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudRetailV2alphaSearchRequestDynamicFacetSpecModePtrOutput) } -func (in *googleCloudRetailV2alphaSearchRequestDynamicFacetSpecModePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudRetailV2alphaSearchRequestDynamicFacetSpecMode] { - return pulumix.Output[*GoogleCloudRetailV2alphaSearchRequestDynamicFacetSpecMode]{ - OutputState: in.ToGoogleCloudRetailV2alphaSearchRequestDynamicFacetSpecModePtrOutputWithContext(ctx).OutputState, - } -} - // Defaults to Mode.AUTO. type GoogleCloudRetailV2alphaSearchRequestPersonalizationSpecMode string @@ -1161,12 +1130,6 @@ func (in *googleCloudRetailV2alphaSearchRequestPersonalizationSpecModePtr) ToGoo return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudRetailV2alphaSearchRequestPersonalizationSpecModePtrOutput) } -func (in *googleCloudRetailV2alphaSearchRequestPersonalizationSpecModePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudRetailV2alphaSearchRequestPersonalizationSpecMode] { - return pulumix.Output[*GoogleCloudRetailV2alphaSearchRequestPersonalizationSpecMode]{ - OutputState: in.ToGoogleCloudRetailV2alphaSearchRequestPersonalizationSpecModePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. If `RECOMMENDATIONS_FILTERING_ENABLED`, recommendation filtering by attributes is enabled for the model. type ModelFilteringOption string @@ -1338,12 +1301,6 @@ func (in *modelFilteringOptionPtr) ToModelFilteringOptionPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(ModelFilteringOptionPtrOutput) } -func (in *modelFilteringOptionPtr) ToOutput(ctx context.Context) pulumix.Output[*ModelFilteringOption] { - return pulumix.Output[*ModelFilteringOption]{ - OutputState: in.ToModelFilteringOptionPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The state of periodic tuning. The period we use is 3 months - to do a one-off tune earlier use the `TuneModel` method. Default value is `PERIODIC_TUNING_ENABLED`. type ModelPeriodicTuningState string @@ -1518,12 +1475,6 @@ func (in *modelPeriodicTuningStatePtr) ToModelPeriodicTuningStatePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(ModelPeriodicTuningStatePtrOutput) } -func (in *modelPeriodicTuningStatePtr) ToOutput(ctx context.Context) pulumix.Output[*ModelPeriodicTuningState] { - return pulumix.Output[*ModelPeriodicTuningState]{ - OutputState: in.ToModelPeriodicTuningStatePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The training state that the model is in (e.g. `TRAINING` or `PAUSED`). Since part of the cost of running the service is frequency of training - this can be used to determine when to train model in order to control cost. If not specified: the default value for `CreateModel` method is `TRAINING`. The default value for `UpdateModel` method is to keep the state the same as before. type ModelTrainingState string @@ -1695,12 +1646,6 @@ func (in *modelTrainingStatePtr) ToModelTrainingStatePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(ModelTrainingStatePtrOutput) } -func (in *modelTrainingStatePtr) ToOutput(ctx context.Context) pulumix.Output[*ModelTrainingState] { - return pulumix.Output[*ModelTrainingState]{ - OutputState: in.ToModelTrainingStatePtrOutputWithContext(ctx).OutputState, - } -} - // The online availability of the Product. Default to Availability.IN_STOCK. Corresponding properties: Google Merchant Center property [availability](https://support.google.com/merchants/answer/6324448). Schema.org property [Offer.availability](https://schema.org/availability). type ProductAvailability string @@ -1878,12 +1823,6 @@ func (in *productAvailabilityPtr) ToProductAvailabilityPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(ProductAvailabilityPtrOutput) } -func (in *productAvailabilityPtr) ToOutput(ctx context.Context) pulumix.Output[*ProductAvailability] { - return pulumix.Output[*ProductAvailability]{ - OutputState: in.ToProductAvailabilityPtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The type of the product. Default to Catalog.product_level_config.ingestion_product_type if unset. type ProductType string @@ -2058,12 +1997,6 @@ func (in *productTypePtr) ToProductTypePtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(ProductTypePtrOutput) } -func (in *productTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ProductType] { - return pulumix.Output[*ProductType]{ - OutputState: in.ToProductTypePtrOutputWithContext(ctx).OutputState, - } -} - // What kind of diversity to use - data driven or rule based. If unset, the server behavior defaults to RULE_BASED_DIVERSITY. type ServingConfigDiversityType string @@ -2235,12 +2168,6 @@ func (in *servingConfigDiversityTypePtr) ToServingConfigDiversityTypePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(ServingConfigDiversityTypePtrOutput) } -func (in *servingConfigDiversityTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ServingConfigDiversityType] { - return pulumix.Output[*ServingConfigDiversityType]{ - OutputState: in.ToServingConfigDiversityTypePtrOutputWithContext(ctx).OutputState, - } -} - type ServingConfigSolutionTypesItem string const ( @@ -2411,12 +2338,6 @@ func (in *servingConfigSolutionTypesItemPtr) ToServingConfigSolutionTypesItemPtr return pulumi.ToOutputWithContext(ctx, in).(ServingConfigSolutionTypesItemPtrOutput) } -func (in *servingConfigSolutionTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*ServingConfigSolutionTypesItem] { - return pulumix.Output[*ServingConfigSolutionTypesItem]{ - OutputState: in.ToServingConfigSolutionTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // ServingConfigSolutionTypesItemArrayInput is an input type that accepts ServingConfigSolutionTypesItemArray and ServingConfigSolutionTypesItemArrayOutput values. // You can construct a concrete instance of `ServingConfigSolutionTypesItemArrayInput` via: // diff --git a/sdk/go/google/retail/v2beta/pulumiEnums.go b/sdk/go/google/retail/v2beta/pulumiEnums.go index 3702b48e1b..68c1b4e0d1 100644 --- a/sdk/go/google/retail/v2beta/pulumiEnums.go +++ b/sdk/go/google/retail/v2beta/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) type ControlSearchSolutionUseCaseItem string @@ -181,12 +180,6 @@ func (in *controlSearchSolutionUseCaseItemPtr) ToControlSearchSolutionUseCaseIte return pulumi.ToOutputWithContext(ctx, in).(ControlSearchSolutionUseCaseItemPtrOutput) } -func (in *controlSearchSolutionUseCaseItemPtr) ToOutput(ctx context.Context) pulumix.Output[*ControlSearchSolutionUseCaseItem] { - return pulumix.Output[*ControlSearchSolutionUseCaseItem]{ - OutputState: in.ToControlSearchSolutionUseCaseItemPtrOutputWithContext(ctx).OutputState, - } -} - // ControlSearchSolutionUseCaseItemArrayInput is an input type that accepts ControlSearchSolutionUseCaseItemArray and ControlSearchSolutionUseCaseItemArrayOutput values. // You can construct a concrete instance of `ControlSearchSolutionUseCaseItemArrayInput` via: // @@ -402,12 +395,6 @@ func (in *controlSolutionTypesItemPtr) ToControlSolutionTypesItemPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(ControlSolutionTypesItemPtrOutput) } -func (in *controlSolutionTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*ControlSolutionTypesItem] { - return pulumix.Output[*ControlSolutionTypesItem]{ - OutputState: in.ToControlSolutionTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // ControlSolutionTypesItemArrayInput is an input type that accepts ControlSolutionTypesItemArray and ControlSolutionTypesItemArrayOutput values. // You can construct a concrete instance of `ControlSolutionTypesItemArrayInput` via: // @@ -624,12 +611,6 @@ func (in *googleCloudRetailV2betaModelFrequentlyBoughtTogetherFeaturesConfigCont return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudRetailV2betaModelFrequentlyBoughtTogetherFeaturesConfigContextProductsTypePtrOutput) } -func (in *googleCloudRetailV2betaModelFrequentlyBoughtTogetherFeaturesConfigContextProductsTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudRetailV2betaModelFrequentlyBoughtTogetherFeaturesConfigContextProductsType] { - return pulumix.Output[*GoogleCloudRetailV2betaModelFrequentlyBoughtTogetherFeaturesConfigContextProductsType]{ - OutputState: in.ToGoogleCloudRetailV2betaModelFrequentlyBoughtTogetherFeaturesConfigContextProductsTypePtrOutputWithContext(ctx).OutputState, - } -} - // Mode of the DynamicFacet feature. Defaults to Mode.DISABLED if it's unset. type GoogleCloudRetailV2betaSearchRequestDynamicFacetSpecMode string @@ -801,12 +782,6 @@ func (in *googleCloudRetailV2betaSearchRequestDynamicFacetSpecModePtr) ToGoogleC return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudRetailV2betaSearchRequestDynamicFacetSpecModePtrOutput) } -func (in *googleCloudRetailV2betaSearchRequestDynamicFacetSpecModePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudRetailV2betaSearchRequestDynamicFacetSpecMode] { - return pulumix.Output[*GoogleCloudRetailV2betaSearchRequestDynamicFacetSpecMode]{ - OutputState: in.ToGoogleCloudRetailV2betaSearchRequestDynamicFacetSpecModePtrOutputWithContext(ctx).OutputState, - } -} - // Defaults to Mode.AUTO. type GoogleCloudRetailV2betaSearchRequestPersonalizationSpecMode string @@ -978,12 +953,6 @@ func (in *googleCloudRetailV2betaSearchRequestPersonalizationSpecModePtr) ToGoog return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudRetailV2betaSearchRequestPersonalizationSpecModePtrOutput) } -func (in *googleCloudRetailV2betaSearchRequestPersonalizationSpecModePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudRetailV2betaSearchRequestPersonalizationSpecMode] { - return pulumix.Output[*GoogleCloudRetailV2betaSearchRequestPersonalizationSpecMode]{ - OutputState: in.ToGoogleCloudRetailV2betaSearchRequestPersonalizationSpecModePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. If `RECOMMENDATIONS_FILTERING_ENABLED`, recommendation filtering by attributes is enabled for the model. type ModelFilteringOption string @@ -1155,12 +1124,6 @@ func (in *modelFilteringOptionPtr) ToModelFilteringOptionPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(ModelFilteringOptionPtrOutput) } -func (in *modelFilteringOptionPtr) ToOutput(ctx context.Context) pulumix.Output[*ModelFilteringOption] { - return pulumix.Output[*ModelFilteringOption]{ - OutputState: in.ToModelFilteringOptionPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The state of periodic tuning. The period we use is 3 months - to do a one-off tune earlier use the `TuneModel` method. Default value is `PERIODIC_TUNING_ENABLED`. type ModelPeriodicTuningState string @@ -1335,12 +1298,6 @@ func (in *modelPeriodicTuningStatePtr) ToModelPeriodicTuningStatePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(ModelPeriodicTuningStatePtrOutput) } -func (in *modelPeriodicTuningStatePtr) ToOutput(ctx context.Context) pulumix.Output[*ModelPeriodicTuningState] { - return pulumix.Output[*ModelPeriodicTuningState]{ - OutputState: in.ToModelPeriodicTuningStatePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The training state that the model is in (e.g. `TRAINING` or `PAUSED`). Since part of the cost of running the service is frequency of training - this can be used to determine when to train model in order to control cost. If not specified: the default value for `CreateModel` method is `TRAINING`. The default value for `UpdateModel` method is to keep the state the same as before. type ModelTrainingState string @@ -1512,12 +1469,6 @@ func (in *modelTrainingStatePtr) ToModelTrainingStatePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(ModelTrainingStatePtrOutput) } -func (in *modelTrainingStatePtr) ToOutput(ctx context.Context) pulumix.Output[*ModelTrainingState] { - return pulumix.Output[*ModelTrainingState]{ - OutputState: in.ToModelTrainingStatePtrOutputWithContext(ctx).OutputState, - } -} - // The online availability of the Product. Default to Availability.IN_STOCK. Corresponding properties: Google Merchant Center property [availability](https://support.google.com/merchants/answer/6324448). Schema.org property [Offer.availability](https://schema.org/availability). type ProductAvailability string @@ -1695,12 +1646,6 @@ func (in *productAvailabilityPtr) ToProductAvailabilityPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(ProductAvailabilityPtrOutput) } -func (in *productAvailabilityPtr) ToOutput(ctx context.Context) pulumix.Output[*ProductAvailability] { - return pulumix.Output[*ProductAvailability]{ - OutputState: in.ToProductAvailabilityPtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The type of the product. Default to Catalog.product_level_config.ingestion_product_type if unset. type ProductType string @@ -1875,12 +1820,6 @@ func (in *productTypePtr) ToProductTypePtrOutputWithContext(ctx context.Context) return pulumi.ToOutputWithContext(ctx, in).(ProductTypePtrOutput) } -func (in *productTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ProductType] { - return pulumix.Output[*ProductType]{ - OutputState: in.ToProductTypePtrOutputWithContext(ctx).OutputState, - } -} - // What kind of diversity to use - data driven or rule based. If unset, the server behavior defaults to RULE_BASED_DIVERSITY. type ServingConfigDiversityType string @@ -2052,12 +1991,6 @@ func (in *servingConfigDiversityTypePtr) ToServingConfigDiversityTypePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(ServingConfigDiversityTypePtrOutput) } -func (in *servingConfigDiversityTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ServingConfigDiversityType] { - return pulumix.Output[*ServingConfigDiversityType]{ - OutputState: in.ToServingConfigDiversityTypePtrOutputWithContext(ctx).OutputState, - } -} - type ServingConfigSolutionTypesItem string const ( @@ -2228,12 +2161,6 @@ func (in *servingConfigSolutionTypesItemPtr) ToServingConfigSolutionTypesItemPtr return pulumi.ToOutputWithContext(ctx, in).(ServingConfigSolutionTypesItemPtrOutput) } -func (in *servingConfigSolutionTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*ServingConfigSolutionTypesItem] { - return pulumix.Output[*ServingConfigSolutionTypesItem]{ - OutputState: in.ToServingConfigSolutionTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // ServingConfigSolutionTypesItemArrayInput is an input type that accepts ServingConfigSolutionTypesItemArray and ServingConfigSolutionTypesItemArrayOutput values. // You can construct a concrete instance of `ServingConfigSolutionTypesItemArrayInput` via: // diff --git a/sdk/go/google/run/v1/pulumiEnums.go b/sdk/go/google/run/v1/pulumiEnums.go index bde0a48c66..576e7bb7e5 100644 --- a/sdk/go/google/run/v1/pulumiEnums.go +++ b/sdk/go/google/run/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // The mode of the certificate. type DomainMappingSpecCertificateMode string @@ -361,12 +354,6 @@ func (in *domainMappingSpecCertificateModePtr) ToDomainMappingSpecCertificateMod return pulumi.ToOutputWithContext(ctx, in).(DomainMappingSpecCertificateModePtrOutput) } -func (in *domainMappingSpecCertificateModePtr) ToOutput(ctx context.Context) pulumix.Output[*DomainMappingSpecCertificateMode] { - return pulumix.Output[*DomainMappingSpecCertificateMode]{ - OutputState: in.ToDomainMappingSpecCertificateModePtrOutputWithContext(ctx).OutputState, - } -} - // Resource record type. Example: `AAAA`. type ResourceRecordType string diff --git a/sdk/go/google/run/v2/pulumiEnums.go b/sdk/go/google/run/v2/pulumiEnums.go index bcc8cd9401..0429662089 100644 --- a/sdk/go/google/run/v2/pulumiEnums.go +++ b/sdk/go/google/run/v2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The medium on which the data is stored. Acceptable values today is only MEMORY or none. When none, the default will currently be backed by memory but could change over time. +optional @@ -179,12 +178,6 @@ func (in *googleCloudRunV2EmptyDirVolumeSourceMediumPtr) ToGoogleCloudRunV2Empty return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudRunV2EmptyDirVolumeSourceMediumPtrOutput) } -func (in *googleCloudRunV2EmptyDirVolumeSourceMediumPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudRunV2EmptyDirVolumeSourceMedium] { - return pulumix.Output[*GoogleCloudRunV2EmptyDirVolumeSourceMedium]{ - OutputState: in.ToGoogleCloudRunV2EmptyDirVolumeSourceMediumPtrOutputWithContext(ctx).OutputState, - } -} - // The sandbox environment to host this Revision. type GoogleCloudRunV2RevisionTemplateExecutionEnvironment string @@ -356,12 +349,6 @@ func (in *googleCloudRunV2RevisionTemplateExecutionEnvironmentPtr) ToGoogleCloud return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudRunV2RevisionTemplateExecutionEnvironmentPtrOutput) } -func (in *googleCloudRunV2RevisionTemplateExecutionEnvironmentPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudRunV2RevisionTemplateExecutionEnvironment] { - return pulumix.Output[*GoogleCloudRunV2RevisionTemplateExecutionEnvironment]{ - OutputState: in.ToGoogleCloudRunV2RevisionTemplateExecutionEnvironmentPtrOutputWithContext(ctx).OutputState, - } -} - // The execution environment being used to host this Task. type GoogleCloudRunV2TaskTemplateExecutionEnvironment string @@ -533,12 +520,6 @@ func (in *googleCloudRunV2TaskTemplateExecutionEnvironmentPtr) ToGoogleCloudRunV return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudRunV2TaskTemplateExecutionEnvironmentPtrOutput) } -func (in *googleCloudRunV2TaskTemplateExecutionEnvironmentPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudRunV2TaskTemplateExecutionEnvironment] { - return pulumix.Output[*GoogleCloudRunV2TaskTemplateExecutionEnvironment]{ - OutputState: in.ToGoogleCloudRunV2TaskTemplateExecutionEnvironmentPtrOutputWithContext(ctx).OutputState, - } -} - // The allocation type for this traffic target. type GoogleCloudRunV2TrafficTargetType string @@ -710,12 +691,6 @@ func (in *googleCloudRunV2TrafficTargetTypePtr) ToGoogleCloudRunV2TrafficTargetT return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudRunV2TrafficTargetTypePtrOutput) } -func (in *googleCloudRunV2TrafficTargetTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudRunV2TrafficTargetType] { - return pulumix.Output[*GoogleCloudRunV2TrafficTargetType]{ - OutputState: in.ToGoogleCloudRunV2TrafficTargetTypePtrOutputWithContext(ctx).OutputState, - } -} - // Traffic VPC egress settings. If not provided, it defaults to PRIVATE_RANGES_ONLY. type GoogleCloudRunV2VpcAccessEgress string @@ -887,12 +862,6 @@ func (in *googleCloudRunV2VpcAccessEgressPtr) ToGoogleCloudRunV2VpcAccessEgressP return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudRunV2VpcAccessEgressPtrOutput) } -func (in *googleCloudRunV2VpcAccessEgressPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudRunV2VpcAccessEgress] { - return pulumix.Output[*GoogleCloudRunV2VpcAccessEgress]{ - OutputState: in.ToGoogleCloudRunV2VpcAccessEgressPtrOutputWithContext(ctx).OutputState, - } -} - // The log type that this config enables. type GoogleIamV1AuditLogConfigLogType string @@ -1067,12 +1036,6 @@ func (in *googleIamV1AuditLogConfigLogTypePtr) ToGoogleIamV1AuditLogConfigLogTyp return pulumi.ToOutputWithContext(ctx, in).(GoogleIamV1AuditLogConfigLogTypePtrOutput) } -func (in *googleIamV1AuditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleIamV1AuditLogConfigLogType] { - return pulumix.Output[*GoogleIamV1AuditLogConfigLogType]{ - OutputState: in.ToGoogleIamV1AuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // The launch stage as defined by [Google Cloud Platform Launch Stages](https://cloud.google.com/terms/launch-stages). Cloud Run supports `ALPHA`, `BETA`, and `GA`. If no value is specified, GA is assumed. Set the launch stage to a preview stage on input to allow use of preview features in that stage. On read (or output), describes whether the resource uses preview features. For example, if ALPHA is provided as input, but only BETA and GA-level features are used, this field will be BETA on output. type JobLaunchStage string @@ -1259,12 +1222,6 @@ func (in *jobLaunchStagePtr) ToJobLaunchStagePtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(JobLaunchStagePtrOutput) } -func (in *jobLaunchStagePtr) ToOutput(ctx context.Context) pulumix.Output[*JobLaunchStage] { - return pulumix.Output[*JobLaunchStage]{ - OutputState: in.ToJobLaunchStagePtrOutputWithContext(ctx).OutputState, - } -} - // Provides the ingress settings for this Service. On output, returns the currently observed ingress settings, or INGRESS_TRAFFIC_UNSPECIFIED if no revision is active. type ServiceIngress string @@ -1439,12 +1396,6 @@ func (in *serviceIngressPtr) ToServiceIngressPtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(ServiceIngressPtrOutput) } -func (in *serviceIngressPtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceIngress] { - return pulumix.Output[*ServiceIngress]{ - OutputState: in.ToServiceIngressPtrOutputWithContext(ctx).OutputState, - } -} - // The launch stage as defined by [Google Cloud Platform Launch Stages](https://cloud.google.com/terms/launch-stages). Cloud Run supports `ALPHA`, `BETA`, and `GA`. If no value is specified, GA is assumed. Set the launch stage to a preview stage on input to allow use of preview features in that stage. On read (or output), describes whether the resource uses preview features. For example, if ALPHA is provided as input, but only BETA and GA-level features are used, this field will be BETA on output. type ServiceLaunchStage string @@ -1631,12 +1582,6 @@ func (in *serviceLaunchStagePtr) ToServiceLaunchStagePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(ServiceLaunchStagePtrOutput) } -func (in *serviceLaunchStagePtr) ToOutput(ctx context.Context) pulumix.Output[*ServiceLaunchStage] { - return pulumix.Output[*ServiceLaunchStage]{ - OutputState: in.ToServiceLaunchStagePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudRunV2EmptyDirVolumeSourceMediumInput)(nil)).Elem(), GoogleCloudRunV2EmptyDirVolumeSourceMedium("MEDIUM_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*GoogleCloudRunV2EmptyDirVolumeSourceMediumPtrInput)(nil)).Elem(), GoogleCloudRunV2EmptyDirVolumeSourceMedium("MEDIUM_UNSPECIFIED")) diff --git a/sdk/go/google/secretmanager/v1/pulumiEnums.go b/sdk/go/google/secretmanager/v1/pulumiEnums.go index 05bc5ef61a..d6528a471f 100644 --- a/sdk/go/google/secretmanager/v1/pulumiEnums.go +++ b/sdk/go/google/secretmanager/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/secretmanager/v1beta1/pulumiEnums.go b/sdk/go/google/secretmanager/v1beta1/pulumiEnums.go index 186b214402..623323d9f9 100644 --- a/sdk/go/google/secretmanager/v1beta1/pulumiEnums.go +++ b/sdk/go/google/secretmanager/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/securitycenter/v1/pulumiEnums.go b/sdk/go/google/securitycenter/v1/pulumiEnums.go index 951ec17c38..3ac35c60a3 100644 --- a/sdk/go/google/securitycenter/v1/pulumiEnums.go +++ b/sdk/go/google/securitycenter/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // The enablement state of the custom module. type FolderSecurityHealthAnalyticsSettingCustomModuleEnablementState string @@ -365,12 +358,6 @@ func (in *folderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtr) To return pulumi.ToOutputWithContext(ctx, in).(FolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput) } -func (in *folderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtr) ToOutput(ctx context.Context) pulumix.Output[*FolderSecurityHealthAnalyticsSettingCustomModuleEnablementState] { - return pulumix.Output[*FolderSecurityHealthAnalyticsSettingCustomModuleEnablementState]{ - OutputState: in.ToFolderSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutputWithContext(ctx).OutputState, - } -} - // The severity to assign to findings generated by the module. type GoogleCloudSecuritycenterV1CustomConfigSeverity string @@ -548,12 +535,6 @@ func (in *googleCloudSecuritycenterV1CustomConfigSeverityPtr) ToGoogleCloudSecur return pulumi.ToOutputWithContext(ctx, in).(GoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutput) } -func (in *googleCloudSecuritycenterV1CustomConfigSeverityPtr) ToOutput(ctx context.Context) pulumix.Output[*GoogleCloudSecuritycenterV1CustomConfigSeverity] { - return pulumix.Output[*GoogleCloudSecuritycenterV1CustomConfigSeverity]{ - OutputState: in.ToGoogleCloudSecuritycenterV1CustomConfigSeverityPtrOutputWithContext(ctx).OutputState, - } -} - // The state of enablement for the module at the given level of the hierarchy. type OrganizationEventThreatDetectionSettingCustomModuleEnablementState string @@ -725,12 +706,6 @@ func (in *organizationEventThreatDetectionSettingCustomModuleEnablementStatePtr) return pulumi.ToOutputWithContext(ctx, in).(OrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutput) } -func (in *organizationEventThreatDetectionSettingCustomModuleEnablementStatePtr) ToOutput(ctx context.Context) pulumix.Output[*OrganizationEventThreatDetectionSettingCustomModuleEnablementState] { - return pulumix.Output[*OrganizationEventThreatDetectionSettingCustomModuleEnablementState]{ - OutputState: in.ToOrganizationEventThreatDetectionSettingCustomModuleEnablementStatePtrOutputWithContext(ctx).OutputState, - } -} - // The enablement state of the custom module. type OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementState string @@ -905,12 +880,6 @@ func (in *organizationSecurityHealthAnalyticsSettingCustomModuleEnablementStateP return pulumi.ToOutputWithContext(ctx, in).(OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput) } -func (in *organizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtr) ToOutput(ctx context.Context) pulumix.Output[*OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementState] { - return pulumix.Output[*OrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementState]{ - OutputState: in.ToOrganizationSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutputWithContext(ctx).OutputState, - } -} - // The enablement state of the custom module. type ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementState string @@ -1085,12 +1054,6 @@ func (in *projectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtr) T return pulumi.ToOutputWithContext(ctx, in).(ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutput) } -func (in *projectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtr) ToOutput(ctx context.Context) pulumix.Output[*ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementState] { - return pulumix.Output[*ProjectSecurityHealthAnalyticsSettingCustomModuleEnablementState]{ - OutputState: in.ToProjectSecurityHealthAnalyticsSettingCustomModuleEnablementStatePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/securitycenter/v1beta1/pulumiEnums.go b/sdk/go/google/securitycenter/v1beta1/pulumiEnums.go index 186b214402..623323d9f9 100644 --- a/sdk/go/google/securitycenter/v1beta1/pulumiEnums.go +++ b/sdk/go/google/securitycenter/v1beta1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/servicemanagement/v1/pulumiEnums.go b/sdk/go/google/servicemanagement/v1/pulumiEnums.go index 5f170f772c..e5002d9a87 100644 --- a/sdk/go/google/servicemanagement/v1/pulumiEnums.go +++ b/sdk/go/google/servicemanagement/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The source syntax of the service. @@ -182,12 +181,6 @@ func (in *apiSyntaxPtr) ToApiSyntaxPtrOutputWithContext(ctx context.Context) Api return pulumi.ToOutputWithContext(ctx, in).(ApiSyntaxPtrOutput) } -func (in *apiSyntaxPtr) ToOutput(ctx context.Context) pulumix.Output[*ApiSyntax] { - return pulumix.Output[*ApiSyntax]{ - OutputState: in.ToApiSyntaxPtrOutputWithContext(ctx).OutputState, - } -} - // The log type that this config enables. type AuditLogConfigLogType string @@ -362,12 +355,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - type BackendRulePathTranslation string const ( @@ -537,12 +524,6 @@ func (in *backendRulePathTranslationPtr) ToBackendRulePathTranslationPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(BackendRulePathTranslationPtrOutput) } -func (in *backendRulePathTranslationPtr) ToOutput(ctx context.Context) pulumix.Output[*BackendRulePathTranslation] { - return pulumix.Output[*BackendRulePathTranslation]{ - OutputState: in.ToBackendRulePathTranslationPtrOutputWithContext(ctx).OutputState, - } -} - // Launch stage of this version of the API. type ClientLibrarySettingsLaunchStage string @@ -729,12 +710,6 @@ func (in *clientLibrarySettingsLaunchStagePtr) ToClientLibrarySettingsLaunchStag return pulumi.ToOutputWithContext(ctx, in).(ClientLibrarySettingsLaunchStagePtrOutput) } -func (in *clientLibrarySettingsLaunchStagePtr) ToOutput(ctx context.Context) pulumix.Output[*ClientLibrarySettingsLaunchStage] { - return pulumix.Output[*ClientLibrarySettingsLaunchStage]{ - OutputState: in.ToClientLibrarySettingsLaunchStagePtrOutputWithContext(ctx).OutputState, - } -} - type CommonLanguageSettingsDestinationsItem string const ( @@ -905,12 +880,6 @@ func (in *commonLanguageSettingsDestinationsItemPtr) ToCommonLanguageSettingsDes return pulumi.ToOutputWithContext(ctx, in).(CommonLanguageSettingsDestinationsItemPtrOutput) } -func (in *commonLanguageSettingsDestinationsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*CommonLanguageSettingsDestinationsItem] { - return pulumix.Output[*CommonLanguageSettingsDestinationsItem]{ - OutputState: in.ToCommonLanguageSettingsDestinationsItemPtrOutputWithContext(ctx).OutputState, - } -} - // CommonLanguageSettingsDestinationsItemArrayInput is an input type that accepts CommonLanguageSettingsDestinationsItemArray and CommonLanguageSettingsDestinationsItemArrayOutput values. // You can construct a concrete instance of `CommonLanguageSettingsDestinationsItemArrayInput` via: // @@ -1127,12 +1096,6 @@ func (in *enumSyntaxPtr) ToEnumSyntaxPtrOutputWithContext(ctx context.Context) E return pulumi.ToOutputWithContext(ctx, in).(EnumSyntaxPtrOutput) } -func (in *enumSyntaxPtr) ToOutput(ctx context.Context) pulumix.Output[*EnumSyntax] { - return pulumix.Output[*EnumSyntax]{ - OutputState: in.ToEnumSyntaxPtrOutputWithContext(ctx).OutputState, - } -} - // The field cardinality. type FieldCardinality string @@ -1307,12 +1270,6 @@ func (in *fieldCardinalityPtr) ToFieldCardinalityPtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(FieldCardinalityPtrOutput) } -func (in *fieldCardinalityPtr) ToOutput(ctx context.Context) pulumix.Output[*FieldCardinality] { - return pulumix.Output[*FieldCardinality]{ - OutputState: in.ToFieldCardinalityPtrOutputWithContext(ctx).OutputState, - } -} - // The field type. type FieldKind string @@ -1532,12 +1489,6 @@ func (in *fieldKindPtr) ToFieldKindPtrOutputWithContext(ctx context.Context) Fie return pulumi.ToOutputWithContext(ctx, in).(FieldKindPtrOutput) } -func (in *fieldKindPtr) ToOutput(ctx context.Context) pulumix.Output[*FieldKind] { - return pulumix.Output[*FieldKind]{ - OutputState: in.ToFieldKindPtrOutputWithContext(ctx).OutputState, - } -} - // The type of data that can be assigned to the label. type LabelDescriptorValueType string @@ -1709,12 +1660,6 @@ func (in *labelDescriptorValueTypePtr) ToLabelDescriptorValueTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(LabelDescriptorValueTypePtrOutput) } -func (in *labelDescriptorValueTypePtr) ToOutput(ctx context.Context) pulumix.Output[*LabelDescriptorValueType] { - return pulumix.Output[*LabelDescriptorValueType]{ - OutputState: in.ToLabelDescriptorValueTypePtrOutputWithContext(ctx).OutputState, - } -} - // The source syntax of this method. type MethodSyntax string @@ -1886,12 +1831,6 @@ func (in *methodSyntaxPtr) ToMethodSyntaxPtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(MethodSyntaxPtrOutput) } -func (in *methodSyntaxPtr) ToOutput(ctx context.Context) pulumix.Output[*MethodSyntax] { - return pulumix.Output[*MethodSyntax]{ - OutputState: in.ToMethodSyntaxPtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The launch stage of the metric definition. type MetricDescriptorLaunchStage string @@ -2078,12 +2017,6 @@ func (in *metricDescriptorLaunchStagePtr) ToMetricDescriptorLaunchStagePtrOutput return pulumi.ToOutputWithContext(ctx, in).(MetricDescriptorLaunchStagePtrOutput) } -func (in *metricDescriptorLaunchStagePtr) ToOutput(ctx context.Context) pulumix.Output[*MetricDescriptorLaunchStage] { - return pulumix.Output[*MetricDescriptorLaunchStage]{ - OutputState: in.ToMetricDescriptorLaunchStagePtrOutputWithContext(ctx).OutputState, - } -} - // Deprecated. Must use the MetricDescriptor.launch_stage instead. type MetricDescriptorMetadataLaunchStage string @@ -2270,12 +2203,6 @@ func (in *metricDescriptorMetadataLaunchStagePtr) ToMetricDescriptorMetadataLaun return pulumi.ToOutputWithContext(ctx, in).(MetricDescriptorMetadataLaunchStagePtrOutput) } -func (in *metricDescriptorMetadataLaunchStagePtr) ToOutput(ctx context.Context) pulumix.Output[*MetricDescriptorMetadataLaunchStage] { - return pulumix.Output[*MetricDescriptorMetadataLaunchStage]{ - OutputState: in.ToMetricDescriptorMetadataLaunchStagePtrOutputWithContext(ctx).OutputState, - } -} - // Whether the metric records instantaneous values, changes to a value, etc. Some combinations of `metric_kind` and `value_type` might not be supported. type MetricDescriptorMetricKind string @@ -2450,12 +2377,6 @@ func (in *metricDescriptorMetricKindPtr) ToMetricDescriptorMetricKindPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(MetricDescriptorMetricKindPtrOutput) } -func (in *metricDescriptorMetricKindPtr) ToOutput(ctx context.Context) pulumix.Output[*MetricDescriptorMetricKind] { - return pulumix.Output[*MetricDescriptorMetricKind]{ - OutputState: in.ToMetricDescriptorMetricKindPtrOutputWithContext(ctx).OutputState, - } -} - // Whether the measurement is an integer, a floating-point number, etc. Some combinations of `metric_kind` and `value_type` might not be supported. type MetricDescriptorValueType string @@ -2639,12 +2560,6 @@ func (in *metricDescriptorValueTypePtr) ToMetricDescriptorValueTypePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(MetricDescriptorValueTypePtrOutput) } -func (in *metricDescriptorValueTypePtr) ToOutput(ctx context.Context) pulumix.Output[*MetricDescriptorValueType] { - return pulumix.Output[*MetricDescriptorValueType]{ - OutputState: in.ToMetricDescriptorValueTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The launch stage of the monitored resource definition. type MonitoredResourceDescriptorLaunchStage string @@ -2831,12 +2746,6 @@ func (in *monitoredResourceDescriptorLaunchStagePtr) ToMonitoredResourceDescript return pulumi.ToOutputWithContext(ctx, in).(MonitoredResourceDescriptorLaunchStagePtrOutput) } -func (in *monitoredResourceDescriptorLaunchStagePtr) ToOutput(ctx context.Context) pulumix.Output[*MonitoredResourceDescriptorLaunchStage] { - return pulumix.Output[*MonitoredResourceDescriptorLaunchStage]{ - OutputState: in.ToMonitoredResourceDescriptorLaunchStagePtrOutputWithContext(ctx).OutputState, - } -} - // For whom the client library is being published. type PublishingOrganization string @@ -3023,12 +2932,6 @@ func (in *publishingOrganizationPtr) ToPublishingOrganizationPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(PublishingOrganizationPtrOutput) } -func (in *publishingOrganizationPtr) ToOutput(ctx context.Context) pulumix.Output[*PublishingOrganization] { - return pulumix.Output[*PublishingOrganization]{ - OutputState: in.ToPublishingOrganizationPtrOutputWithContext(ctx).OutputState, - } -} - // The status of this rollout. Readonly. In case of a failed rollout, the system will automatically rollback to the current Rollout version. Readonly. type RolloutStatus string @@ -3220,12 +3123,6 @@ func (in *typeSyntaxPtr) ToTypeSyntaxPtrOutputWithContext(ctx context.Context) T return pulumi.ToOutputWithContext(ctx, in).(TypeSyntaxPtrOutput) } -func (in *typeSyntaxPtr) ToOutput(ctx context.Context) pulumix.Output[*TypeSyntax] { - return pulumix.Output[*TypeSyntax]{ - OutputState: in.ToTypeSyntaxPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ApiSyntaxInput)(nil)).Elem(), ApiSyntax("SYNTAX_PROTO2")) pulumi.RegisterInputType(reflect.TypeOf((*ApiSyntaxPtrInput)(nil)).Elem(), ApiSyntax("SYNTAX_PROTO2")) diff --git a/sdk/go/google/sourcerepo/v1/pulumiEnums.go b/sdk/go/google/sourcerepo/v1/pulumiEnums.go index 05bc5ef61a..d6528a471f 100644 --- a/sdk/go/google/sourcerepo/v1/pulumiEnums.go +++ b/sdk/go/google/sourcerepo/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/spanner/v1/pulumiEnums.go b/sdk/go/google/spanner/v1/pulumiEnums.go index 70edb36166..2b5f75ce8e 100644 --- a/sdk/go/google/spanner/v1/pulumiEnums.go +++ b/sdk/go/google/spanner/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Optional. The dialect of the Cloud Spanner Database. @@ -182,12 +181,6 @@ func (in *databaseDatabaseDialectPtr) ToDatabaseDatabaseDialectPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(DatabaseDatabaseDialectPtrOutput) } -func (in *databaseDatabaseDialectPtr) ToOutput(ctx context.Context) pulumix.Output[*DatabaseDatabaseDialect] { - return pulumix.Output[*DatabaseDatabaseDialect]{ - OutputState: in.ToDatabaseDatabaseDialectPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the expiration behavior of a free instance. The default of ExpireBehavior is `REMOVE_AFTER_GRACE_PERIOD`. This can be modified during or after creation, and before expiration. type FreeInstanceMetadataExpireBehavior string @@ -359,12 +352,6 @@ func (in *freeInstanceMetadataExpireBehaviorPtr) ToFreeInstanceMetadataExpireBeh return pulumi.ToOutputWithContext(ctx, in).(FreeInstanceMetadataExpireBehaviorPtrOutput) } -func (in *freeInstanceMetadataExpireBehaviorPtr) ToOutput(ctx context.Context) pulumix.Output[*FreeInstanceMetadataExpireBehavior] { - return pulumix.Output[*FreeInstanceMetadataExpireBehavior]{ - OutputState: in.ToFreeInstanceMetadataExpireBehaviorPtrOutputWithContext(ctx).OutputState, - } -} - // The `InstanceType` of the current instance. type InstanceInstanceType string @@ -536,12 +523,6 @@ func (in *instanceInstanceTypePtr) ToInstanceInstanceTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(InstanceInstanceTypePtrOutput) } -func (in *instanceInstanceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceInstanceType] { - return pulumix.Output[*InstanceInstanceType]{ - OutputState: in.ToInstanceInstanceTypePtrOutputWithContext(ctx).OutputState, - } -} - // The type of replica. type ReplicaInfoType string @@ -716,12 +697,6 @@ func (in *replicaInfoTypePtr) ToReplicaInfoTypePtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(ReplicaInfoTypePtrOutput) } -func (in *replicaInfoTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ReplicaInfoType] { - return pulumix.Output[*ReplicaInfoType]{ - OutputState: in.ToReplicaInfoTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*DatabaseDatabaseDialectInput)(nil)).Elem(), DatabaseDatabaseDialect("DATABASE_DIALECT_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*DatabaseDatabaseDialectPtrInput)(nil)).Elem(), DatabaseDatabaseDialect("DATABASE_DIALECT_UNSPECIFIED")) diff --git a/sdk/go/google/sqladmin/v1/pulumiEnums.go b/sdk/go/google/sqladmin/v1/pulumiEnums.go index a704faa760..275dc112d7 100644 --- a/sdk/go/google/sqladmin/v1/pulumiEnums.go +++ b/sdk/go/google/sqladmin/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The unit that 'retained_backups' represents. @@ -179,12 +178,6 @@ func (in *backupRetentionSettingsRetentionUnitPtr) ToBackupRetentionSettingsRete return pulumi.ToOutputWithContext(ctx, in).(BackupRetentionSettingsRetentionUnitPtrOutput) } -func (in *backupRetentionSettingsRetentionUnitPtr) ToOutput(ctx context.Context) pulumix.Output[*BackupRetentionSettingsRetentionUnit] { - return pulumix.Output[*BackupRetentionSettingsRetentionUnit]{ - OutputState: in.ToBackupRetentionSettingsRetentionUnitPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the kind of backup, PHYSICAL or DEFAULT_SNAPSHOT. type BackupRunBackupKind string @@ -356,12 +349,6 @@ func (in *backupRunBackupKindPtr) ToBackupRunBackupKindPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(BackupRunBackupKindPtrOutput) } -func (in *backupRunBackupKindPtr) ToOutput(ctx context.Context) pulumix.Output[*BackupRunBackupKind] { - return pulumix.Output[*BackupRunBackupKind]{ - OutputState: in.ToBackupRunBackupKindPtrOutputWithContext(ctx).OutputState, - } -} - // The status of this run. type BackupRunStatus string @@ -559,12 +546,6 @@ func (in *backupRunTypePtr) ToBackupRunTypePtrOutputWithContext(ctx context.Cont return pulumi.ToOutputWithContext(ctx, in).(BackupRunTypePtrOutput) } -func (in *backupRunTypePtr) ToOutput(ctx context.Context) pulumix.Output[*BackupRunType] { - return pulumix.Output[*BackupRunType]{ - OutputState: in.ToBackupRunTypePtrOutputWithContext(ctx).OutputState, - } -} - // The backend type. `SECOND_GEN`: Cloud SQL database instance. `EXTERNAL`: A database server that is not managed by Google. This property is read-only; use the `tier` property in the `settings` object to determine the database type. type InstanceBackendType string @@ -739,12 +720,6 @@ func (in *instanceBackendTypePtr) ToInstanceBackendTypePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(InstanceBackendTypePtrOutput) } -func (in *instanceBackendTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceBackendType] { - return pulumix.Output[*InstanceBackendType]{ - OutputState: in.ToInstanceBackendTypePtrOutputWithContext(ctx).OutputState, - } -} - // The database engine type and version. The `databaseVersion` field cannot be changed after instance creation. type InstanceDatabaseVersion string @@ -1018,12 +993,6 @@ func (in *instanceDatabaseVersionPtr) ToInstanceDatabaseVersionPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(InstanceDatabaseVersionPtrOutput) } -func (in *instanceDatabaseVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceDatabaseVersion] { - return pulumix.Output[*InstanceDatabaseVersion]{ - OutputState: in.ToInstanceDatabaseVersionPtrOutputWithContext(ctx).OutputState, - } -} - // The instance type. type InstanceInstanceType string @@ -1198,12 +1167,6 @@ func (in *instanceInstanceTypePtr) ToInstanceInstanceTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(InstanceInstanceTypePtrOutput) } -func (in *instanceInstanceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceInstanceType] { - return pulumix.Output[*InstanceInstanceType]{ - OutputState: in.ToInstanceInstanceTypePtrOutputWithContext(ctx).OutputState, - } -} - type InstanceSqlNetworkArchitecture string const ( @@ -1373,12 +1336,6 @@ func (in *instanceSqlNetworkArchitecturePtr) ToInstanceSqlNetworkArchitecturePtr return pulumi.ToOutputWithContext(ctx, in).(InstanceSqlNetworkArchitecturePtrOutput) } -func (in *instanceSqlNetworkArchitecturePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceSqlNetworkArchitecture] { - return pulumix.Output[*InstanceSqlNetworkArchitecture]{ - OutputState: in.ToInstanceSqlNetworkArchitecturePtrOutputWithContext(ctx).OutputState, - } -} - // The current serving state of the Cloud SQL instance. type InstanceStateEnum string @@ -1565,12 +1522,6 @@ func (in *instanceStateEnumPtr) ToInstanceStateEnumPtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(InstanceStateEnumPtrOutput) } -func (in *instanceStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceStateEnum] { - return pulumix.Output[*InstanceStateEnum]{ - OutputState: in.ToInstanceStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - type InstanceSuspensionReasonItem string const ( @@ -1747,12 +1698,6 @@ func (in *instanceSuspensionReasonItemPtr) ToInstanceSuspensionReasonItemPtrOutp return pulumi.ToOutputWithContext(ctx, in).(InstanceSuspensionReasonItemPtrOutput) } -func (in *instanceSuspensionReasonItemPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceSuspensionReasonItem] { - return pulumix.Output[*InstanceSuspensionReasonItem]{ - OutputState: in.ToInstanceSuspensionReasonItemPtrOutputWithContext(ctx).OutputState, - } -} - // InstanceSuspensionReasonItemArrayInput is an input type that accepts InstanceSuspensionReasonItemArray and InstanceSuspensionReasonItemArrayOutput values. // You can construct a concrete instance of `InstanceSuspensionReasonItemArrayInput` via: // @@ -1972,12 +1917,6 @@ func (in *ipConfigurationSslModePtr) ToIpConfigurationSslModePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(IpConfigurationSslModePtrOutput) } -func (in *ipConfigurationSslModePtr) ToOutput(ctx context.Context) pulumix.Output[*IpConfigurationSslMode] { - return pulumix.Output[*IpConfigurationSslMode]{ - OutputState: in.ToIpConfigurationSslModePtrOutputWithContext(ctx).OutputState, - } -} - // The type of this IP address. A `PRIMARY` address is a public address that can accept incoming connections. A `PRIVATE` address is a private address that can accept incoming connections. An `OUTGOING` address is the source address of connections originating from the instance, if supported. type IpMappingType string @@ -2155,12 +2094,6 @@ func (in *ipMappingTypePtr) ToIpMappingTypePtrOutputWithContext(ctx context.Cont return pulumi.ToOutputWithContext(ctx, in).(IpMappingTypePtrOutput) } -func (in *ipMappingTypePtr) ToOutput(ctx context.Context) pulumix.Output[*IpMappingType] { - return pulumix.Output[*IpMappingType]{ - OutputState: in.ToIpMappingTypePtrOutputWithContext(ctx).OutputState, - } -} - // Maintenance timing setting: `canary` (Earlier) or `stable` (Later). [Learn more](https://cloud.google.com/sql/docs/mysql/instance-settings#maintenance-timing-2ndgen). type MaintenanceWindowUpdateTrack string @@ -2335,12 +2268,6 @@ func (in *maintenanceWindowUpdateTrackPtr) ToMaintenanceWindowUpdateTrackPtrOutp return pulumi.ToOutputWithContext(ctx, in).(MaintenanceWindowUpdateTrackPtrOutput) } -func (in *maintenanceWindowUpdateTrackPtr) ToOutput(ctx context.Context) pulumix.Output[*MaintenanceWindowUpdateTrack] { - return pulumix.Output[*MaintenanceWindowUpdateTrack]{ - OutputState: in.ToMaintenanceWindowUpdateTrackPtrOutputWithContext(ctx).OutputState, - } -} - // The complexity of the password. type PasswordValidationPolicyComplexity string @@ -2509,12 +2436,6 @@ func (in *passwordValidationPolicyComplexityPtr) ToPasswordValidationPolicyCompl return pulumi.ToOutputWithContext(ctx, in).(PasswordValidationPolicyComplexityPtrOutput) } -func (in *passwordValidationPolicyComplexityPtr) ToOutput(ctx context.Context) pulumix.Output[*PasswordValidationPolicyComplexity] { - return pulumix.Output[*PasswordValidationPolicyComplexity]{ - OutputState: in.ToPasswordValidationPolicyComplexityPtrOutputWithContext(ctx).OutputState, - } -} - // The activation policy specifies when the instance is activated; it is applicable only when the instance state is RUNNABLE. Valid values: * `ALWAYS`: The instance is on, and remains so even in the absence of connection requests. * `NEVER`: The instance is off; it is not activated, even if a connection request arrives. type SettingsActivationPolicy string @@ -2689,12 +2610,6 @@ func (in *settingsActivationPolicyPtr) ToSettingsActivationPolicyPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(SettingsActivationPolicyPtrOutput) } -func (in *settingsActivationPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*SettingsActivationPolicy] { - return pulumix.Output[*SettingsActivationPolicy]{ - OutputState: in.ToSettingsActivationPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Availability type. Potential values: * `ZONAL`: The instance serves data from only one zone. Outages in that zone affect data accessibility. * `REGIONAL`: The instance can serve data from more than one zone in a region (it is highly available)./ For more information, see [Overview of the High Availability Configuration](https://cloud.google.com/sql/docs/mysql/high-availability). type SettingsAvailabilityType string @@ -2866,12 +2781,6 @@ func (in *settingsAvailabilityTypePtr) ToSettingsAvailabilityTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(SettingsAvailabilityTypePtrOutput) } -func (in *settingsAvailabilityTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SettingsAvailabilityType] { - return pulumix.Output[*SettingsAvailabilityType]{ - OutputState: in.ToSettingsAvailabilityTypePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies if connections must use Cloud SQL connectors. Option values include the following: `NOT_REQUIRED` (Cloud SQL instances can be connected without Cloud SQL Connectors) and `REQUIRED` (Only allow connections that use Cloud SQL Connectors). Note that using REQUIRED disables all existing authorized networks. If this field is not specified when creating a new instance, NOT_REQUIRED is used. If this field is not specified when patching or updating an existing instance, it is left unchanged in the instance. type SettingsConnectorEnforcement string @@ -3043,12 +2952,6 @@ func (in *settingsConnectorEnforcementPtr) ToSettingsConnectorEnforcementPtrOutp return pulumi.ToOutputWithContext(ctx, in).(SettingsConnectorEnforcementPtrOutput) } -func (in *settingsConnectorEnforcementPtr) ToOutput(ctx context.Context) pulumix.Output[*SettingsConnectorEnforcement] { - return pulumix.Output[*SettingsConnectorEnforcement]{ - OutputState: in.ToSettingsConnectorEnforcementPtrOutputWithContext(ctx).OutputState, - } -} - // The type of data disk: `PD_SSD` (default) or `PD_HDD`. Not used for First Generation instances. type SettingsDataDiskType string @@ -3223,12 +3126,6 @@ func (in *settingsDataDiskTypePtr) ToSettingsDataDiskTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(SettingsDataDiskTypePtrOutput) } -func (in *settingsDataDiskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SettingsDataDiskType] { - return pulumix.Output[*SettingsDataDiskType]{ - OutputState: in.ToSettingsDataDiskTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The edition of the instance. type SettingsEdition string @@ -3400,12 +3297,6 @@ func (in *settingsEditionPtr) ToSettingsEditionPtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(SettingsEditionPtrOutput) } -func (in *settingsEditionPtr) ToOutput(ctx context.Context) pulumix.Output[*SettingsEdition] { - return pulumix.Output[*SettingsEdition]{ - OutputState: in.ToSettingsEditionPtrOutputWithContext(ctx).OutputState, - } -} - // The pricing plan for this instance. This can be either `PER_USE` or `PACKAGE`. Only `PER_USE` is supported for Second Generation instances. type SettingsPricingPlan string @@ -3577,12 +3468,6 @@ func (in *settingsPricingPlanPtr) ToSettingsPricingPlanPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(SettingsPricingPlanPtrOutput) } -func (in *settingsPricingPlanPtr) ToOutput(ctx context.Context) pulumix.Output[*SettingsPricingPlan] { - return pulumix.Output[*SettingsPricingPlan]{ - OutputState: in.ToSettingsPricingPlanPtrOutputWithContext(ctx).OutputState, - } -} - // The type of replication this instance uses. This can be either `ASYNCHRONOUS` or `SYNCHRONOUS`. (Deprecated) This property was only applicable to First Generation instances. type SettingsReplicationType string @@ -3754,12 +3639,6 @@ func (in *settingsReplicationTypePtr) ToSettingsReplicationTypePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(SettingsReplicationTypePtrOutput) } -func (in *settingsReplicationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SettingsReplicationType] { - return pulumix.Output[*SettingsReplicationType]{ - OutputState: in.ToSettingsReplicationTypePtrOutputWithContext(ctx).OutputState, - } -} - // This field represents the state generated by the proactive database wellness job for OutOfDisk issues. * Writers: * the proactive database wellness job for OOD. * Readers: * the proactive database wellness job type SqlOutOfDiskReportSqlOutOfDiskState string @@ -3931,12 +3810,6 @@ func (in *sqlOutOfDiskReportSqlOutOfDiskStatePtr) ToSqlOutOfDiskReportSqlOutOfDi return pulumi.ToOutputWithContext(ctx, in).(SqlOutOfDiskReportSqlOutOfDiskStatePtrOutput) } -func (in *sqlOutOfDiskReportSqlOutOfDiskStatePtr) ToOutput(ctx context.Context) pulumix.Output[*SqlOutOfDiskReportSqlOutOfDiskState] { - return pulumix.Output[*SqlOutOfDiskReportSqlOutOfDiskState]{ - OutputState: in.ToSqlOutOfDiskReportSqlOutOfDiskStatePtrOutputWithContext(ctx).OutputState, - } -} - // Dual password status for the user. type UserDualPasswordType string @@ -4111,12 +3984,6 @@ func (in *userDualPasswordTypePtr) ToUserDualPasswordTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(UserDualPasswordTypePtrOutput) } -func (in *userDualPasswordTypePtr) ToOutput(ctx context.Context) pulumix.Output[*UserDualPasswordType] { - return pulumix.Output[*UserDualPasswordType]{ - OutputState: in.ToUserDualPasswordTypePtrOutputWithContext(ctx).OutputState, - } -} - // The user type. It determines the method to authenticate the user during login. The default is the database's built-in user type. type UserType string @@ -4297,12 +4164,6 @@ func (in *userTypePtr) ToUserTypePtrOutputWithContext(ctx context.Context) UserT return pulumi.ToOutputWithContext(ctx, in).(UserTypePtrOutput) } -func (in *userTypePtr) ToOutput(ctx context.Context) pulumix.Output[*UserType] { - return pulumix.Output[*UserType]{ - OutputState: in.ToUserTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*BackupRetentionSettingsRetentionUnitInput)(nil)).Elem(), BackupRetentionSettingsRetentionUnit("RETENTION_UNIT_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*BackupRetentionSettingsRetentionUnitPtrInput)(nil)).Elem(), BackupRetentionSettingsRetentionUnit("RETENTION_UNIT_UNSPECIFIED")) diff --git a/sdk/go/google/sqladmin/v1beta4/pulumiEnums.go b/sdk/go/google/sqladmin/v1beta4/pulumiEnums.go index 17a685136d..bf4142fb77 100644 --- a/sdk/go/google/sqladmin/v1beta4/pulumiEnums.go +++ b/sdk/go/google/sqladmin/v1beta4/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The unit that 'retained_backups' represents. @@ -179,12 +178,6 @@ func (in *backupRetentionSettingsRetentionUnitPtr) ToBackupRetentionSettingsRete return pulumi.ToOutputWithContext(ctx, in).(BackupRetentionSettingsRetentionUnitPtrOutput) } -func (in *backupRetentionSettingsRetentionUnitPtr) ToOutput(ctx context.Context) pulumix.Output[*BackupRetentionSettingsRetentionUnit] { - return pulumix.Output[*BackupRetentionSettingsRetentionUnit]{ - OutputState: in.ToBackupRetentionSettingsRetentionUnitPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the kind of backup, PHYSICAL or DEFAULT_SNAPSHOT. type BackupRunBackupKind string @@ -356,12 +349,6 @@ func (in *backupRunBackupKindPtr) ToBackupRunBackupKindPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(BackupRunBackupKindPtrOutput) } -func (in *backupRunBackupKindPtr) ToOutput(ctx context.Context) pulumix.Output[*BackupRunBackupKind] { - return pulumix.Output[*BackupRunBackupKind]{ - OutputState: in.ToBackupRunBackupKindPtrOutputWithContext(ctx).OutputState, - } -} - // The status of this run. type BackupRunStatus string @@ -559,12 +546,6 @@ func (in *backupRunTypePtr) ToBackupRunTypePtrOutputWithContext(ctx context.Cont return pulumi.ToOutputWithContext(ctx, in).(BackupRunTypePtrOutput) } -func (in *backupRunTypePtr) ToOutput(ctx context.Context) pulumix.Output[*BackupRunType] { - return pulumix.Output[*BackupRunType]{ - OutputState: in.ToBackupRunTypePtrOutputWithContext(ctx).OutputState, - } -} - // The backend type. `SECOND_GEN`: Cloud SQL database instance. `EXTERNAL`: A database server that is not managed by Google. This property is read-only; use the `tier` property in the `settings` object to determine the database type. type InstanceBackendType string @@ -739,12 +720,6 @@ func (in *instanceBackendTypePtr) ToInstanceBackendTypePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(InstanceBackendTypePtrOutput) } -func (in *instanceBackendTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceBackendType] { - return pulumix.Output[*InstanceBackendType]{ - OutputState: in.ToInstanceBackendTypePtrOutputWithContext(ctx).OutputState, - } -} - // The database engine type and version. The `databaseVersion` field cannot be changed after instance creation. type InstanceDatabaseVersion string @@ -1018,12 +993,6 @@ func (in *instanceDatabaseVersionPtr) ToInstanceDatabaseVersionPtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(InstanceDatabaseVersionPtrOutput) } -func (in *instanceDatabaseVersionPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceDatabaseVersion] { - return pulumix.Output[*InstanceDatabaseVersion]{ - OutputState: in.ToInstanceDatabaseVersionPtrOutputWithContext(ctx).OutputState, - } -} - // The instance type. type InstanceInstanceType string @@ -1198,12 +1167,6 @@ func (in *instanceInstanceTypePtr) ToInstanceInstanceTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(InstanceInstanceTypePtrOutput) } -func (in *instanceInstanceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceInstanceType] { - return pulumix.Output[*InstanceInstanceType]{ - OutputState: in.ToInstanceInstanceTypePtrOutputWithContext(ctx).OutputState, - } -} - // The SQL network architecture for the instance. type InstanceSqlNetworkArchitecture string @@ -1374,12 +1337,6 @@ func (in *instanceSqlNetworkArchitecturePtr) ToInstanceSqlNetworkArchitecturePtr return pulumi.ToOutputWithContext(ctx, in).(InstanceSqlNetworkArchitecturePtrOutput) } -func (in *instanceSqlNetworkArchitecturePtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceSqlNetworkArchitecture] { - return pulumix.Output[*InstanceSqlNetworkArchitecture]{ - OutputState: in.ToInstanceSqlNetworkArchitecturePtrOutputWithContext(ctx).OutputState, - } -} - // The current serving state of the Cloud SQL instance. type InstanceStateEnum string @@ -1566,12 +1523,6 @@ func (in *instanceStateEnumPtr) ToInstanceStateEnumPtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(InstanceStateEnumPtrOutput) } -func (in *instanceStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceStateEnum] { - return pulumix.Output[*InstanceStateEnum]{ - OutputState: in.ToInstanceStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - type InstanceSuspensionReasonItem string const ( @@ -1748,12 +1699,6 @@ func (in *instanceSuspensionReasonItemPtr) ToInstanceSuspensionReasonItemPtrOutp return pulumi.ToOutputWithContext(ctx, in).(InstanceSuspensionReasonItemPtrOutput) } -func (in *instanceSuspensionReasonItemPtr) ToOutput(ctx context.Context) pulumix.Output[*InstanceSuspensionReasonItem] { - return pulumix.Output[*InstanceSuspensionReasonItem]{ - OutputState: in.ToInstanceSuspensionReasonItemPtrOutputWithContext(ctx).OutputState, - } -} - // InstanceSuspensionReasonItemArrayInput is an input type that accepts InstanceSuspensionReasonItemArray and InstanceSuspensionReasonItemArrayOutput values. // You can construct a concrete instance of `InstanceSuspensionReasonItemArrayInput` via: // @@ -1973,12 +1918,6 @@ func (in *ipConfigurationSslModePtr) ToIpConfigurationSslModePtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(IpConfigurationSslModePtrOutput) } -func (in *ipConfigurationSslModePtr) ToOutput(ctx context.Context) pulumix.Output[*IpConfigurationSslMode] { - return pulumix.Output[*IpConfigurationSslMode]{ - OutputState: in.ToIpConfigurationSslModePtrOutputWithContext(ctx).OutputState, - } -} - // The type of this IP address. A `PRIMARY` address is a public address that can accept incoming connections. A `PRIVATE` address is a private address that can accept incoming connections. An `OUTGOING` address is the source address of connections originating from the instance, if supported. type IpMappingType string @@ -2156,12 +2095,6 @@ func (in *ipMappingTypePtr) ToIpMappingTypePtrOutputWithContext(ctx context.Cont return pulumi.ToOutputWithContext(ctx, in).(IpMappingTypePtrOutput) } -func (in *ipMappingTypePtr) ToOutput(ctx context.Context) pulumix.Output[*IpMappingType] { - return pulumix.Output[*IpMappingType]{ - OutputState: in.ToIpMappingTypePtrOutputWithContext(ctx).OutputState, - } -} - // Maintenance timing setting: `canary` (Earlier) or `stable` (Later). [Learn more](https://cloud.google.com/sql/docs/mysql/instance-settings#maintenance-timing-2ndgen). type MaintenanceWindowUpdateTrack string @@ -2336,12 +2269,6 @@ func (in *maintenanceWindowUpdateTrackPtr) ToMaintenanceWindowUpdateTrackPtrOutp return pulumi.ToOutputWithContext(ctx, in).(MaintenanceWindowUpdateTrackPtrOutput) } -func (in *maintenanceWindowUpdateTrackPtr) ToOutput(ctx context.Context) pulumix.Output[*MaintenanceWindowUpdateTrack] { - return pulumix.Output[*MaintenanceWindowUpdateTrack]{ - OutputState: in.ToMaintenanceWindowUpdateTrackPtrOutputWithContext(ctx).OutputState, - } -} - // The complexity of the password. type PasswordValidationPolicyComplexity string @@ -2510,12 +2437,6 @@ func (in *passwordValidationPolicyComplexityPtr) ToPasswordValidationPolicyCompl return pulumi.ToOutputWithContext(ctx, in).(PasswordValidationPolicyComplexityPtrOutput) } -func (in *passwordValidationPolicyComplexityPtr) ToOutput(ctx context.Context) pulumix.Output[*PasswordValidationPolicyComplexity] { - return pulumix.Output[*PasswordValidationPolicyComplexity]{ - OutputState: in.ToPasswordValidationPolicyComplexityPtrOutputWithContext(ctx).OutputState, - } -} - // The activation policy specifies when the instance is activated; it is applicable only when the instance state is RUNNABLE. Valid values: * `ALWAYS`: The instance is on, and remains so even in the absence of connection requests. * `NEVER`: The instance is off; it is not activated, even if a connection request arrives. type SettingsActivationPolicy string @@ -2690,12 +2611,6 @@ func (in *settingsActivationPolicyPtr) ToSettingsActivationPolicyPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(SettingsActivationPolicyPtrOutput) } -func (in *settingsActivationPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*SettingsActivationPolicy] { - return pulumix.Output[*SettingsActivationPolicy]{ - OutputState: in.ToSettingsActivationPolicyPtrOutputWithContext(ctx).OutputState, - } -} - // Availability type. Potential values: * `ZONAL`: The instance serves data from only one zone. Outages in that zone affect data accessibility. * `REGIONAL`: The instance can serve data from more than one zone in a region (it is highly available)./ For more information, see [Overview of the High Availability Configuration](https://cloud.google.com/sql/docs/mysql/high-availability). type SettingsAvailabilityType string @@ -2867,12 +2782,6 @@ func (in *settingsAvailabilityTypePtr) ToSettingsAvailabilityTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(SettingsAvailabilityTypePtrOutput) } -func (in *settingsAvailabilityTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SettingsAvailabilityType] { - return pulumix.Output[*SettingsAvailabilityType]{ - OutputState: in.ToSettingsAvailabilityTypePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies if connections must use Cloud SQL connectors. Option values include the following: `NOT_REQUIRED` (Cloud SQL instances can be connected without Cloud SQL Connectors) and `REQUIRED` (Only allow connections that use Cloud SQL Connectors) Note that using REQUIRED disables all existing authorized networks. If this field is not specified when creating a new instance, NOT_REQUIRED is used. If this field is not specified when patching or updating an existing instance, it is left unchanged in the instance. type SettingsConnectorEnforcement string @@ -3044,12 +2953,6 @@ func (in *settingsConnectorEnforcementPtr) ToSettingsConnectorEnforcementPtrOutp return pulumi.ToOutputWithContext(ctx, in).(SettingsConnectorEnforcementPtrOutput) } -func (in *settingsConnectorEnforcementPtr) ToOutput(ctx context.Context) pulumix.Output[*SettingsConnectorEnforcement] { - return pulumix.Output[*SettingsConnectorEnforcement]{ - OutputState: in.ToSettingsConnectorEnforcementPtrOutputWithContext(ctx).OutputState, - } -} - // The type of data disk: `PD_SSD` (default) or `PD_HDD`. Not used for First Generation instances. type SettingsDataDiskType string @@ -3224,12 +3127,6 @@ func (in *settingsDataDiskTypePtr) ToSettingsDataDiskTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(SettingsDataDiskTypePtrOutput) } -func (in *settingsDataDiskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SettingsDataDiskType] { - return pulumix.Output[*SettingsDataDiskType]{ - OutputState: in.ToSettingsDataDiskTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The edition of the instance. type SettingsEdition string @@ -3401,12 +3298,6 @@ func (in *settingsEditionPtr) ToSettingsEditionPtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(SettingsEditionPtrOutput) } -func (in *settingsEditionPtr) ToOutput(ctx context.Context) pulumix.Output[*SettingsEdition] { - return pulumix.Output[*SettingsEdition]{ - OutputState: in.ToSettingsEditionPtrOutputWithContext(ctx).OutputState, - } -} - // The pricing plan for this instance. This can be either `PER_USE` or `PACKAGE`. Only `PER_USE` is supported for Second Generation instances. type SettingsPricingPlan string @@ -3578,12 +3469,6 @@ func (in *settingsPricingPlanPtr) ToSettingsPricingPlanPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(SettingsPricingPlanPtrOutput) } -func (in *settingsPricingPlanPtr) ToOutput(ctx context.Context) pulumix.Output[*SettingsPricingPlan] { - return pulumix.Output[*SettingsPricingPlan]{ - OutputState: in.ToSettingsPricingPlanPtrOutputWithContext(ctx).OutputState, - } -} - // The type of replication this instance uses. This can be either `ASYNCHRONOUS` or `SYNCHRONOUS`. (Deprecated) This property was only applicable to First Generation instances. type SettingsReplicationType string @@ -3755,12 +3640,6 @@ func (in *settingsReplicationTypePtr) ToSettingsReplicationTypePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(SettingsReplicationTypePtrOutput) } -func (in *settingsReplicationTypePtr) ToOutput(ctx context.Context) pulumix.Output[*SettingsReplicationType] { - return pulumix.Output[*SettingsReplicationType]{ - OutputState: in.ToSettingsReplicationTypePtrOutputWithContext(ctx).OutputState, - } -} - // This field represents the state generated by the proactive database wellness job for OutOfDisk issues. * Writers: * the proactive database wellness job for OOD. * Readers: * the proactive database wellness job type SqlOutOfDiskReportSqlOutOfDiskState string @@ -3932,12 +3811,6 @@ func (in *sqlOutOfDiskReportSqlOutOfDiskStatePtr) ToSqlOutOfDiskReportSqlOutOfDi return pulumi.ToOutputWithContext(ctx, in).(SqlOutOfDiskReportSqlOutOfDiskStatePtrOutput) } -func (in *sqlOutOfDiskReportSqlOutOfDiskStatePtr) ToOutput(ctx context.Context) pulumix.Output[*SqlOutOfDiskReportSqlOutOfDiskState] { - return pulumix.Output[*SqlOutOfDiskReportSqlOutOfDiskState]{ - OutputState: in.ToSqlOutOfDiskReportSqlOutOfDiskStatePtrOutputWithContext(ctx).OutputState, - } -} - // Dual password status for the user. type UserDualPasswordType string @@ -4112,12 +3985,6 @@ func (in *userDualPasswordTypePtr) ToUserDualPasswordTypePtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(UserDualPasswordTypePtrOutput) } -func (in *userDualPasswordTypePtr) ToOutput(ctx context.Context) pulumix.Output[*UserDualPasswordType] { - return pulumix.Output[*UserDualPasswordType]{ - OutputState: in.ToUserDualPasswordTypePtrOutputWithContext(ctx).OutputState, - } -} - // The user type. It determines the method to authenticate the user during login. The default is the database's built-in user type. type UserType string @@ -4298,12 +4165,6 @@ func (in *userTypePtr) ToUserTypePtrOutputWithContext(ctx context.Context) UserT return pulumi.ToOutputWithContext(ctx, in).(UserTypePtrOutput) } -func (in *userTypePtr) ToOutput(ctx context.Context) pulumix.Output[*UserType] { - return pulumix.Output[*UserType]{ - OutputState: in.ToUserTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*BackupRetentionSettingsRetentionUnitInput)(nil)).Elem(), BackupRetentionSettingsRetentionUnit("RETENTION_UNIT_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*BackupRetentionSettingsRetentionUnitPtrInput)(nil)).Elem(), BackupRetentionSettingsRetentionUnit("RETENTION_UNIT_UNSPECIFIED")) diff --git a/sdk/go/google/storagetransfer/v1/pulumiEnums.go b/sdk/go/google/storagetransfer/v1/pulumiEnums.go index bfbb009a07..e379476024 100644 --- a/sdk/go/google/storagetransfer/v1/pulumiEnums.go +++ b/sdk/go/google/storagetransfer/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) type LoggingConfigLogActionStatesItem string @@ -181,12 +180,6 @@ func (in *loggingConfigLogActionStatesItemPtr) ToLoggingConfigLogActionStatesIte return pulumi.ToOutputWithContext(ctx, in).(LoggingConfigLogActionStatesItemPtrOutput) } -func (in *loggingConfigLogActionStatesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*LoggingConfigLogActionStatesItem] { - return pulumix.Output[*LoggingConfigLogActionStatesItem]{ - OutputState: in.ToLoggingConfigLogActionStatesItemPtrOutputWithContext(ctx).OutputState, - } -} - // LoggingConfigLogActionStatesItemArrayInput is an input type that accepts LoggingConfigLogActionStatesItemArray and LoggingConfigLogActionStatesItemArrayOutput values. // You can construct a concrete instance of `LoggingConfigLogActionStatesItemArrayInput` via: // @@ -405,12 +398,6 @@ func (in *loggingConfigLogActionsItemPtr) ToLoggingConfigLogActionsItemPtrOutput return pulumi.ToOutputWithContext(ctx, in).(LoggingConfigLogActionsItemPtrOutput) } -func (in *loggingConfigLogActionsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*LoggingConfigLogActionsItem] { - return pulumix.Output[*LoggingConfigLogActionsItem]{ - OutputState: in.ToLoggingConfigLogActionsItemPtrOutputWithContext(ctx).OutputState, - } -} - // LoggingConfigLogActionsItemArrayInput is an input type that accepts LoggingConfigLogActionsItemArray and LoggingConfigLogActionsItemArrayOutput values. // You can construct a concrete instance of `LoggingConfigLogActionsItemArrayInput` via: // @@ -627,12 +614,6 @@ func (in *metadataOptionsAclPtr) ToMetadataOptionsAclPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(MetadataOptionsAclPtrOutput) } -func (in *metadataOptionsAclPtr) ToOutput(ctx context.Context) pulumix.Output[*MetadataOptionsAcl] { - return pulumix.Output[*MetadataOptionsAcl]{ - OutputState: in.ToMetadataOptionsAclPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how each file's POSIX group ID (GID) attribute should be handled by the transfer. By default, GID is not preserved. Only applicable to transfers involving POSIX file systems, and ignored for other transfers. type MetadataOptionsGid string @@ -804,12 +785,6 @@ func (in *metadataOptionsGidPtr) ToMetadataOptionsGidPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(MetadataOptionsGidPtrOutput) } -func (in *metadataOptionsGidPtr) ToOutput(ctx context.Context) pulumix.Output[*MetadataOptionsGid] { - return pulumix.Output[*MetadataOptionsGid]{ - OutputState: in.ToMetadataOptionsGidPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how each object's Cloud KMS customer-managed encryption key (CMEK) is preserved for transfers between Google Cloud Storage buckets. If unspecified, the default behavior is the same as KMS_KEY_DESTINATION_BUCKET_DEFAULT. type MetadataOptionsKmsKey string @@ -981,12 +956,6 @@ func (in *metadataOptionsKmsKeyPtr) ToMetadataOptionsKmsKeyPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(MetadataOptionsKmsKeyPtrOutput) } -func (in *metadataOptionsKmsKeyPtr) ToOutput(ctx context.Context) pulumix.Output[*MetadataOptionsKmsKey] { - return pulumix.Output[*MetadataOptionsKmsKey]{ - OutputState: in.ToMetadataOptionsKmsKeyPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how each file's mode attribute should be handled by the transfer. By default, mode is not preserved. Only applicable to transfers involving POSIX file systems, and ignored for other transfers. type MetadataOptionsMode string @@ -1158,12 +1127,6 @@ func (in *metadataOptionsModePtr) ToMetadataOptionsModePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(MetadataOptionsModePtrOutput) } -func (in *metadataOptionsModePtr) ToOutput(ctx context.Context) pulumix.Output[*MetadataOptionsMode] { - return pulumix.Output[*MetadataOptionsMode]{ - OutputState: in.ToMetadataOptionsModePtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the storage class to set on objects being transferred to Google Cloud Storage buckets. If unspecified, the default behavior is the same as STORAGE_CLASS_DESTINATION_BUCKET_DEFAULT. type MetadataOptionsStorageClass string @@ -1347,12 +1310,6 @@ func (in *metadataOptionsStorageClassPtr) ToMetadataOptionsStorageClassPtrOutput return pulumi.ToOutputWithContext(ctx, in).(MetadataOptionsStorageClassPtrOutput) } -func (in *metadataOptionsStorageClassPtr) ToOutput(ctx context.Context) pulumix.Output[*MetadataOptionsStorageClass] { - return pulumix.Output[*MetadataOptionsStorageClass]{ - OutputState: in.ToMetadataOptionsStorageClassPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how symlinks should be handled by the transfer. By default, symlinks are not preserved. Only applicable to transfers involving POSIX file systems, and ignored for other transfers. type MetadataOptionsSymlink string @@ -1524,12 +1481,6 @@ func (in *metadataOptionsSymlinkPtr) ToMetadataOptionsSymlinkPtrOutputWithContex return pulumi.ToOutputWithContext(ctx, in).(MetadataOptionsSymlinkPtrOutput) } -func (in *metadataOptionsSymlinkPtr) ToOutput(ctx context.Context) pulumix.Output[*MetadataOptionsSymlink] { - return pulumix.Output[*MetadataOptionsSymlink]{ - OutputState: in.ToMetadataOptionsSymlinkPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how each object's temporary hold status should be preserved for transfers between Google Cloud Storage buckets. If unspecified, the default behavior is the same as TEMPORARY_HOLD_PRESERVE. type MetadataOptionsTemporaryHold string @@ -1701,12 +1652,6 @@ func (in *metadataOptionsTemporaryHoldPtr) ToMetadataOptionsTemporaryHoldPtrOutp return pulumi.ToOutputWithContext(ctx, in).(MetadataOptionsTemporaryHoldPtrOutput) } -func (in *metadataOptionsTemporaryHoldPtr) ToOutput(ctx context.Context) pulumix.Output[*MetadataOptionsTemporaryHold] { - return pulumix.Output[*MetadataOptionsTemporaryHold]{ - OutputState: in.ToMetadataOptionsTemporaryHoldPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how each object's `timeCreated` metadata is preserved for transfers between Google Cloud Storage buckets. If unspecified, the default behavior is the same as TIME_CREATED_SKIP. type MetadataOptionsTimeCreated string @@ -1878,12 +1823,6 @@ func (in *metadataOptionsTimeCreatedPtr) ToMetadataOptionsTimeCreatedPtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(MetadataOptionsTimeCreatedPtrOutput) } -func (in *metadataOptionsTimeCreatedPtr) ToOutput(ctx context.Context) pulumix.Output[*MetadataOptionsTimeCreated] { - return pulumix.Output[*MetadataOptionsTimeCreated]{ - OutputState: in.ToMetadataOptionsTimeCreatedPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies how each file's POSIX user ID (UID) attribute should be handled by the transfer. By default, UID is not preserved. Only applicable to transfers involving POSIX file systems, and ignored for other transfers. type MetadataOptionsUid string @@ -2055,12 +1994,6 @@ func (in *metadataOptionsUidPtr) ToMetadataOptionsUidPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(MetadataOptionsUidPtrOutput) } -func (in *metadataOptionsUidPtr) ToOutput(ctx context.Context) pulumix.Output[*MetadataOptionsUid] { - return pulumix.Output[*MetadataOptionsUid]{ - OutputState: in.ToMetadataOptionsUidPtrOutputWithContext(ctx).OutputState, - } -} - type NotificationConfigEventTypesItem string const ( @@ -2234,12 +2167,6 @@ func (in *notificationConfigEventTypesItemPtr) ToNotificationConfigEventTypesIte return pulumi.ToOutputWithContext(ctx, in).(NotificationConfigEventTypesItemPtrOutput) } -func (in *notificationConfigEventTypesItemPtr) ToOutput(ctx context.Context) pulumix.Output[*NotificationConfigEventTypesItem] { - return pulumix.Output[*NotificationConfigEventTypesItem]{ - OutputState: in.ToNotificationConfigEventTypesItemPtrOutputWithContext(ctx).OutputState, - } -} - // NotificationConfigEventTypesItemArrayInput is an input type that accepts NotificationConfigEventTypesItemArray and NotificationConfigEventTypesItemArrayOutput values. // You can construct a concrete instance of `NotificationConfigEventTypesItemArrayInput` via: // @@ -2456,12 +2383,6 @@ func (in *notificationConfigPayloadFormatPtr) ToNotificationConfigPayloadFormatP return pulumi.ToOutputWithContext(ctx, in).(NotificationConfigPayloadFormatPtrOutput) } -func (in *notificationConfigPayloadFormatPtr) ToOutput(ctx context.Context) pulumix.Output[*NotificationConfigPayloadFormat] { - return pulumix.Output[*NotificationConfigPayloadFormat]{ - OutputState: in.ToNotificationConfigPayloadFormatPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the authentication and authorization method used by the storage service. When not specified, Transfer Service will attempt to determine right auth method to use. type S3CompatibleMetadataAuthMethod string @@ -2633,12 +2554,6 @@ func (in *s3compatibleMetadataAuthMethodPtr) ToS3CompatibleMetadataAuthMethodPtr return pulumi.ToOutputWithContext(ctx, in).(S3CompatibleMetadataAuthMethodPtrOutput) } -func (in *s3compatibleMetadataAuthMethodPtr) ToOutput(ctx context.Context) pulumix.Output[*S3CompatibleMetadataAuthMethod] { - return pulumix.Output[*S3CompatibleMetadataAuthMethod]{ - OutputState: in.ToS3CompatibleMetadataAuthMethodPtrOutputWithContext(ctx).OutputState, - } -} - // The Listing API to use for discovering objects. When not specified, Transfer Service will attempt to determine the right API to use. type S3CompatibleMetadataListApi string @@ -2810,12 +2725,6 @@ func (in *s3compatibleMetadataListApiPtr) ToS3CompatibleMetadataListApiPtrOutput return pulumi.ToOutputWithContext(ctx, in).(S3CompatibleMetadataListApiPtrOutput) } -func (in *s3compatibleMetadataListApiPtr) ToOutput(ctx context.Context) pulumix.Output[*S3CompatibleMetadataListApi] { - return pulumix.Output[*S3CompatibleMetadataListApi]{ - OutputState: in.ToS3CompatibleMetadataListApiPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the network protocol of the agent. When not specified, the default value of NetworkProtocol NETWORK_PROTOCOL_HTTPS is used. type S3CompatibleMetadataProtocol string @@ -2987,12 +2896,6 @@ func (in *s3compatibleMetadataProtocolPtr) ToS3CompatibleMetadataProtocolPtrOutp return pulumi.ToOutputWithContext(ctx, in).(S3CompatibleMetadataProtocolPtrOutput) } -func (in *s3compatibleMetadataProtocolPtr) ToOutput(ctx context.Context) pulumix.Output[*S3CompatibleMetadataProtocol] { - return pulumix.Output[*S3CompatibleMetadataProtocol]{ - OutputState: in.ToS3CompatibleMetadataProtocolPtrOutputWithContext(ctx).OutputState, - } -} - // Specifies the API request model used to call the storage service. When not specified, the default value of RequestModel REQUEST_MODEL_VIRTUAL_HOSTED_STYLE is used. type S3CompatibleMetadataRequestModel string @@ -3164,12 +3067,6 @@ func (in *s3compatibleMetadataRequestModelPtr) ToS3CompatibleMetadataRequestMode return pulumi.ToOutputWithContext(ctx, in).(S3CompatibleMetadataRequestModelPtrOutput) } -func (in *s3compatibleMetadataRequestModelPtr) ToOutput(ctx context.Context) pulumix.Output[*S3CompatibleMetadataRequestModel] { - return pulumix.Output[*S3CompatibleMetadataRequestModel]{ - OutputState: in.ToS3CompatibleMetadataRequestModelPtrOutputWithContext(ctx).OutputState, - } -} - // Status of the job. This value MUST be specified for `CreateTransferJobRequests`. **Note:** The effect of the new job status takes place during a subsequent job run. For example, if you change the job status from ENABLED to DISABLED, and an operation spawned by the transfer is running, the status change would not affect the current operation. type TransferJobStatus string @@ -3344,12 +3241,6 @@ func (in *transferJobStatusPtr) ToTransferJobStatusPtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(TransferJobStatusPtrOutput) } -func (in *transferJobStatusPtr) ToOutput(ctx context.Context) pulumix.Output[*TransferJobStatus] { - return pulumix.Output[*TransferJobStatus]{ - OutputState: in.ToTransferJobStatusPtrOutputWithContext(ctx).OutputState, - } -} - // When to overwrite objects that already exist in the sink. If not set, overwrite behavior is determined by overwrite_objects_already_existing_in_sink. type TransferOptionsOverwriteWhen string @@ -3524,12 +3415,6 @@ func (in *transferOptionsOverwriteWhenPtr) ToTransferOptionsOverwriteWhenPtrOutp return pulumi.ToOutputWithContext(ctx, in).(TransferOptionsOverwriteWhenPtrOutput) } -func (in *transferOptionsOverwriteWhenPtr) ToOutput(ctx context.Context) pulumix.Output[*TransferOptionsOverwriteWhen] { - return pulumix.Output[*TransferOptionsOverwriteWhen]{ - OutputState: in.ToTransferOptionsOverwriteWhenPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*LoggingConfigLogActionStatesItemInput)(nil)).Elem(), LoggingConfigLogActionStatesItem("LOGGABLE_ACTION_STATE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*LoggingConfigLogActionStatesItemPtrInput)(nil)).Elem(), LoggingConfigLogActionStatesItem("LOGGABLE_ACTION_STATE_UNSPECIFIED")) diff --git a/sdk/go/google/testing/v1/pulumiEnums.go b/sdk/go/google/testing/v1/pulumiEnums.go index 914fdfa395..886b79f31f 100644 --- a/sdk/go/google/testing/v1/pulumiEnums.go +++ b/sdk/go/google/testing/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The option of whether running each test within its own invocation of instrumentation with Android Test Orchestrator or not. ** Orchestrator is only compatible with AndroidJUnitRunner version 1.1 or higher! ** Orchestrator offers the following benefits: - No shared state - Crashes are isolated - Logs are scoped per test See for more information about Android Test Orchestrator. If not set, the test will be run without the orchestrator. @@ -182,12 +181,6 @@ func (in *androidInstrumentationTestOrchestratorOptionPtr) ToAndroidInstrumentat return pulumi.ToOutputWithContext(ctx, in).(AndroidInstrumentationTestOrchestratorOptionPtrOutput) } -func (in *androidInstrumentationTestOrchestratorOptionPtr) ToOutput(ctx context.Context) pulumix.Output[*AndroidInstrumentationTestOrchestratorOption] { - return pulumix.Output[*AndroidInstrumentationTestOrchestratorOption]{ - OutputState: in.ToAndroidInstrumentationTestOrchestratorOptionPtrOutputWithContext(ctx).OutputState, - } -} - // The mode in which Robo should run. Most clients should allow the server to populate this field automatically. type AndroidRoboTestRoboMode string @@ -359,12 +352,6 @@ func (in *androidRoboTestRoboModePtr) ToAndroidRoboTestRoboModePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(AndroidRoboTestRoboModePtrOutput) } -func (in *androidRoboTestRoboModePtr) ToOutput(ctx context.Context) pulumix.Output[*AndroidRoboTestRoboMode] { - return pulumix.Output[*AndroidRoboTestRoboMode]{ - OutputState: in.ToAndroidRoboTestRoboModePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of action that Robo should perform on the specified element. type RoboDirectiveActionType string @@ -539,12 +526,6 @@ func (in *roboDirectiveActionTypePtr) ToRoboDirectiveActionTypePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(RoboDirectiveActionTypePtrOutput) } -func (in *roboDirectiveActionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*RoboDirectiveActionType] { - return pulumix.Output[*RoboDirectiveActionType]{ - OutputState: in.ToRoboDirectiveActionTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AndroidInstrumentationTestOrchestratorOptionInput)(nil)).Elem(), AndroidInstrumentationTestOrchestratorOption("ORCHESTRATOR_OPTION_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AndroidInstrumentationTestOrchestratorOptionPtrInput)(nil)).Elem(), AndroidInstrumentationTestOrchestratorOption("ORCHESTRATOR_OPTION_UNSPECIFIED")) diff --git a/sdk/go/google/toolresults/v1beta3/pulumiEnums.go b/sdk/go/google/toolresults/v1beta3/pulumiEnums.go index 49bb02fa31..9721c77cf3 100644 --- a/sdk/go/google/toolresults/v1beta3/pulumiEnums.go +++ b/sdk/go/google/toolresults/v1beta3/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) type BasicPerfSampleSeriesPerfMetricType string @@ -182,12 +181,6 @@ func (in *basicPerfSampleSeriesPerfMetricTypePtr) ToBasicPerfSampleSeriesPerfMet return pulumi.ToOutputWithContext(ctx, in).(BasicPerfSampleSeriesPerfMetricTypePtrOutput) } -func (in *basicPerfSampleSeriesPerfMetricTypePtr) ToOutput(ctx context.Context) pulumix.Output[*BasicPerfSampleSeriesPerfMetricType] { - return pulumix.Output[*BasicPerfSampleSeriesPerfMetricType]{ - OutputState: in.ToBasicPerfSampleSeriesPerfMetricTypePtrOutputWithContext(ctx).OutputState, - } -} - type BasicPerfSampleSeriesPerfUnit string const ( @@ -361,12 +354,6 @@ func (in *basicPerfSampleSeriesPerfUnitPtr) ToBasicPerfSampleSeriesPerfUnitPtrOu return pulumi.ToOutputWithContext(ctx, in).(BasicPerfSampleSeriesPerfUnitPtrOutput) } -func (in *basicPerfSampleSeriesPerfUnitPtr) ToOutput(ctx context.Context) pulumix.Output[*BasicPerfSampleSeriesPerfUnit] { - return pulumix.Output[*BasicPerfSampleSeriesPerfUnit]{ - OutputState: in.ToBasicPerfSampleSeriesPerfUnitPtrOutputWithContext(ctx).OutputState, - } -} - type BasicPerfSampleSeriesSampleSeriesLabel string const ( @@ -558,12 +545,6 @@ func (in *basicPerfSampleSeriesSampleSeriesLabelPtr) ToBasicPerfSampleSeriesSamp return pulumi.ToOutputWithContext(ctx, in).(BasicPerfSampleSeriesSampleSeriesLabelPtrOutput) } -func (in *basicPerfSampleSeriesSampleSeriesLabelPtr) ToOutput(ctx context.Context) pulumix.Output[*BasicPerfSampleSeriesSampleSeriesLabel] { - return pulumix.Output[*BasicPerfSampleSeriesSampleSeriesLabel]{ - OutputState: in.ToBasicPerfSampleSeriesSampleSeriesLabelPtrOutputWithContext(ctx).OutputState, - } -} - // The initial state is IN_PROGRESS. The only legal state transitions is from IN_PROGRESS to COMPLETE. A PRECONDITION_FAILED will be returned if an invalid transition is requested. The state can only be set to COMPLETE once. A FAILED_PRECONDITION will be returned if the state is set to COMPLETE multiple times. If the state is set to COMPLETE, all the in-progress steps within the execution will be set as COMPLETE. If the outcome of the step is not set, the outcome will be set to INCONCLUSIVE. - In response always set - In create/update request: optional type ExecutionStateEnum string @@ -738,12 +719,6 @@ func (in *executionStateEnumPtr) ToExecutionStateEnumPtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(ExecutionStateEnumPtrOutput) } -func (in *executionStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*ExecutionStateEnum] { - return pulumix.Output[*ExecutionStateEnum]{ - OutputState: in.ToExecutionStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // The platform of the test history. - In response: always set. Returns the platform of the last execution if unknown. type HistoryTestPlatform string @@ -912,12 +887,6 @@ func (in *historyTestPlatformPtr) ToHistoryTestPlatformPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(HistoryTestPlatformPtrOutput) } -func (in *historyTestPlatformPtr) ToOutput(ctx context.Context) pulumix.Output[*HistoryTestPlatform] { - return pulumix.Output[*HistoryTestPlatform]{ - OutputState: in.ToHistoryTestPlatformPtrOutputWithContext(ctx).OutputState, - } -} - type IndividualOutcomeOutcomeSummary string const ( @@ -1097,12 +1066,6 @@ func (in *individualOutcomeOutcomeSummaryPtr) ToIndividualOutcomeOutcomeSummaryP return pulumi.ToOutputWithContext(ctx, in).(IndividualOutcomeOutcomeSummaryPtrOutput) } -func (in *individualOutcomeOutcomeSummaryPtr) ToOutput(ctx context.Context) pulumix.Output[*IndividualOutcomeOutcomeSummary] { - return pulumix.Output[*IndividualOutcomeOutcomeSummary]{ - OutputState: in.ToIndividualOutcomeOutcomeSummaryPtrOutputWithContext(ctx).OutputState, - } -} - // The simplest way to interpret a result. Required type OutcomeSummary string @@ -1283,12 +1246,6 @@ func (in *outcomeSummaryPtr) ToOutcomeSummaryPtrOutputWithContext(ctx context.Co return pulumi.ToOutputWithContext(ctx, in).(OutcomeSummaryPtrOutput) } -func (in *outcomeSummaryPtr) ToOutput(ctx context.Context) pulumix.Output[*OutcomeSummary] { - return pulumix.Output[*OutcomeSummary]{ - OutputState: in.ToOutcomeSummaryPtrOutputWithContext(ctx).OutputState, - } -} - // Rollup test status of multiple steps that were run with the same configuration as a group. type PrimaryStepRollUp string @@ -1469,12 +1426,6 @@ func (in *primaryStepRollUpPtr) ToPrimaryStepRollUpPtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(PrimaryStepRollUpPtrOutput) } -func (in *primaryStepRollUpPtr) ToOutput(ctx context.Context) pulumix.Output[*PrimaryStepRollUp] { - return pulumix.Output[*PrimaryStepRollUp]{ - OutputState: in.ToPrimaryStepRollUpPtrOutputWithContext(ctx).OutputState, - } -} - // The initial state is IN_PROGRESS. The only legal state transitions are * IN_PROGRESS -> COMPLETE A PRECONDITION_FAILED will be returned if an invalid transition is requested. It is valid to create Step with a state set to COMPLETE. The state can only be set to COMPLETE once. A PRECONDITION_FAILED will be returned if the state is set to COMPLETE multiple times. - In response: always set - In create/update request: optional type StepStateEnum string @@ -1649,12 +1600,6 @@ func (in *stepStateEnumPtr) ToStepStateEnumPtrOutputWithContext(ctx context.Cont return pulumi.ToOutputWithContext(ctx, in).(StepStateEnumPtrOutput) } -func (in *stepStateEnumPtr) ToOutput(ctx context.Context) pulumix.Output[*StepStateEnum] { - return pulumix.Output[*StepStateEnum]{ - OutputState: in.ToStepStateEnumPtrOutputWithContext(ctx).OutputState, - } -} - // Category of issue. Required. type TestIssueCategory string @@ -1826,12 +1771,6 @@ func (in *testIssueCategoryPtr) ToTestIssueCategoryPtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(TestIssueCategoryPtrOutput) } -func (in *testIssueCategoryPtr) ToOutput(ctx context.Context) pulumix.Output[*TestIssueCategory] { - return pulumix.Output[*TestIssueCategory]{ - OutputState: in.ToTestIssueCategoryPtrOutputWithContext(ctx).OutputState, - } -} - // Severity of issue. Required. type TestIssueSeverity string @@ -2009,12 +1948,6 @@ func (in *testIssueSeverityPtr) ToTestIssueSeverityPtrOutputWithContext(ctx cont return pulumi.ToOutputWithContext(ctx, in).(TestIssueSeverityPtrOutput) } -func (in *testIssueSeverityPtr) ToOutput(ctx context.Context) pulumix.Output[*TestIssueSeverity] { - return pulumix.Output[*TestIssueSeverity]{ - OutputState: in.ToTestIssueSeverityPtrOutputWithContext(ctx).OutputState, - } -} - // Type of issue. Required. type TestIssueType string @@ -2276,12 +2209,6 @@ func (in *testIssueTypePtr) ToTestIssueTypePtrOutputWithContext(ctx context.Cont return pulumi.ToOutputWithContext(ctx, in).(TestIssueTypePtrOutput) } -func (in *testIssueTypePtr) ToOutput(ctx context.Context) pulumix.Output[*TestIssueType] { - return pulumix.Output[*TestIssueType]{ - OutputState: in.ToTestIssueTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*BasicPerfSampleSeriesPerfMetricTypeInput)(nil)).Elem(), BasicPerfSampleSeriesPerfMetricType("perfMetricTypeUnspecified")) pulumi.RegisterInputType(reflect.TypeOf((*BasicPerfSampleSeriesPerfMetricTypePtrInput)(nil)).Elem(), BasicPerfSampleSeriesPerfMetricType("perfMetricTypeUnspecified")) diff --git a/sdk/go/google/tpu/v1/pulumiEnums.go b/sdk/go/google/tpu/v1/pulumiEnums.go index ffac4b8e7f..87b5a8be98 100644 --- a/sdk/go/google/tpu/v1/pulumiEnums.go +++ b/sdk/go/google/tpu/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The health status of the TPU node. @@ -191,12 +190,6 @@ func (in *nodeHealthPtr) ToNodeHealthPtrOutputWithContext(ctx context.Context) N return pulumi.ToOutputWithContext(ctx, in).(NodeHealthPtrOutput) } -func (in *nodeHealthPtr) ToOutput(ctx context.Context) pulumix.Output[*NodeHealth] { - return pulumix.Output[*NodeHealth]{ - OutputState: in.ToNodeHealthPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*NodeHealthInput)(nil)).Elem(), NodeHealth("HEALTH_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*NodeHealthPtrInput)(nil)).Elem(), NodeHealth("HEALTH_UNSPECIFIED")) diff --git a/sdk/go/google/tpu/v1alpha1/pulumiEnums.go b/sdk/go/google/tpu/v1alpha1/pulumiEnums.go index b1338f40f6..01fab226ff 100644 --- a/sdk/go/google/tpu/v1alpha1/pulumiEnums.go +++ b/sdk/go/google/tpu/v1alpha1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The health status of the TPU node. @@ -191,12 +190,6 @@ func (in *nodeHealthPtr) ToNodeHealthPtrOutputWithContext(ctx context.Context) N return pulumi.ToOutputWithContext(ctx, in).(NodeHealthPtrOutput) } -func (in *nodeHealthPtr) ToOutput(ctx context.Context) pulumix.Output[*NodeHealth] { - return pulumix.Output[*NodeHealth]{ - OutputState: in.ToNodeHealthPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*NodeHealthInput)(nil)).Elem(), NodeHealth("HEALTH_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*NodeHealthPtrInput)(nil)).Elem(), NodeHealth("HEALTH_UNSPECIFIED")) diff --git a/sdk/go/google/tpu/v2/pulumiEnums.go b/sdk/go/google/tpu/v2/pulumiEnums.go index 9fabb852df..a77336ebdc 100644 --- a/sdk/go/google/tpu/v2/pulumiEnums.go +++ b/sdk/go/google/tpu/v2/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Required. Type of TPU. @@ -185,12 +184,6 @@ func (in *acceleratorConfigTypePtr) ToAcceleratorConfigTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AcceleratorConfigTypePtrOutput) } -func (in *acceleratorConfigTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AcceleratorConfigType] { - return pulumix.Output[*AcceleratorConfigType]{ - OutputState: in.ToAcceleratorConfigTypePtrOutputWithContext(ctx).OutputState, - } -} - // The mode in which to attach this disk. If not specified, the default is READ_WRITE mode. Only applicable to data_disks. type AttachedDiskMode string @@ -362,12 +355,6 @@ func (in *attachedDiskModePtr) ToAttachedDiskModePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(AttachedDiskModePtrOutput) } -func (in *attachedDiskModePtr) ToOutput(ctx context.Context) pulumix.Output[*AttachedDiskMode] { - return pulumix.Output[*AttachedDiskMode]{ - OutputState: in.ToAttachedDiskModePtrOutputWithContext(ctx).OutputState, - } -} - // The health status of the TPU node. type NodeHealth string @@ -545,12 +532,6 @@ func (in *nodeHealthPtr) ToNodeHealthPtrOutputWithContext(ctx context.Context) N return pulumi.ToOutputWithContext(ctx, in).(NodeHealthPtrOutput) } -func (in *nodeHealthPtr) ToOutput(ctx context.Context) pulumix.Output[*NodeHealth] { - return pulumix.Output[*NodeHealth]{ - OutputState: in.ToNodeHealthPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AcceleratorConfigTypeInput)(nil)).Elem(), AcceleratorConfigType("TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AcceleratorConfigTypePtrInput)(nil)).Elem(), AcceleratorConfigType("TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/tpu/v2alpha1/pulumiEnums.go b/sdk/go/google/tpu/v2alpha1/pulumiEnums.go index d512257414..ddd3ff9c8f 100644 --- a/sdk/go/google/tpu/v2alpha1/pulumiEnums.go +++ b/sdk/go/google/tpu/v2alpha1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Required. Type of TPU. @@ -185,12 +184,6 @@ func (in *acceleratorConfigTypePtr) ToAcceleratorConfigTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AcceleratorConfigTypePtrOutput) } -func (in *acceleratorConfigTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AcceleratorConfigType] { - return pulumix.Output[*AcceleratorConfigType]{ - OutputState: in.ToAcceleratorConfigTypePtrOutputWithContext(ctx).OutputState, - } -} - // The mode in which to attach this disk. If not specified, the default is READ_WRITE mode. Only applicable to data_disks. type AttachedDiskMode string @@ -362,12 +355,6 @@ func (in *attachedDiskModePtr) ToAttachedDiskModePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(AttachedDiskModePtrOutput) } -func (in *attachedDiskModePtr) ToOutput(ctx context.Context) pulumix.Output[*AttachedDiskMode] { - return pulumix.Output[*AttachedDiskMode]{ - OutputState: in.ToAttachedDiskModePtrOutputWithContext(ctx).OutputState, - } -} - // The health status of the TPU node. type NodeHealth string @@ -545,12 +532,6 @@ func (in *nodeHealthPtr) ToNodeHealthPtrOutputWithContext(ctx context.Context) N return pulumi.ToOutputWithContext(ctx, in).(NodeHealthPtrOutput) } -func (in *nodeHealthPtr) ToOutput(ctx context.Context) pulumix.Output[*NodeHealth] { - return pulumix.Output[*NodeHealth]{ - OutputState: in.ToNodeHealthPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AcceleratorConfigTypeInput)(nil)).Elem(), AcceleratorConfigType("TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AcceleratorConfigTypePtrInput)(nil)).Elem(), AcceleratorConfigType("TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/transcoder/v1/pulumiEnums.go b/sdk/go/google/transcoder/v1/pulumiEnums.go index 6c6b20ea87..47b68938d0 100644 --- a/sdk/go/google/transcoder/v1/pulumiEnums.go +++ b/sdk/go/google/transcoder/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Required. Type of fade animation: `FADE_IN` or `FADE_OUT`. @@ -182,12 +181,6 @@ func (in *animationFadeFadeTypePtr) ToAnimationFadeFadeTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AnimationFadeFadeTypePtrOutput) } -func (in *animationFadeFadeTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AnimationFadeFadeType] { - return pulumix.Output[*AnimationFadeFadeType]{ - OutputState: in.ToAnimationFadeFadeTypePtrOutputWithContext(ctx).OutputState, - } -} - // The segment reference scheme for a `DASH` manifest. The default is `SEGMENT_LIST`. type DashConfigSegmentReferenceScheme string @@ -359,12 +352,6 @@ func (in *dashConfigSegmentReferenceSchemePtr) ToDashConfigSegmentReferenceSchem return pulumi.ToOutputWithContext(ctx, in).(DashConfigSegmentReferenceSchemePtrOutput) } -func (in *dashConfigSegmentReferenceSchemePtr) ToOutput(ctx context.Context) pulumix.Output[*DashConfigSegmentReferenceScheme] { - return pulumix.Output[*DashConfigSegmentReferenceScheme]{ - OutputState: in.ToDashConfigSegmentReferenceSchemePtrOutputWithContext(ctx).OutputState, - } -} - // The processing mode of the job. The default is `PROCESSING_MODE_INTERACTIVE`. type JobMode string @@ -536,12 +523,6 @@ func (in *jobModePtr) ToJobModePtrOutputWithContext(ctx context.Context) JobMode return pulumi.ToOutputWithContext(ctx, in).(JobModePtrOutput) } -func (in *jobModePtr) ToOutput(ctx context.Context) pulumix.Output[*JobMode] { - return pulumix.Output[*JobMode]{ - OutputState: in.ToJobModePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. The optimization strategy of the job. The default is `AUTODETECT`. type JobOptimization string @@ -713,12 +694,6 @@ func (in *jobOptimizationPtr) ToJobOptimizationPtrOutputWithContext(ctx context. return pulumi.ToOutputWithContext(ctx, in).(JobOptimizationPtrOutput) } -func (in *jobOptimizationPtr) ToOutput(ctx context.Context) pulumix.Output[*JobOptimization] { - return pulumix.Output[*JobOptimization]{ - OutputState: in.ToJobOptimizationPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Type of the manifest. type ManifestType string @@ -890,12 +865,6 @@ func (in *manifestTypePtr) ToManifestTypePtrOutputWithContext(ctx context.Contex return pulumi.ToOutputWithContext(ctx, in).(ManifestTypePtrOutput) } -func (in *manifestTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ManifestType] { - return pulumix.Output[*ManifestType]{ - OutputState: in.ToManifestTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AnimationFadeFadeTypeInput)(nil)).Elem(), AnimationFadeFadeType("FADE_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AnimationFadeFadeTypePtrInput)(nil)).Elem(), AnimationFadeFadeType("FADE_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/vmmigration/v1/pulumiEnums.go b/sdk/go/google/vmmigration/v1/pulumiEnums.go index 4f8885d243..3806d45ae1 100644 --- a/sdk/go/google/vmmigration/v1/pulumiEnums.go +++ b/sdk/go/google/vmmigration/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Optional. The type of disk provisioning to use for the VM. @@ -185,12 +184,6 @@ func (in *bootDiskDefaultsDiskTypePtr) ToBootDiskDefaultsDiskTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(BootDiskDefaultsDiskTypePtrOutput) } -func (in *bootDiskDefaultsDiskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*BootDiskDefaultsDiskType] { - return pulumix.Output[*BootDiskDefaultsDiskType]{ - OutputState: in.ToBootDiskDefaultsDiskTypePtrOutputWithContext(ctx).OutputState, - } -} - // The disk type to use in the VM. type ComputeEngineTargetDefaultsDiskType string @@ -365,12 +358,6 @@ func (in *computeEngineTargetDefaultsDiskTypePtr) ToComputeEngineTargetDefaultsD return pulumi.ToOutputWithContext(ctx, in).(ComputeEngineTargetDefaultsDiskTypePtrOutput) } -func (in *computeEngineTargetDefaultsDiskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ComputeEngineTargetDefaultsDiskType] { - return pulumix.Output[*ComputeEngineTargetDefaultsDiskType]{ - OutputState: in.ToComputeEngineTargetDefaultsDiskTypePtrOutputWithContext(ctx).OutputState, - } -} - // The license type to use in OS adaptation. type ComputeEngineTargetDefaultsLicenseType string @@ -542,12 +529,6 @@ func (in *computeEngineTargetDefaultsLicenseTypePtr) ToComputeEngineTargetDefaul return pulumi.ToOutputWithContext(ctx, in).(ComputeEngineTargetDefaultsLicenseTypePtrOutput) } -func (in *computeEngineTargetDefaultsLicenseTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ComputeEngineTargetDefaultsLicenseType] { - return pulumix.Output[*ComputeEngineTargetDefaultsLicenseType]{ - OutputState: in.ToComputeEngineTargetDefaultsLicenseTypePtrOutputWithContext(ctx).OutputState, - } -} - // How the instance should behave when the host machine undergoes maintenance that may temporarily impact instance performance. type ComputeSchedulingOnHostMaintenance string @@ -719,12 +700,6 @@ func (in *computeSchedulingOnHostMaintenancePtr) ToComputeSchedulingOnHostMainte return pulumi.ToOutputWithContext(ctx, in).(ComputeSchedulingOnHostMaintenancePtrOutput) } -func (in *computeSchedulingOnHostMaintenancePtr) ToOutput(ctx context.Context) pulumix.Output[*ComputeSchedulingOnHostMaintenance] { - return pulumix.Output[*ComputeSchedulingOnHostMaintenance]{ - OutputState: in.ToComputeSchedulingOnHostMaintenancePtrOutputWithContext(ctx).OutputState, - } -} - // Whether the Instance should be automatically restarted whenever it is terminated by Compute Engine (not terminated by user). This configuration is identical to `automaticRestart` field in Compute Engine create instance under scheduling. It was changed to an enum (instead of a boolean) to match the default value in Compute Engine which is automatic restart. type ComputeSchedulingRestartType string @@ -896,12 +871,6 @@ func (in *computeSchedulingRestartTypePtr) ToComputeSchedulingRestartTypePtrOutp return pulumi.ToOutputWithContext(ctx, in).(ComputeSchedulingRestartTypePtrOutput) } -func (in *computeSchedulingRestartTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ComputeSchedulingRestartType] { - return pulumix.Output[*ComputeSchedulingRestartType]{ - OutputState: in.ToComputeSchedulingRestartTypePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The target type of this group. type GroupMigrationTargetType string @@ -1073,12 +1042,6 @@ func (in *groupMigrationTargetTypePtr) ToGroupMigrationTargetTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(GroupMigrationTargetTypePtrOutput) } -func (in *groupMigrationTargetTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GroupMigrationTargetType] { - return pulumix.Output[*GroupMigrationTargetType]{ - OutputState: in.ToGroupMigrationTargetTypePtrOutputWithContext(ctx).OutputState, - } -} - // The disk type to use. type PersistentDiskDefaultsDiskType string @@ -1253,12 +1216,6 @@ func (in *persistentDiskDefaultsDiskTypePtr) ToPersistentDiskDefaultsDiskTypePtr return pulumi.ToOutputWithContext(ctx, in).(PersistentDiskDefaultsDiskTypePtrOutput) } -func (in *persistentDiskDefaultsDiskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*PersistentDiskDefaultsDiskType] { - return pulumix.Output[*PersistentDiskDefaultsDiskType]{ - OutputState: in.ToPersistentDiskDefaultsDiskTypePtrOutputWithContext(ctx).OutputState, - } -} - // The operator to use for the node resources specified in the `values` parameter. type SchedulingNodeAffinityOperator string @@ -1430,12 +1387,6 @@ func (in *schedulingNodeAffinityOperatorPtr) ToSchedulingNodeAffinityOperatorPtr return pulumi.ToOutputWithContext(ctx, in).(SchedulingNodeAffinityOperatorPtrOutput) } -func (in *schedulingNodeAffinityOperatorPtr) ToOutput(ctx context.Context) pulumix.Output[*SchedulingNodeAffinityOperator] { - return pulumix.Output[*SchedulingNodeAffinityOperator]{ - OutputState: in.ToSchedulingNodeAffinityOperatorPtrOutputWithContext(ctx).OutputState, - } -} - // Time frame of the report. type UtilizationReportTimeFrame string @@ -1610,12 +1561,6 @@ func (in *utilizationReportTimeFramePtr) ToUtilizationReportTimeFramePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(UtilizationReportTimeFramePtrOutput) } -func (in *utilizationReportTimeFramePtr) ToOutput(ctx context.Context) pulumix.Output[*UtilizationReportTimeFrame] { - return pulumix.Output[*UtilizationReportTimeFrame]{ - OutputState: in.ToUtilizationReportTimeFramePtrOutputWithContext(ctx).OutputState, - } -} - // The power state of the VM at the moment list was taken. type VmwareVmDetailsPowerState string @@ -1790,12 +1735,6 @@ func (in *vmwareVmDetailsPowerStatePtr) ToVmwareVmDetailsPowerStatePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(VmwareVmDetailsPowerStatePtrOutput) } -func (in *vmwareVmDetailsPowerStatePtr) ToOutput(ctx context.Context) pulumix.Output[*VmwareVmDetailsPowerState] { - return pulumix.Output[*VmwareVmDetailsPowerState]{ - OutputState: in.ToVmwareVmDetailsPowerStatePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*BootDiskDefaultsDiskTypeInput)(nil)).Elem(), BootDiskDefaultsDiskType("COMPUTE_ENGINE_DISK_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*BootDiskDefaultsDiskTypePtrInput)(nil)).Elem(), BootDiskDefaultsDiskType("COMPUTE_ENGINE_DISK_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/vmmigration/v1alpha1/pulumiEnums.go b/sdk/go/google/vmmigration/v1alpha1/pulumiEnums.go index 76e1c12656..2fc34f9f66 100644 --- a/sdk/go/google/vmmigration/v1alpha1/pulumiEnums.go +++ b/sdk/go/google/vmmigration/v1alpha1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Optional. The type of disk provisioning to use for the VM. @@ -185,12 +184,6 @@ func (in *bootDiskDefaultsDiskTypePtr) ToBootDiskDefaultsDiskTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(BootDiskDefaultsDiskTypePtrOutput) } -func (in *bootDiskDefaultsDiskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*BootDiskDefaultsDiskType] { - return pulumix.Output[*BootDiskDefaultsDiskType]{ - OutputState: in.ToBootDiskDefaultsDiskTypePtrOutputWithContext(ctx).OutputState, - } -} - // The disk type to use in the VM. type ComputeEngineTargetDefaultsDiskType string @@ -365,12 +358,6 @@ func (in *computeEngineTargetDefaultsDiskTypePtr) ToComputeEngineTargetDefaultsD return pulumi.ToOutputWithContext(ctx, in).(ComputeEngineTargetDefaultsDiskTypePtrOutput) } -func (in *computeEngineTargetDefaultsDiskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ComputeEngineTargetDefaultsDiskType] { - return pulumix.Output[*ComputeEngineTargetDefaultsDiskType]{ - OutputState: in.ToComputeEngineTargetDefaultsDiskTypePtrOutputWithContext(ctx).OutputState, - } -} - // The license type to use in OS adaptation. type ComputeEngineTargetDefaultsLicenseType string @@ -542,12 +529,6 @@ func (in *computeEngineTargetDefaultsLicenseTypePtr) ToComputeEngineTargetDefaul return pulumi.ToOutputWithContext(ctx, in).(ComputeEngineTargetDefaultsLicenseTypePtrOutput) } -func (in *computeEngineTargetDefaultsLicenseTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ComputeEngineTargetDefaultsLicenseType] { - return pulumix.Output[*ComputeEngineTargetDefaultsLicenseType]{ - OutputState: in.ToComputeEngineTargetDefaultsLicenseTypePtrOutputWithContext(ctx).OutputState, - } -} - // How the instance should behave when the host machine undergoes maintenance that may temporarily impact instance performance. type ComputeSchedulingOnHostMaintenance string @@ -719,12 +700,6 @@ func (in *computeSchedulingOnHostMaintenancePtr) ToComputeSchedulingOnHostMainte return pulumi.ToOutputWithContext(ctx, in).(ComputeSchedulingOnHostMaintenancePtrOutput) } -func (in *computeSchedulingOnHostMaintenancePtr) ToOutput(ctx context.Context) pulumix.Output[*ComputeSchedulingOnHostMaintenance] { - return pulumix.Output[*ComputeSchedulingOnHostMaintenance]{ - OutputState: in.ToComputeSchedulingOnHostMaintenancePtrOutputWithContext(ctx).OutputState, - } -} - // Whether the Instance should be automatically restarted whenever it is terminated by Compute Engine (not terminated by user). This configuration is identical to `automaticRestart` field in Compute Engine create instance under scheduling. It was changed to an enum (instead of a boolean) to match the default value in Compute Engine which is automatic restart. type ComputeSchedulingRestartType string @@ -896,12 +871,6 @@ func (in *computeSchedulingRestartTypePtr) ToComputeSchedulingRestartTypePtrOutp return pulumi.ToOutputWithContext(ctx, in).(ComputeSchedulingRestartTypePtrOutput) } -func (in *computeSchedulingRestartTypePtr) ToOutput(ctx context.Context) pulumix.Output[*ComputeSchedulingRestartType] { - return pulumix.Output[*ComputeSchedulingRestartType]{ - OutputState: in.ToComputeSchedulingRestartTypePtrOutputWithContext(ctx).OutputState, - } -} - // Immutable. The target type of this group. type GroupMigrationTargetType string @@ -1073,12 +1042,6 @@ func (in *groupMigrationTargetTypePtr) ToGroupMigrationTargetTypePtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(GroupMigrationTargetTypePtrOutput) } -func (in *groupMigrationTargetTypePtr) ToOutput(ctx context.Context) pulumix.Output[*GroupMigrationTargetType] { - return pulumix.Output[*GroupMigrationTargetType]{ - OutputState: in.ToGroupMigrationTargetTypePtrOutputWithContext(ctx).OutputState, - } -} - // The disk type to use. type PersistentDiskDefaultsDiskType string @@ -1253,12 +1216,6 @@ func (in *persistentDiskDefaultsDiskTypePtr) ToPersistentDiskDefaultsDiskTypePtr return pulumi.ToOutputWithContext(ctx, in).(PersistentDiskDefaultsDiskTypePtrOutput) } -func (in *persistentDiskDefaultsDiskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*PersistentDiskDefaultsDiskType] { - return pulumix.Output[*PersistentDiskDefaultsDiskType]{ - OutputState: in.ToPersistentDiskDefaultsDiskTypePtrOutputWithContext(ctx).OutputState, - } -} - // The operator to use for the node resources specified in the `values` parameter. type SchedulingNodeAffinityOperator string @@ -1430,12 +1387,6 @@ func (in *schedulingNodeAffinityOperatorPtr) ToSchedulingNodeAffinityOperatorPtr return pulumi.ToOutputWithContext(ctx, in).(SchedulingNodeAffinityOperatorPtrOutput) } -func (in *schedulingNodeAffinityOperatorPtr) ToOutput(ctx context.Context) pulumix.Output[*SchedulingNodeAffinityOperator] { - return pulumix.Output[*SchedulingNodeAffinityOperator]{ - OutputState: in.ToSchedulingNodeAffinityOperatorPtrOutputWithContext(ctx).OutputState, - } -} - // The disk type to use in the VM. type TargetVMDetailsDiskType string @@ -1610,12 +1561,6 @@ func (in *targetVMDetailsDiskTypePtr) ToTargetVMDetailsDiskTypePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(TargetVMDetailsDiskTypePtrOutput) } -func (in *targetVMDetailsDiskTypePtr) ToOutput(ctx context.Context) pulumix.Output[*TargetVMDetailsDiskType] { - return pulumix.Output[*TargetVMDetailsDiskType]{ - OutputState: in.ToTargetVMDetailsDiskTypePtrOutputWithContext(ctx).OutputState, - } -} - // The license type to use in OS adaptation. type TargetVMDetailsLicenseType string @@ -1787,12 +1732,6 @@ func (in *targetVMDetailsLicenseTypePtr) ToTargetVMDetailsLicenseTypePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(TargetVMDetailsLicenseTypePtrOutput) } -func (in *targetVMDetailsLicenseTypePtr) ToOutput(ctx context.Context) pulumix.Output[*TargetVMDetailsLicenseType] { - return pulumix.Output[*TargetVMDetailsLicenseType]{ - OutputState: in.ToTargetVMDetailsLicenseTypePtrOutputWithContext(ctx).OutputState, - } -} - // Time frame of the report. type UtilizationReportTimeFrame string @@ -1967,12 +1906,6 @@ func (in *utilizationReportTimeFramePtr) ToUtilizationReportTimeFramePtrOutputWi return pulumi.ToOutputWithContext(ctx, in).(UtilizationReportTimeFramePtrOutput) } -func (in *utilizationReportTimeFramePtr) ToOutput(ctx context.Context) pulumix.Output[*UtilizationReportTimeFrame] { - return pulumix.Output[*UtilizationReportTimeFrame]{ - OutputState: in.ToUtilizationReportTimeFramePtrOutputWithContext(ctx).OutputState, - } -} - // The power state of the VM at the moment list was taken. type VmwareVmDetailsPowerState string @@ -2147,12 +2080,6 @@ func (in *vmwareVmDetailsPowerStatePtr) ToVmwareVmDetailsPowerStatePtrOutputWith return pulumi.ToOutputWithContext(ctx, in).(VmwareVmDetailsPowerStatePtrOutput) } -func (in *vmwareVmDetailsPowerStatePtr) ToOutput(ctx context.Context) pulumix.Output[*VmwareVmDetailsPowerState] { - return pulumix.Output[*VmwareVmDetailsPowerState]{ - OutputState: in.ToVmwareVmDetailsPowerStatePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*BootDiskDefaultsDiskTypeInput)(nil)).Elem(), BootDiskDefaultsDiskType("COMPUTE_ENGINE_DISK_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*BootDiskDefaultsDiskTypePtrInput)(nil)).Elem(), BootDiskDefaultsDiskType("COMPUTE_ENGINE_DISK_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/vmwareengine/v1/pulumiEnums.go b/sdk/go/google/vmwareengine/v1/pulumiEnums.go index 01a7833d01..b1dd8a3d03 100644 --- a/sdk/go/google/vmwareengine/v1/pulumiEnums.go +++ b/sdk/go/google/vmwareengine/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // The action that the external access rule performs. type ExternalAccessRuleAction string @@ -362,12 +355,6 @@ func (in *externalAccessRuleActionPtr) ToExternalAccessRuleActionPtrOutputWithCo return pulumi.ToOutputWithContext(ctx, in).(ExternalAccessRuleActionPtrOutput) } -func (in *externalAccessRuleActionPtr) ToOutput(ctx context.Context) pulumix.Output[*ExternalAccessRuleAction] { - return pulumix.Output[*ExternalAccessRuleAction]{ - OutputState: in.ToExternalAccessRuleActionPtrOutputWithContext(ctx).OutputState, - } -} - // Required. Protocol used by vCenter to send logs to a logging server. type LoggingServerProtocol string @@ -539,12 +526,6 @@ func (in *loggingServerProtocolPtr) ToLoggingServerProtocolPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(LoggingServerProtocolPtrOutput) } -func (in *loggingServerProtocolPtr) ToOutput(ctx context.Context) pulumix.Output[*LoggingServerProtocol] { - return pulumix.Output[*LoggingServerProtocol]{ - OutputState: in.ToLoggingServerProtocolPtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of component that produces logs that will be forwarded to this logging server. type LoggingServerSourceType string @@ -716,12 +697,6 @@ func (in *loggingServerSourceTypePtr) ToLoggingServerSourceTypePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(LoggingServerSourceTypePtrOutput) } -func (in *loggingServerSourceTypePtr) ToOutput(ctx context.Context) pulumix.Output[*LoggingServerSourceType] { - return pulumix.Output[*LoggingServerSourceType]{ - OutputState: in.ToLoggingServerSourceTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. The type of the network to peer with the VMware Engine network. type NetworkPeeringPeerNetworkType string @@ -905,12 +880,6 @@ func (in *networkPeeringPeerNetworkTypePtr) ToNetworkPeeringPeerNetworkTypePtrOu return pulumi.ToOutputWithContext(ctx, in).(NetworkPeeringPeerNetworkTypePtrOutput) } -func (in *networkPeeringPeerNetworkTypePtr) ToOutput(ctx context.Context) pulumix.Output[*NetworkPeeringPeerNetworkType] { - return pulumix.Output[*NetworkPeeringPeerNetworkType]{ - OutputState: in.ToNetworkPeeringPeerNetworkTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Type of the private cloud. Defaults to STANDARD. type PrivateCloudType string @@ -1082,12 +1051,6 @@ func (in *privateCloudTypePtr) ToPrivateCloudTypePtrOutputWithContext(ctx contex return pulumi.ToOutputWithContext(ctx, in).(PrivateCloudTypePtrOutput) } -func (in *privateCloudTypePtr) ToOutput(ctx context.Context) pulumix.Output[*PrivateCloudType] { - return pulumix.Output[*PrivateCloudType]{ - OutputState: in.ToPrivateCloudTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Routing Mode. Default value is set to GLOBAL. For type = PRIVATE_SERVICE_ACCESS, this field can be set to GLOBAL or REGIONAL, for other types only GLOBAL is supported. type PrivateConnectionRoutingMode string @@ -1259,12 +1222,6 @@ func (in *privateConnectionRoutingModePtr) ToPrivateConnectionRoutingModePtrOutp return pulumi.ToOutputWithContext(ctx, in).(PrivateConnectionRoutingModePtrOutput) } -func (in *privateConnectionRoutingModePtr) ToOutput(ctx context.Context) pulumix.Output[*PrivateConnectionRoutingMode] { - return pulumix.Output[*PrivateConnectionRoutingMode]{ - OutputState: in.ToPrivateConnectionRoutingModePtrOutputWithContext(ctx).OutputState, - } -} - // Required. Private connection type. type PrivateConnectionType string @@ -1442,12 +1399,6 @@ func (in *privateConnectionTypePtr) ToPrivateConnectionTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(PrivateConnectionTypePtrOutput) } -func (in *privateConnectionTypePtr) ToOutput(ctx context.Context) pulumix.Output[*PrivateConnectionType] { - return pulumix.Output[*PrivateConnectionType]{ - OutputState: in.ToPrivateConnectionTypePtrOutputWithContext(ctx).OutputState, - } -} - // Required. VMware Engine network type. type VmwareEngineNetworkType string @@ -1619,12 +1570,6 @@ func (in *vmwareEngineNetworkTypePtr) ToVmwareEngineNetworkTypePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(VmwareEngineNetworkTypePtrOutput) } -func (in *vmwareEngineNetworkTypePtr) ToOutput(ctx context.Context) pulumix.Output[*VmwareEngineNetworkType] { - return pulumix.Output[*VmwareEngineNetworkType]{ - OutputState: in.ToVmwareEngineNetworkTypePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/websecurityscanner/v1/pulumiEnums.go b/sdk/go/google/websecurityscanner/v1/pulumiEnums.go index 876adfc5c5..b1684a2f79 100644 --- a/sdk/go/google/websecurityscanner/v1/pulumiEnums.go +++ b/sdk/go/google/websecurityscanner/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Controls export of scan configurations and results to Security Command Center. @@ -182,12 +181,6 @@ func (in *scanConfigExportToSecurityCommandCenterPtr) ToScanConfigExportToSecuri return pulumi.ToOutputWithContext(ctx, in).(ScanConfigExportToSecurityCommandCenterPtrOutput) } -func (in *scanConfigExportToSecurityCommandCenterPtr) ToOutput(ctx context.Context) pulumix.Output[*ScanConfigExportToSecurityCommandCenter] { - return pulumix.Output[*ScanConfigExportToSecurityCommandCenter]{ - OutputState: in.ToScanConfigExportToSecurityCommandCenterPtrOutputWithContext(ctx).OutputState, - } -} - // The risk level selected for the scan type ScanConfigRiskLevel string @@ -359,12 +352,6 @@ func (in *scanConfigRiskLevelPtr) ToScanConfigRiskLevelPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(ScanConfigRiskLevelPtrOutput) } -func (in *scanConfigRiskLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*ScanConfigRiskLevel] { - return pulumix.Output[*ScanConfigRiskLevel]{ - OutputState: in.ToScanConfigRiskLevelPtrOutputWithContext(ctx).OutputState, - } -} - // The user agent used during scanning. type ScanConfigUserAgent string @@ -539,12 +526,6 @@ func (in *scanConfigUserAgentPtr) ToScanConfigUserAgentPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(ScanConfigUserAgentPtrOutput) } -func (in *scanConfigUserAgentPtr) ToOutput(ctx context.Context) pulumix.Output[*ScanConfigUserAgent] { - return pulumix.Output[*ScanConfigUserAgent]{ - OutputState: in.ToScanConfigUserAgentPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ScanConfigExportToSecurityCommandCenterInput)(nil)).Elem(), ScanConfigExportToSecurityCommandCenter("EXPORT_TO_SECURITY_COMMAND_CENTER_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*ScanConfigExportToSecurityCommandCenterPtrInput)(nil)).Elem(), ScanConfigExportToSecurityCommandCenter("EXPORT_TO_SECURITY_COMMAND_CENTER_UNSPECIFIED")) diff --git a/sdk/go/google/websecurityscanner/v1alpha/pulumiEnums.go b/sdk/go/google/websecurityscanner/v1alpha/pulumiEnums.go index ef4524e36d..46727bdc43 100644 --- a/sdk/go/google/websecurityscanner/v1alpha/pulumiEnums.go +++ b/sdk/go/google/websecurityscanner/v1alpha/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) type ScanConfigTargetPlatformsItem string @@ -187,12 +186,6 @@ func (in *scanConfigTargetPlatformsItemPtr) ToScanConfigTargetPlatformsItemPtrOu return pulumi.ToOutputWithContext(ctx, in).(ScanConfigTargetPlatformsItemPtrOutput) } -func (in *scanConfigTargetPlatformsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*ScanConfigTargetPlatformsItem] { - return pulumix.Output[*ScanConfigTargetPlatformsItem]{ - OutputState: in.ToScanConfigTargetPlatformsItemPtrOutputWithContext(ctx).OutputState, - } -} - // ScanConfigTargetPlatformsItemArrayInput is an input type that accepts ScanConfigTargetPlatformsItemArray and ScanConfigTargetPlatformsItemArrayOutput values. // You can construct a concrete instance of `ScanConfigTargetPlatformsItemArrayInput` via: // @@ -412,12 +405,6 @@ func (in *scanConfigUserAgentPtr) ToScanConfigUserAgentPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(ScanConfigUserAgentPtrOutput) } -func (in *scanConfigUserAgentPtr) ToOutput(ctx context.Context) pulumix.Output[*ScanConfigUserAgent] { - return pulumix.Output[*ScanConfigUserAgent]{ - OutputState: in.ToScanConfigUserAgentPtrOutputWithContext(ctx).OutputState, - } -} - // The execution state of the ScanRun. type ScanRunExecutionState string @@ -592,12 +579,6 @@ func (in *scanRunExecutionStatePtr) ToScanRunExecutionStatePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ScanRunExecutionStatePtrOutput) } -func (in *scanRunExecutionStatePtr) ToOutput(ctx context.Context) pulumix.Output[*ScanRunExecutionState] { - return pulumix.Output[*ScanRunExecutionState]{ - OutputState: in.ToScanRunExecutionStatePtrOutputWithContext(ctx).OutputState, - } -} - // The result state of the ScanRun. This field is only available after the execution state reaches "FINISHED". type ScanRunResultState string @@ -772,12 +753,6 @@ func (in *scanRunResultStatePtr) ToScanRunResultStatePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(ScanRunResultStatePtrOutput) } -func (in *scanRunResultStatePtr) ToOutput(ctx context.Context) pulumix.Output[*ScanRunResultState] { - return pulumix.Output[*ScanRunResultState]{ - OutputState: in.ToScanRunResultStatePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ScanConfigTargetPlatformsItemInput)(nil)).Elem(), ScanConfigTargetPlatformsItem("TARGET_PLATFORM_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*ScanConfigTargetPlatformsItemPtrInput)(nil)).Elem(), ScanConfigTargetPlatformsItem("TARGET_PLATFORM_UNSPECIFIED")) diff --git a/sdk/go/google/websecurityscanner/v1beta/pulumiEnums.go b/sdk/go/google/websecurityscanner/v1beta/pulumiEnums.go index 0226b8b2e4..26eb437b0e 100644 --- a/sdk/go/google/websecurityscanner/v1beta/pulumiEnums.go +++ b/sdk/go/google/websecurityscanner/v1beta/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Indicates the reason code for a configuration failure. @@ -302,12 +301,6 @@ func (in *scanConfigErrorCodePtr) ToScanConfigErrorCodePtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(ScanConfigErrorCodePtrOutput) } -func (in *scanConfigErrorCodePtr) ToOutput(ctx context.Context) pulumix.Output[*ScanConfigErrorCode] { - return pulumix.Output[*ScanConfigErrorCode]{ - OutputState: in.ToScanConfigErrorCodePtrOutputWithContext(ctx).OutputState, - } -} - // Controls export of scan configurations and results to Security Command Center. type ScanConfigExportToSecurityCommandCenter string @@ -479,12 +472,6 @@ func (in *scanConfigExportToSecurityCommandCenterPtr) ToScanConfigExportToSecuri return pulumi.ToOutputWithContext(ctx, in).(ScanConfigExportToSecurityCommandCenterPtrOutput) } -func (in *scanConfigExportToSecurityCommandCenterPtr) ToOutput(ctx context.Context) pulumix.Output[*ScanConfigExportToSecurityCommandCenter] { - return pulumix.Output[*ScanConfigExportToSecurityCommandCenter]{ - OutputState: in.ToScanConfigExportToSecurityCommandCenterPtrOutputWithContext(ctx).OutputState, - } -} - // The risk level selected for the scan type ScanConfigRiskLevel string @@ -656,12 +643,6 @@ func (in *scanConfigRiskLevelPtr) ToScanConfigRiskLevelPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(ScanConfigRiskLevelPtrOutput) } -func (in *scanConfigRiskLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*ScanConfigRiskLevel] { - return pulumix.Output[*ScanConfigRiskLevel]{ - OutputState: in.ToScanConfigRiskLevelPtrOutputWithContext(ctx).OutputState, - } -} - type ScanConfigTargetPlatformsItem string const ( @@ -838,12 +819,6 @@ func (in *scanConfigTargetPlatformsItemPtr) ToScanConfigTargetPlatformsItemPtrOu return pulumi.ToOutputWithContext(ctx, in).(ScanConfigTargetPlatformsItemPtrOutput) } -func (in *scanConfigTargetPlatformsItemPtr) ToOutput(ctx context.Context) pulumix.Output[*ScanConfigTargetPlatformsItem] { - return pulumix.Output[*ScanConfigTargetPlatformsItem]{ - OutputState: in.ToScanConfigTargetPlatformsItemPtrOutputWithContext(ctx).OutputState, - } -} - // ScanConfigTargetPlatformsItemArrayInput is an input type that accepts ScanConfigTargetPlatformsItemArray and ScanConfigTargetPlatformsItemArrayOutput values. // You can construct a concrete instance of `ScanConfigTargetPlatformsItemArrayInput` via: // @@ -1063,12 +1038,6 @@ func (in *scanConfigUserAgentPtr) ToScanConfigUserAgentPtrOutputWithContext(ctx return pulumi.ToOutputWithContext(ctx, in).(ScanConfigUserAgentPtrOutput) } -func (in *scanConfigUserAgentPtr) ToOutput(ctx context.Context) pulumix.Output[*ScanConfigUserAgent] { - return pulumix.Output[*ScanConfigUserAgent]{ - OutputState: in.ToScanConfigUserAgentPtrOutputWithContext(ctx).OutputState, - } -} - // Indicates the error reason code. type ScanRunErrorTraceCode string @@ -1255,12 +1224,6 @@ func (in *scanRunErrorTraceCodePtr) ToScanRunErrorTraceCodePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ScanRunErrorTraceCodePtrOutput) } -func (in *scanRunErrorTraceCodePtr) ToOutput(ctx context.Context) pulumix.Output[*ScanRunErrorTraceCode] { - return pulumix.Output[*ScanRunErrorTraceCode]{ - OutputState: in.ToScanRunErrorTraceCodePtrOutputWithContext(ctx).OutputState, - } -} - // The execution state of the ScanRun. type ScanRunExecutionState string @@ -1435,12 +1398,6 @@ func (in *scanRunExecutionStatePtr) ToScanRunExecutionStatePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ScanRunExecutionStatePtrOutput) } -func (in *scanRunExecutionStatePtr) ToOutput(ctx context.Context) pulumix.Output[*ScanRunExecutionState] { - return pulumix.Output[*ScanRunExecutionState]{ - OutputState: in.ToScanRunExecutionStatePtrOutputWithContext(ctx).OutputState, - } -} - // The result state of the ScanRun. This field is only available after the execution state reaches "FINISHED". type ScanRunResultState string @@ -1615,12 +1572,6 @@ func (in *scanRunResultStatePtr) ToScanRunResultStatePtrOutputWithContext(ctx co return pulumi.ToOutputWithContext(ctx, in).(ScanRunResultStatePtrOutput) } -func (in *scanRunResultStatePtr) ToOutput(ctx context.Context) pulumix.Output[*ScanRunResultState] { - return pulumix.Output[*ScanRunResultState]{ - OutputState: in.ToScanRunResultStatePtrOutputWithContext(ctx).OutputState, - } -} - // Indicates the warning code. type ScanRunWarningTraceCode string @@ -1801,12 +1752,6 @@ func (in *scanRunWarningTraceCodePtr) ToScanRunWarningTraceCodePtrOutputWithCont return pulumi.ToOutputWithContext(ctx, in).(ScanRunWarningTraceCodePtrOutput) } -func (in *scanRunWarningTraceCodePtr) ToOutput(ctx context.Context) pulumix.Output[*ScanRunWarningTraceCode] { - return pulumix.Output[*ScanRunWarningTraceCode]{ - OutputState: in.ToScanRunWarningTraceCodePtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ScanConfigErrorCodeInput)(nil)).Elem(), ScanConfigErrorCode("CODE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*ScanConfigErrorCodePtrInput)(nil)).Elem(), ScanConfigErrorCode("CODE_UNSPECIFIED")) diff --git a/sdk/go/google/workflowexecutions/v1/pulumiEnums.go b/sdk/go/google/workflowexecutions/v1/pulumiEnums.go index a8d476aeed..e49b5c2984 100644 --- a/sdk/go/google/workflowexecutions/v1/pulumiEnums.go +++ b/sdk/go/google/workflowexecutions/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The call logging level associated to this execution. @@ -185,12 +184,6 @@ func (in *executionCallLogLevelPtr) ToExecutionCallLogLevelPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ExecutionCallLogLevelPtrOutput) } -func (in *executionCallLogLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*ExecutionCallLogLevel] { - return pulumix.Output[*ExecutionCallLogLevel]{ - OutputState: in.ToExecutionCallLogLevelPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ExecutionCallLogLevelInput)(nil)).Elem(), ExecutionCallLogLevel("CALL_LOG_LEVEL_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*ExecutionCallLogLevelPtrInput)(nil)).Elem(), ExecutionCallLogLevel("CALL_LOG_LEVEL_UNSPECIFIED")) diff --git a/sdk/go/google/workflowexecutions/v1beta/pulumiEnums.go b/sdk/go/google/workflowexecutions/v1beta/pulumiEnums.go index e7e023b7ba..c9a2c73683 100644 --- a/sdk/go/google/workflowexecutions/v1beta/pulumiEnums.go +++ b/sdk/go/google/workflowexecutions/v1beta/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The call logging level associated to this execution. @@ -182,12 +181,6 @@ func (in *executionCallLogLevelPtr) ToExecutionCallLogLevelPtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(ExecutionCallLogLevelPtrOutput) } -func (in *executionCallLogLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*ExecutionCallLogLevel] { - return pulumix.Output[*ExecutionCallLogLevel]{ - OutputState: in.ToExecutionCallLogLevelPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*ExecutionCallLogLevelInput)(nil)).Elem(), ExecutionCallLogLevel("CALL_LOG_LEVEL_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*ExecutionCallLogLevelPtrInput)(nil)).Elem(), ExecutionCallLogLevel("CALL_LOG_LEVEL_UNSPECIFIED")) diff --git a/sdk/go/google/workflows/v1/pulumiEnums.go b/sdk/go/google/workflows/v1/pulumiEnums.go index 937d6ea55b..e1512a0813 100644 --- a/sdk/go/google/workflows/v1/pulumiEnums.go +++ b/sdk/go/google/workflows/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // Optional. Describes the level of platform logging to apply to calls and call responses during executions of this workflow. If both the workflow and the execution specify a logging level, the execution level takes precedence. @@ -185,12 +184,6 @@ func (in *workflowCallLogLevelPtr) ToWorkflowCallLogLevelPtrOutputWithContext(ct return pulumi.ToOutputWithContext(ctx, in).(WorkflowCallLogLevelPtrOutput) } -func (in *workflowCallLogLevelPtr) ToOutput(ctx context.Context) pulumix.Output[*WorkflowCallLogLevel] { - return pulumix.Output[*WorkflowCallLogLevel]{ - OutputState: in.ToWorkflowCallLogLevelPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*WorkflowCallLogLevelInput)(nil)).Elem(), WorkflowCallLogLevel("CALL_LOG_LEVEL_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*WorkflowCallLogLevelPtrInput)(nil)).Elem(), WorkflowCallLogLevel("CALL_LOG_LEVEL_UNSPECIFIED")) diff --git a/sdk/go/google/workstations/v1/pulumiEnums.go b/sdk/go/google/workstations/v1/pulumiEnums.go index 570b56236b..cca9be0e67 100644 --- a/sdk/go/google/workstations/v1/pulumiEnums.go +++ b/sdk/go/google/workstations/v1/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Whether the persistent disk should be deleted when the workstation is deleted. Valid values are `DELETE` and `RETAIN`. Defaults to `DELETE`. type GceRegionalPersistentDiskReclaimPolicy string @@ -362,12 +355,6 @@ func (in *gceRegionalPersistentDiskReclaimPolicyPtr) ToGceRegionalPersistentDisk return pulumi.ToOutputWithContext(ctx, in).(GceRegionalPersistentDiskReclaimPolicyPtrOutput) } -func (in *gceRegionalPersistentDiskReclaimPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*GceRegionalPersistentDiskReclaimPolicy] { - return pulumix.Output[*GceRegionalPersistentDiskReclaimPolicy]{ - OutputState: in.ToGceRegionalPersistentDiskReclaimPolicyPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/go/google/workstations/v1beta/pulumiEnums.go b/sdk/go/google/workstations/v1beta/pulumiEnums.go index 8b499c4395..f05227ad7c 100644 --- a/sdk/go/google/workstations/v1beta/pulumiEnums.go +++ b/sdk/go/google/workstations/v1beta/pulumiEnums.go @@ -8,7 +8,6 @@ import ( "reflect" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" - "github.com/pulumi/pulumi/sdk/v3/go/pulumix" ) // The log type that this config enables. @@ -185,12 +184,6 @@ func (in *auditLogConfigLogTypePtr) ToAuditLogConfigLogTypePtrOutputWithContext( return pulumi.ToOutputWithContext(ctx, in).(AuditLogConfigLogTypePtrOutput) } -func (in *auditLogConfigLogTypePtr) ToOutput(ctx context.Context) pulumix.Output[*AuditLogConfigLogType] { - return pulumix.Output[*AuditLogConfigLogType]{ - OutputState: in.ToAuditLogConfigLogTypePtrOutputWithContext(ctx).OutputState, - } -} - // Optional. Whether the persistent disk should be deleted when the workstation is deleted. Valid values are `DELETE` and `RETAIN`. Defaults to `DELETE`. type GceRegionalPersistentDiskReclaimPolicy string @@ -362,12 +355,6 @@ func (in *gceRegionalPersistentDiskReclaimPolicyPtr) ToGceRegionalPersistentDisk return pulumi.ToOutputWithContext(ctx, in).(GceRegionalPersistentDiskReclaimPolicyPtrOutput) } -func (in *gceRegionalPersistentDiskReclaimPolicyPtr) ToOutput(ctx context.Context) pulumix.Output[*GceRegionalPersistentDiskReclaimPolicy] { - return pulumix.Output[*GceRegionalPersistentDiskReclaimPolicy]{ - OutputState: in.ToGceRegionalPersistentDiskReclaimPolicyPtrOutputWithContext(ctx).OutputState, - } -} - func init() { pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypeInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) pulumi.RegisterInputType(reflect.TypeOf((*AuditLogConfigLogTypePtrInput)(nil)).Elem(), AuditLogConfigLogType("LOG_TYPE_UNSPECIFIED")) diff --git a/sdk/nodejs/go.mod b/sdk/nodejs/go.mod index 104eb1a8f3..95e3e6341d 100644 --- a/sdk/nodejs/go.mod +++ b/sdk/nodejs/go.mod @@ -1,3 +1 @@ -module fake_nodejs_module // Exclude this directory from Go tools - -go 1.17 +module fake_nodejs_module // Exclude this directory from Go tools\n\ngo 1.17 diff --git a/sdk/nodejs/package.json b/sdk/nodejs/package.json index 95f8c053f1..6968ea33d8 100644 --- a/sdk/nodejs/package.json +++ b/sdk/nodejs/package.json @@ -1,6 +1,6 @@ { "name": "@pulumi/google-native", - "version": "${VERSION}", + "version": "0.0.1-alpha.0+dev", "keywords": [ "pulumi", "google cloud", @@ -22,6 +22,7 @@ }, "pulumi": { "resource": true, - "name": "google-native" + "name": "google-native", + "version": "0.0.1-alpha.0+dev" } } diff --git a/sdk/python/go.mod b/sdk/python/go.mod index b91fcbc343..a9298dba4f 100644 --- a/sdk/python/go.mod +++ b/sdk/python/go.mod @@ -1,3 +1 @@ -module fake_python_module // Exclude this directory from Go tools - -go 1.17 +module fake_python_module // Exclude this directory from Go tools\n\ngo 1.17 diff --git a/sdk/python/pulumi_google_native/_utilities.py b/sdk/python/pulumi_google_native/_utilities.py index fadc9224f4..f01ccc7415 100644 --- a/sdk/python/pulumi_google_native/_utilities.py +++ b/sdk/python/pulumi_google_native/_utilities.py @@ -4,13 +4,15 @@ import asyncio +import functools +import importlib.metadata import importlib.util import inspect import json import os -import pkg_resources import sys import typing +import warnings import pulumi import pulumi.runtime @@ -19,6 +21,8 @@ from semver import VersionInfo as SemverVersion from parver import Version as PEP440Version +C = typing.TypeVar("C", bound=typing.Callable) + def get_env(*args): for v in args: @@ -72,7 +76,7 @@ def _get_semver_version(): # to receive a valid semver string when receiving requests from the language host, so it's our # responsibility as the library to convert our own PEP440 version into a valid semver string. - pep440_version_string = pkg_resources.require(root_package)[0].version + pep440_version_string = importlib.metadata.version(root_package) pep440_version = PEP440Version.parse(pep440_version_string) (major, minor, patch) = pep440_version.release prerelease = None @@ -287,5 +291,36 @@ async def _await_output(o: pulumi.Output[typing.Any]) -> typing.Tuple[object, bo await o._resources, ) + +# This is included to provide an upgrade path for users who are using a version +# of the Pulumi SDK (<3.121.0) that does not include the `deprecated` decorator. +def deprecated(message: str) -> typing.Callable[[C], C]: + """ + Decorator to indicate a function is deprecated. + + As well as inserting appropriate statements to indicate that the function is + deprecated, this decorator also tags the function with a special attribute + so that Pulumi code can detect that it is deprecated and react appropriately + in certain situations. + + message is the deprecation message that should be printed if the function is called. + """ + + def decorator(fn: C) -> C: + if not callable(fn): + raise TypeError("Expected fn to be callable") + + @functools.wraps(fn) + def deprecated_fn(*args, **kwargs): + warnings.warn(message) + pulumi.warn(f"{fn.__name__} is deprecated: {message}") + + return fn(*args, **kwargs) + + deprecated_fn.__dict__["_pulumi_deprecated_callable"] = fn + return typing.cast(C, deprecated_fn) + + return decorator + def get_plugin_download_url(): return None diff --git a/sdk/python/pulumi_google_native/accesscontextmanager/v1/access_level.py b/sdk/python/pulumi_google_native/accesscontextmanager/v1/access_level.py index 1b7bb55bc1..b0d571e107 100644 --- a/sdk/python/pulumi_google_native/accesscontextmanager/v1/access_level.py +++ b/sdk/python/pulumi_google_native/accesscontextmanager/v1/access_level.py @@ -183,7 +183,7 @@ def _internal_init(__self__, __props__.__dict__["description"] = description __props__.__dict__["name"] = name __props__.__dict__["title"] = title - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["access_policy_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["accessPolicyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AccessLevel, __self__).__init__( 'google-native:accesscontextmanager/v1:AccessLevel', diff --git a/sdk/python/pulumi_google_native/accesscontextmanager/v1/access_policy_iam_policy.py b/sdk/python/pulumi_google_native/accesscontextmanager/v1/access_policy_iam_policy.py index 79789682a1..bce46c4610 100644 --- a/sdk/python/pulumi_google_native/accesscontextmanager/v1/access_policy_iam_policy.py +++ b/sdk/python/pulumi_google_native/accesscontextmanager/v1/access_policy_iam_policy.py @@ -187,7 +187,7 @@ def _internal_init(__self__, __props__.__dict__["etag"] = etag __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["access_policy_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["accessPolicyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AccessPolicyIamPolicy, __self__).__init__( 'google-native:accesscontextmanager/v1:AccessPolicyIamPolicy', diff --git a/sdk/python/pulumi_google_native/accesscontextmanager/v1/authorized_orgs_desc.py b/sdk/python/pulumi_google_native/accesscontextmanager/v1/authorized_orgs_desc.py index e87338ae7b..1af043709f 100644 --- a/sdk/python/pulumi_google_native/accesscontextmanager/v1/authorized_orgs_desc.py +++ b/sdk/python/pulumi_google_native/accesscontextmanager/v1/authorized_orgs_desc.py @@ -181,7 +181,7 @@ def _internal_init(__self__, __props__.__dict__["authorization_type"] = authorization_type __props__.__dict__["name"] = name __props__.__dict__["orgs"] = orgs - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["access_policy_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["accessPolicyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AuthorizedOrgsDesc, __self__).__init__( 'google-native:accesscontextmanager/v1:AuthorizedOrgsDesc', diff --git a/sdk/python/pulumi_google_native/accesscontextmanager/v1/gcp_user_access_binding.py b/sdk/python/pulumi_google_native/accesscontextmanager/v1/gcp_user_access_binding.py index 5ee9b00004..7468bd54b0 100644 --- a/sdk/python/pulumi_google_native/accesscontextmanager/v1/gcp_user_access_binding.py +++ b/sdk/python/pulumi_google_native/accesscontextmanager/v1/gcp_user_access_binding.py @@ -161,7 +161,7 @@ def _internal_init(__self__, if organization_id is None and not opts.urn: raise TypeError("Missing required property 'organization_id'") __props__.__dict__["organization_id"] = organization_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(GcpUserAccessBinding, __self__).__init__( 'google-native:accesscontextmanager/v1:GcpUserAccessBinding', diff --git a/sdk/python/pulumi_google_native/accesscontextmanager/v1/service_perimeter.py b/sdk/python/pulumi_google_native/accesscontextmanager/v1/service_perimeter.py index 09be491a4a..7b7001f3d9 100644 --- a/sdk/python/pulumi_google_native/accesscontextmanager/v1/service_perimeter.py +++ b/sdk/python/pulumi_google_native/accesscontextmanager/v1/service_perimeter.py @@ -204,7 +204,7 @@ def _internal_init(__self__, __props__.__dict__["title"] = title __props__.__dict__["use_explicit_dry_run_spec"] = use_explicit_dry_run_spec __props__.__dict__["status"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["access_policy_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["accessPolicyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServicePerimeter, __self__).__init__( 'google-native:accesscontextmanager/v1:ServicePerimeter', diff --git a/sdk/python/pulumi_google_native/accesscontextmanager/v1beta/access_level.py b/sdk/python/pulumi_google_native/accesscontextmanager/v1beta/access_level.py index 14cc2c3479..1faacb39ff 100644 --- a/sdk/python/pulumi_google_native/accesscontextmanager/v1beta/access_level.py +++ b/sdk/python/pulumi_google_native/accesscontextmanager/v1beta/access_level.py @@ -183,7 +183,7 @@ def _internal_init(__self__, __props__.__dict__["description"] = description __props__.__dict__["name"] = name __props__.__dict__["title"] = title - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["access_policy_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["accessPolicyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AccessLevel, __self__).__init__( 'google-native:accesscontextmanager/v1beta:AccessLevel', diff --git a/sdk/python/pulumi_google_native/accesscontextmanager/v1beta/outputs.py b/sdk/python/pulumi_google_native/accesscontextmanager/v1beta/outputs.py index 7e3c4060c4..cb3ac9a2bd 100644 --- a/sdk/python/pulumi_google_native/accesscontextmanager/v1beta/outputs.py +++ b/sdk/python/pulumi_google_native/accesscontextmanager/v1beta/outputs.py @@ -490,13 +490,11 @@ def restricted_services(self) -> Sequence[str]: @property @pulumi.getter(name="unrestrictedServices") + @_utilities.deprecated("""Google Cloud services that are not subject to the Service Perimeter restrictions. Deprecated. Must be set to a single wildcard \"*\". The wildcard means that unless explicitly specified by \"restricted_services\" list, any service is treated as unrestricted.""") def unrestricted_services(self) -> Sequence[str]: """ Google Cloud services that are not subject to the Service Perimeter restrictions. Deprecated. Must be set to a single wildcard "*". The wildcard means that unless explicitly specified by "restricted_services" list, any service is treated as unrestricted. """ - warnings.warn("""Google Cloud services that are not subject to the Service Perimeter restrictions. Deprecated. Must be set to a single wildcard \"*\". The wildcard means that unless explicitly specified by \"restricted_services\" list, any service is treated as unrestricted.""", DeprecationWarning) - pulumi.log.warn("""unrestricted_services is deprecated: Google Cloud services that are not subject to the Service Perimeter restrictions. Deprecated. Must be set to a single wildcard \"*\". The wildcard means that unless explicitly specified by \"restricted_services\" list, any service is treated as unrestricted.""") - return pulumi.get(self, "unrestricted_services") @property diff --git a/sdk/python/pulumi_google_native/accesscontextmanager/v1beta/service_perimeter.py b/sdk/python/pulumi_google_native/accesscontextmanager/v1beta/service_perimeter.py index 43291e379c..30b47d85ab 100644 --- a/sdk/python/pulumi_google_native/accesscontextmanager/v1beta/service_perimeter.py +++ b/sdk/python/pulumi_google_native/accesscontextmanager/v1beta/service_perimeter.py @@ -163,7 +163,7 @@ def _internal_init(__self__, __props__.__dict__["perimeter_type"] = perimeter_type __props__.__dict__["title"] = title __props__.__dict__["status"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["access_policy_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["accessPolicyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServicePerimeter, __self__).__init__( 'google-native:accesscontextmanager/v1beta:ServicePerimeter', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/_inputs.py b/sdk/python/pulumi_google_native/aiplatform/v1/_inputs.py index ddc423f24d..bda9ab1f81 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/_inputs.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/_inputs.py @@ -4002,13 +4002,11 @@ def parameter_values(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Inpu @property @pulumi.getter + @_utilities.deprecated("""Deprecated. Use RuntimeConfig.parameter_values instead. The runtime parameters of the PipelineJob. The parameters will be passed into PipelineJob.pipeline_spec to replace the placeholders at runtime. This field is used by pipelines built using `PipelineJob.pipeline_spec.schema_version` 2.0.0 or lower, such as pipelines built using Kubeflow Pipelines SDK 1.8 or lower.""") def parameters(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]: """ Deprecated. Use RuntimeConfig.parameter_values instead. The runtime parameters of the PipelineJob. The parameters will be passed into PipelineJob.pipeline_spec to replace the placeholders at runtime. This field is used by pipelines built using `PipelineJob.pipeline_spec.schema_version` 2.0.0 or lower, such as pipelines built using Kubeflow Pipelines SDK 1.8 or lower. """ - warnings.warn("""Deprecated. Use RuntimeConfig.parameter_values instead. The runtime parameters of the PipelineJob. The parameters will be passed into PipelineJob.pipeline_spec to replace the placeholders at runtime. This field is used by pipelines built using `PipelineJob.pipeline_spec.schema_version` 2.0.0 or lower, such as pipelines built using Kubeflow Pipelines SDK 1.8 or lower.""", DeprecationWarning) - pulumi.log.warn("""parameters is deprecated: Deprecated. Use RuntimeConfig.parameter_values instead. The runtime parameters of the PipelineJob. The parameters will be passed into PipelineJob.pipeline_spec to replace the placeholders at runtime. This field is used by pipelines built using `PipelineJob.pipeline_spec.schema_version` 2.0.0 or lower, such as pipelines built using Kubeflow Pipelines SDK 1.8 or lower.""") - return pulumi.get(self, "parameters") @parameters.setter diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/artifact.py b/sdk/python/pulumi_google_native/aiplatform/v1/artifact.py index 2aedefd756..bb0fd5a007 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/artifact.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/artifact.py @@ -316,7 +316,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "metadata_store_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "metadataStoreId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Artifact, __self__).__init__( 'google-native:aiplatform/v1:Artifact', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/context.py b/sdk/python/pulumi_google_native/aiplatform/v1/context.py index 7ffa13e43e..7b64adf668 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/context.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/context.py @@ -293,7 +293,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["parent_contexts"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "metadata_store_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "metadataStoreId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Context, __self__).__init__( 'google-native:aiplatform/v1:Context', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/dataset_version.py b/sdk/python/pulumi_google_native/aiplatform/v1/dataset_version.py index 6def5d7140..77ebd47dc0 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/dataset_version.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/dataset_version.py @@ -136,7 +136,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DatasetVersion, __self__).__init__( 'google-native:aiplatform/v1:DatasetVersion', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/endpoint.py b/sdk/python/pulumi_google_native/aiplatform/v1/endpoint.py index 6408cc301c..df54ff071e 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/endpoint.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/endpoint.py @@ -94,13 +94,11 @@ def description(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="enablePrivateServiceConnect") + @_utilities.deprecated("""Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") def enable_private_service_connect(self) -> Optional[pulumi.Input[bool]]: """ Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set. """ - warnings.warn("""Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""", DeprecationWarning) - pulumi.log.warn("""enable_private_service_connect is deprecated: Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") - return pulumi.get(self, "enable_private_service_connect") @enable_private_service_connect.setter @@ -387,13 +385,11 @@ def display_name(self) -> pulumi.Output[str]: @property @pulumi.getter(name="enablePrivateServiceConnect") + @_utilities.deprecated("""Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") def enable_private_service_connect(self) -> pulumi.Output[bool]: """ Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set. """ - warnings.warn("""Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""", DeprecationWarning) - pulumi.log.warn("""enable_private_service_connect is deprecated: Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") - return pulumi.get(self, "enable_private_service_connect") @property diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/entity_type.py b/sdk/python/pulumi_google_native/aiplatform/v1/entity_type.py index 78e21ed391..c5b2c7a8dc 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/entity_type.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/entity_type.py @@ -256,7 +256,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entity_type_id", "featurestore_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entityTypeId", "featurestoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EntityType, __self__).__init__( 'google-native:aiplatform/v1:EntityType', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/execution.py b/sdk/python/pulumi_google_native/aiplatform/v1/execution.py index 6f870e1976..f9f2de5d61 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/execution.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/execution.py @@ -296,7 +296,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "metadata_store_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "metadataStoreId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Execution, __self__).__init__( 'google-native:aiplatform/v1:Execution', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/experiment.py b/sdk/python/pulumi_google_native/aiplatform/v1/experiment.py index 69d3abf175..72b9483f04 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/experiment.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/experiment.py @@ -236,7 +236,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tensorboard_experiment_id", "tensorboard_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tensorboardExperimentId", "tensorboardId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Experiment, __self__).__init__( 'google-native:aiplatform/v1:Experiment', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/feature_group.py b/sdk/python/pulumi_google_native/aiplatform/v1/feature_group.py index 5cbbc47c1e..32fec2d998 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/feature_group.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/feature_group.py @@ -202,7 +202,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["feature_group_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["featureGroupId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FeatureGroup, __self__).__init__( 'google-native:aiplatform/v1:FeatureGroup', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/feature_group_feature.py b/sdk/python/pulumi_google_native/aiplatform/v1/feature_group_feature.py index 355ab5e204..86770e2549 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/feature_group_feature.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/feature_group_feature.py @@ -278,7 +278,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["monitoring_stats_anomalies"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["feature_group_id", "feature_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["featureGroupId", "featureId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FeatureGroupFeature, __self__).__init__( 'google-native:aiplatform/v1:FeatureGroupFeature', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/feature_online_store.py b/sdk/python/pulumi_google_native/aiplatform/v1/feature_online_store.py index bee93d4947..ed5f9eed3d 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/feature_online_store.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/feature_online_store.py @@ -183,7 +183,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["feature_online_store_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["featureOnlineStoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FeatureOnlineStore, __self__).__init__( 'google-native:aiplatform/v1:FeatureOnlineStore', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/feature_store_feature.py b/sdk/python/pulumi_google_native/aiplatform/v1/feature_store_feature.py index 7ed971c5de..dd350f205e 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/feature_store_feature.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/feature_store_feature.py @@ -292,7 +292,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["monitoring_stats_anomalies"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entity_type_id", "feature_id", "featurestore_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entityTypeId", "featureId", "featurestoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FeatureStoreFeature, __self__).__init__( 'google-native:aiplatform/v1:FeatureStoreFeature', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/feature_view.py b/sdk/python/pulumi_google_native/aiplatform/v1/feature_view.py index 9d952f7036..026e7fa731 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/feature_view.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/feature_view.py @@ -258,7 +258,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["feature_online_store_id", "feature_view_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["featureOnlineStoreId", "featureViewId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FeatureView, __self__).__init__( 'google-native:aiplatform/v1:FeatureView', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/featurestore.py b/sdk/python/pulumi_google_native/aiplatform/v1/featurestore.py index d4b5f653a4..dd85f50332 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/featurestore.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/featurestore.py @@ -223,7 +223,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["featurestore_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["featurestoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Featurestore, __self__).__init__( 'google-native:aiplatform/v1:Featurestore', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/featurestore_entity_type_iam_policy.py b/sdk/python/pulumi_google_native/aiplatform/v1/featurestore_entity_type_iam_policy.py index 02712ce192..f61600de62 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/featurestore_entity_type_iam_policy.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/featurestore_entity_type_iam_policy.py @@ -192,7 +192,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entity_type_id", "featurestore_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entityTypeId", "featurestoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FeaturestoreEntityTypeIamPolicy, __self__).__init__( 'google-native:aiplatform/v1:FeaturestoreEntityTypeIamPolicy', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/featurestore_iam_policy.py b/sdk/python/pulumi_google_native/aiplatform/v1/featurestore_iam_policy.py index 10ef46ddf4..45c12cb2b4 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/featurestore_iam_policy.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/featurestore_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["featurestore_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["featurestoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FeaturestoreIamPolicy, __self__).__init__( 'google-native:aiplatform/v1:FeaturestoreIamPolicy', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/get_endpoint.py b/sdk/python/pulumi_google_native/aiplatform/v1/get_endpoint.py index 7513dd56ff..c3622feb6d 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/get_endpoint.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/get_endpoint.py @@ -97,13 +97,11 @@ def display_name(self) -> str: @property @pulumi.getter(name="enablePrivateServiceConnect") + @_utilities.deprecated("""Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") def enable_private_service_connect(self) -> bool: """ Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set. """ - warnings.warn("""Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""", DeprecationWarning) - pulumi.log.warn("""enable_private_service_connect is deprecated: Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") - return pulumi.get(self, "enable_private_service_connect") @property diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/get_index_endpoint.py b/sdk/python/pulumi_google_native/aiplatform/v1/get_index_endpoint.py index a825c20aa8..c8d5700f79 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/get_index_endpoint.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/get_index_endpoint.py @@ -97,13 +97,11 @@ def display_name(self) -> str: @property @pulumi.getter(name="enablePrivateServiceConnect") + @_utilities.deprecated("""Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") def enable_private_service_connect(self) -> bool: """ Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set. """ - warnings.warn("""Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""", DeprecationWarning) - pulumi.log.warn("""enable_private_service_connect is deprecated: Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") - return pulumi.get(self, "enable_private_service_connect") @property diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/index_endpoint.py b/sdk/python/pulumi_google_native/aiplatform/v1/index_endpoint.py index 45e2c7787d..ec8c1ef2c3 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/index_endpoint.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/index_endpoint.py @@ -90,13 +90,11 @@ def description(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="enablePrivateServiceConnect") + @_utilities.deprecated("""Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") def enable_private_service_connect(self) -> Optional[pulumi.Input[bool]]: """ Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set. """ - warnings.warn("""Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""", DeprecationWarning) - pulumi.log.warn("""enable_private_service_connect is deprecated: Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") - return pulumi.get(self, "enable_private_service_connect") @enable_private_service_connect.setter @@ -366,13 +364,11 @@ def display_name(self) -> pulumi.Output[str]: @property @pulumi.getter(name="enablePrivateServiceConnect") + @_utilities.deprecated("""Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") def enable_private_service_connect(self) -> pulumi.Output[bool]: """ Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set. """ - warnings.warn("""Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""", DeprecationWarning) - pulumi.log.warn("""enable_private_service_connect is deprecated: Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") - return pulumi.get(self, "enable_private_service_connect") @property diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/metadata_schema.py b/sdk/python/pulumi_google_native/aiplatform/v1/metadata_schema.py index 47fe071a36..80e2829d4b 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/metadata_schema.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/metadata_schema.py @@ -220,7 +220,7 @@ def _internal_init(__self__, __props__.__dict__["schema_version"] = schema_version __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "metadata_store_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "metadataStoreId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MetadataSchema, __self__).__init__( 'google-native:aiplatform/v1:MetadataSchema', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/notebook_runtime_template_iam_policy.py b/sdk/python/pulumi_google_native/aiplatform/v1/notebook_runtime_template_iam_policy.py index 465d989f07..9eb76c2923 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/notebook_runtime_template_iam_policy.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/notebook_runtime_template_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, __props__.__dict__["notebook_runtime_template_id"] = notebook_runtime_template_id __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "notebook_runtime_template_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "notebookRuntimeTemplateId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(NotebookRuntimeTemplateIamPolicy, __self__).__init__( 'google-native:aiplatform/v1:NotebookRuntimeTemplateIamPolicy', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/outputs.py b/sdk/python/pulumi_google_native/aiplatform/v1/outputs.py index 1c8dca6a10..3a5ed267b0 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/outputs.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/outputs.py @@ -6840,13 +6840,11 @@ def parameter_values(self) -> Mapping[str, str]: @property @pulumi.getter + @_utilities.deprecated("""Deprecated. Use RuntimeConfig.parameter_values instead. The runtime parameters of the PipelineJob. The parameters will be passed into PipelineJob.pipeline_spec to replace the placeholders at runtime. This field is used by pipelines built using `PipelineJob.pipeline_spec.schema_version` 2.0.0 or lower, such as pipelines built using Kubeflow Pipelines SDK 1.8 or lower.""") def parameters(self) -> Mapping[str, str]: """ Deprecated. Use RuntimeConfig.parameter_values instead. The runtime parameters of the PipelineJob. The parameters will be passed into PipelineJob.pipeline_spec to replace the placeholders at runtime. This field is used by pipelines built using `PipelineJob.pipeline_spec.schema_version` 2.0.0 or lower, such as pipelines built using Kubeflow Pipelines SDK 1.8 or lower. """ - warnings.warn("""Deprecated. Use RuntimeConfig.parameter_values instead. The runtime parameters of the PipelineJob. The parameters will be passed into PipelineJob.pipeline_spec to replace the placeholders at runtime. This field is used by pipelines built using `PipelineJob.pipeline_spec.schema_version` 2.0.0 or lower, such as pipelines built using Kubeflow Pipelines SDK 1.8 or lower.""", DeprecationWarning) - pulumi.log.warn("""parameters is deprecated: Deprecated. Use RuntimeConfig.parameter_values instead. The runtime parameters of the PipelineJob. The parameters will be passed into PipelineJob.pipeline_spec to replace the placeholders at runtime. This field is used by pipelines built using `PipelineJob.pipeline_spec.schema_version` 2.0.0 or lower, such as pipelines built using Kubeflow Pipelines SDK 1.8 or lower.""") - return pulumi.get(self, "parameters") diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/run.py b/sdk/python/pulumi_google_native/aiplatform/v1/run.py index 8a59154cfd..e6e4eeb9d9 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/run.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/run.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["experiment_id", "location", "project", "tensorboard_id", "tensorboard_run_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["experimentId", "location", "project", "tensorboardId", "tensorboardRunId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Run, __self__).__init__( 'google-native:aiplatform/v1:Run', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/time_series.py b/sdk/python/pulumi_google_native/aiplatform/v1/time_series.py index 67837fa7ce..1a6b8aed88 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/time_series.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/time_series.py @@ -292,7 +292,7 @@ def _internal_init(__self__, __props__.__dict__["metadata"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["experiment_id", "location", "project", "run_id", "tensorboard_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["experimentId", "location", "project", "runId", "tensorboardId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TimeSeries, __self__).__init__( 'google-native:aiplatform/v1:TimeSeries', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1/trial.py b/sdk/python/pulumi_google_native/aiplatform/v1/trial.py index 37a2053581..b58524271a 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1/trial.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1/trial.py @@ -124,7 +124,7 @@ def _internal_init(__self__, __props__.__dict__["start_time"] = None __props__.__dict__["state"] = None __props__.__dict__["web_access_uris"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "study_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "studyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Trial, __self__).__init__( 'google-native:aiplatform/v1:Trial', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/_inputs.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/_inputs.py index 130a0dcce5..644993026e 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/_inputs.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/_inputs.py @@ -4593,13 +4593,11 @@ def parameter_values(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Inpu @property @pulumi.getter + @_utilities.deprecated("""Deprecated. Use RuntimeConfig.parameter_values instead. The runtime parameters of the PipelineJob. The parameters will be passed into PipelineJob.pipeline_spec to replace the placeholders at runtime. This field is used by pipelines built using `PipelineJob.pipeline_spec.schema_version` 2.0.0 or lower, such as pipelines built using Kubeflow Pipelines SDK 1.8 or lower.""") def parameters(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]: """ Deprecated. Use RuntimeConfig.parameter_values instead. The runtime parameters of the PipelineJob. The parameters will be passed into PipelineJob.pipeline_spec to replace the placeholders at runtime. This field is used by pipelines built using `PipelineJob.pipeline_spec.schema_version` 2.0.0 or lower, such as pipelines built using Kubeflow Pipelines SDK 1.8 or lower. """ - warnings.warn("""Deprecated. Use RuntimeConfig.parameter_values instead. The runtime parameters of the PipelineJob. The parameters will be passed into PipelineJob.pipeline_spec to replace the placeholders at runtime. This field is used by pipelines built using `PipelineJob.pipeline_spec.schema_version` 2.0.0 or lower, such as pipelines built using Kubeflow Pipelines SDK 1.8 or lower.""", DeprecationWarning) - pulumi.log.warn("""parameters is deprecated: Deprecated. Use RuntimeConfig.parameter_values instead. The runtime parameters of the PipelineJob. The parameters will be passed into PipelineJob.pipeline_spec to replace the placeholders at runtime. This field is used by pipelines built using `PipelineJob.pipeline_spec.schema_version` 2.0.0 or lower, such as pipelines built using Kubeflow Pipelines SDK 1.8 or lower.""") - return pulumi.get(self, "parameters") @parameters.setter @@ -6829,13 +6827,11 @@ def convex_automated_stopping_spec(self, value: Optional[pulumi.Input['GoogleClo @property @pulumi.getter(name="convexStopConfig") + @_utilities.deprecated("""Deprecated. The automated early stopping using convex stopping rule.""") def convex_stop_config(self) -> Optional[pulumi.Input['GoogleCloudAiplatformV1beta1StudySpecConvexStopConfigArgs']]: """ Deprecated. The automated early stopping using convex stopping rule. """ - warnings.warn("""Deprecated. The automated early stopping using convex stopping rule.""", DeprecationWarning) - pulumi.log.warn("""convex_stop_config is deprecated: Deprecated. The automated early stopping using convex stopping rule.""") - return pulumi.get(self, "convex_stop_config") @convex_stop_config.setter diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/artifact.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/artifact.py index 038632f948..ceffd44172 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/artifact.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/artifact.py @@ -316,7 +316,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "metadata_store_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "metadataStoreId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Artifact, __self__).__init__( 'google-native:aiplatform/v1beta1:Artifact', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/context.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/context.py index af6f81d430..cb2aeb9221 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/context.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/context.py @@ -293,7 +293,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["parent_contexts"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "metadata_store_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "metadataStoreId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Context, __self__).__init__( 'google-native:aiplatform/v1beta1:Context', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/dataset_version.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/dataset_version.py index 86ac85fb2f..56cbe18a68 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/dataset_version.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/dataset_version.py @@ -136,7 +136,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DatasetVersion, __self__).__init__( 'google-native:aiplatform/v1beta1:DatasetVersion', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/endpoint.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/endpoint.py index 439e670a76..7b7c77ede5 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/endpoint.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/endpoint.py @@ -94,13 +94,11 @@ def description(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="enablePrivateServiceConnect") + @_utilities.deprecated("""Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") def enable_private_service_connect(self) -> Optional[pulumi.Input[bool]]: """ Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set. """ - warnings.warn("""Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""", DeprecationWarning) - pulumi.log.warn("""enable_private_service_connect is deprecated: Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") - return pulumi.get(self, "enable_private_service_connect") @enable_private_service_connect.setter @@ -387,13 +385,11 @@ def display_name(self) -> pulumi.Output[str]: @property @pulumi.getter(name="enablePrivateServiceConnect") + @_utilities.deprecated("""Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") def enable_private_service_connect(self) -> pulumi.Output[bool]: """ Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set. """ - warnings.warn("""Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""", DeprecationWarning) - pulumi.log.warn("""enable_private_service_connect is deprecated: Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") - return pulumi.get(self, "enable_private_service_connect") @property diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/endpoint_iam_policy.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/endpoint_iam_policy.py index 1a116cb0c7..aaf2af7c7c 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/endpoint_iam_policy.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/endpoint_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["endpoint_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["endpointId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EndpointIamPolicy, __self__).__init__( 'google-native:aiplatform/v1beta1:EndpointIamPolicy', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/entity_type.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/entity_type.py index 07c28dea1b..01e1dd89a3 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/entity_type.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/entity_type.py @@ -256,7 +256,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entity_type_id", "featurestore_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entityTypeId", "featurestoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EntityType, __self__).__init__( 'google-native:aiplatform/v1beta1:EntityType', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/execution.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/execution.py index 79920ad063..504c8738fe 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/execution.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/execution.py @@ -296,7 +296,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "metadata_store_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "metadataStoreId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Execution, __self__).__init__( 'google-native:aiplatform/v1beta1:Execution', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/experiment.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/experiment.py index 73892f7902..8bca1dd318 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/experiment.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/experiment.py @@ -236,7 +236,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tensorboard_experiment_id", "tensorboard_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tensorboardExperimentId", "tensorboardId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Experiment, __self__).__init__( 'google-native:aiplatform/v1beta1:Experiment', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/feature_group.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/feature_group.py index ccc75a03d5..0d91006345 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/feature_group.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/feature_group.py @@ -202,7 +202,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["feature_group_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["featureGroupId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FeatureGroup, __self__).__init__( 'google-native:aiplatform/v1beta1:FeatureGroup', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/feature_group_feature.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/feature_group_feature.py index 446ddfda86..098e2b0707 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/feature_group_feature.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/feature_group_feature.py @@ -147,13 +147,11 @@ def location(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="monitoringConfig") + @_utilities.deprecated("""Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to.""") def monitoring_config(self) -> Optional[pulumi.Input['GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfigArgs']]: """ Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to. """ - warnings.warn("""Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to.""", DeprecationWarning) - pulumi.log.warn("""monitoring_config is deprecated: Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to.""") - return pulumi.get(self, "monitoring_config") @monitoring_config.setter @@ -306,7 +304,7 @@ def _internal_init(__self__, __props__.__dict__["monitoring_stats"] = None __props__.__dict__["monitoring_stats_anomalies"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["feature_group_id", "feature_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["featureGroupId", "featureId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FeatureGroupFeature, __self__).__init__( 'google-native:aiplatform/v1beta1:FeatureGroupFeature', @@ -408,13 +406,11 @@ def location(self) -> pulumi.Output[str]: @property @pulumi.getter(name="monitoringConfig") + @_utilities.deprecated("""Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to.""") def monitoring_config(self) -> pulumi.Output['outputs.GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfigResponse']: """ Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to. """ - warnings.warn("""Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to.""", DeprecationWarning) - pulumi.log.warn("""monitoring_config is deprecated: Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to.""") - return pulumi.get(self, "monitoring_config") @property diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/feature_online_store.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/feature_online_store.py index 071fb19f79..66fadc4b77 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/feature_online_store.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/feature_online_store.py @@ -243,7 +243,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["feature_online_store_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["featureOnlineStoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FeatureOnlineStore, __self__).__init__( 'google-native:aiplatform/v1beta1:FeatureOnlineStore', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/feature_store_feature.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/feature_store_feature.py index 866c5d9e54..26d17e3eae 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/feature_store_feature.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/feature_store_feature.py @@ -158,13 +158,11 @@ def location(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="monitoringConfig") + @_utilities.deprecated("""Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to.""") def monitoring_config(self) -> Optional[pulumi.Input['GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfigArgs']]: """ Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to. """ - warnings.warn("""Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to.""", DeprecationWarning) - pulumi.log.warn("""monitoring_config is deprecated: Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to.""") - return pulumi.get(self, "monitoring_config") @monitoring_config.setter @@ -320,7 +318,7 @@ def _internal_init(__self__, __props__.__dict__["monitoring_stats"] = None __props__.__dict__["monitoring_stats_anomalies"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entity_type_id", "feature_id", "featurestore_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entityTypeId", "featureId", "featurestoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FeatureStoreFeature, __self__).__init__( 'google-native:aiplatform/v1beta1:FeatureStoreFeature', @@ -428,13 +426,11 @@ def location(self) -> pulumi.Output[str]: @property @pulumi.getter(name="monitoringConfig") + @_utilities.deprecated("""Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to.""") def monitoring_config(self) -> pulumi.Output['outputs.GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfigResponse']: """ Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to. """ - warnings.warn("""Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to.""", DeprecationWarning) - pulumi.log.warn("""monitoring_config is deprecated: Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to.""") - return pulumi.get(self, "monitoring_config") @property diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/feature_view.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/feature_view.py index 0779a410fb..665a3db269 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/feature_view.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/feature_view.py @@ -279,7 +279,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["feature_online_store_id", "feature_view_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["featureOnlineStoreId", "featureViewId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FeatureView, __self__).__init__( 'google-native:aiplatform/v1beta1:FeatureView', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/featurestore.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/featurestore.py index 906b481ac8..4f39475a70 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/featurestore.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/featurestore.py @@ -223,7 +223,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["featurestore_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["featurestoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Featurestore, __self__).__init__( 'google-native:aiplatform/v1beta1:Featurestore', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/featurestore_entity_type_iam_policy.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/featurestore_entity_type_iam_policy.py index 261f736133..da63525516 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/featurestore_entity_type_iam_policy.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/featurestore_entity_type_iam_policy.py @@ -192,7 +192,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entity_type_id", "featurestore_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entityTypeId", "featurestoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FeaturestoreEntityTypeIamPolicy, __self__).__init__( 'google-native:aiplatform/v1beta1:FeaturestoreEntityTypeIamPolicy', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/featurestore_iam_policy.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/featurestore_iam_policy.py index ebb4b9bf18..4873bfc54e 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/featurestore_iam_policy.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/featurestore_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["featurestore_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["featurestoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FeaturestoreIamPolicy, __self__).__init__( 'google-native:aiplatform/v1beta1:FeaturestoreIamPolicy', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/get_endpoint.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/get_endpoint.py index f2ea012474..efd086a556 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/get_endpoint.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/get_endpoint.py @@ -97,13 +97,11 @@ def display_name(self) -> str: @property @pulumi.getter(name="enablePrivateServiceConnect") + @_utilities.deprecated("""Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") def enable_private_service_connect(self) -> bool: """ Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set. """ - warnings.warn("""Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""", DeprecationWarning) - pulumi.log.warn("""enable_private_service_connect is deprecated: Deprecated: If true, expose the Endpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") - return pulumi.get(self, "enable_private_service_connect") @property diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/get_feature_group_feature.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/get_feature_group_feature.py index 9a933baa76..e59883026c 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/get_feature_group_feature.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/get_feature_group_feature.py @@ -99,13 +99,11 @@ def labels(self) -> Mapping[str, str]: @property @pulumi.getter(name="monitoringConfig") + @_utilities.deprecated("""Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to.""") def monitoring_config(self) -> 'outputs.GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfigResponse': """ Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to. """ - warnings.warn("""Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to.""", DeprecationWarning) - pulumi.log.warn("""monitoring_config is deprecated: Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to.""") - return pulumi.get(self, "monitoring_config") @property diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/get_feature_store_feature.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/get_feature_store_feature.py index 599c01ba4f..bb5f29361d 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/get_feature_store_feature.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/get_feature_store_feature.py @@ -99,13 +99,11 @@ def labels(self) -> Mapping[str, str]: @property @pulumi.getter(name="monitoringConfig") + @_utilities.deprecated("""Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to.""") def monitoring_config(self) -> 'outputs.GoogleCloudAiplatformV1beta1FeaturestoreMonitoringConfigResponse': """ Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to. """ - warnings.warn("""Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to.""", DeprecationWarning) - pulumi.log.warn("""monitoring_config is deprecated: Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to.""") - return pulumi.get(self, "monitoring_config") @property diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/get_index_endpoint.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/get_index_endpoint.py index e5e8f9fc47..adbb9e964d 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/get_index_endpoint.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/get_index_endpoint.py @@ -97,13 +97,11 @@ def display_name(self) -> str: @property @pulumi.getter(name="enablePrivateServiceConnect") + @_utilities.deprecated("""Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") def enable_private_service_connect(self) -> bool: """ Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set. """ - warnings.warn("""Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""", DeprecationWarning) - pulumi.log.warn("""enable_private_service_connect is deprecated: Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") - return pulumi.get(self, "enable_private_service_connect") @property diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/index_endpoint.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/index_endpoint.py index cc0ee63080..282a7532fd 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/index_endpoint.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/index_endpoint.py @@ -90,13 +90,11 @@ def description(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="enablePrivateServiceConnect") + @_utilities.deprecated("""Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") def enable_private_service_connect(self) -> Optional[pulumi.Input[bool]]: """ Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set. """ - warnings.warn("""Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""", DeprecationWarning) - pulumi.log.warn("""enable_private_service_connect is deprecated: Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") - return pulumi.get(self, "enable_private_service_connect") @enable_private_service_connect.setter @@ -366,13 +364,11 @@ def display_name(self) -> pulumi.Output[str]: @property @pulumi.getter(name="enablePrivateServiceConnect") + @_utilities.deprecated("""Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") def enable_private_service_connect(self) -> pulumi.Output[bool]: """ Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set. """ - warnings.warn("""Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""", DeprecationWarning) - pulumi.log.warn("""enable_private_service_connect is deprecated: Optional. Deprecated: If true, expose the IndexEndpoint via private service connect. Only one of the fields, network or enable_private_service_connect, can be set.""") - return pulumi.get(self, "enable_private_service_connect") @property diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/metadata_schema.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/metadata_schema.py index ebcc5fc721..4b4b0aa2ea 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/metadata_schema.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/metadata_schema.py @@ -220,7 +220,7 @@ def _internal_init(__self__, __props__.__dict__["schema_version"] = schema_version __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "metadata_store_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "metadataStoreId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MetadataSchema, __self__).__init__( 'google-native:aiplatform/v1beta1:MetadataSchema', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/model_iam_policy.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/model_iam_policy.py index adf1b91648..176110f9ca 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/model_iam_policy.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/model_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, __props__.__dict__["model_id"] = model_id __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "model_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "modelId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ModelIamPolicy, __self__).__init__( 'google-native:aiplatform/v1beta1:ModelIamPolicy', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/notebook_runtime_template_iam_policy.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/notebook_runtime_template_iam_policy.py index 66d5b93b91..59a2dc5232 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/notebook_runtime_template_iam_policy.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/notebook_runtime_template_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, __props__.__dict__["notebook_runtime_template_id"] = notebook_runtime_template_id __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "notebook_runtime_template_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "notebookRuntimeTemplateId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(NotebookRuntimeTemplateIamPolicy, __self__).__init__( 'google-native:aiplatform/v1beta1:NotebookRuntimeTemplateIamPolicy', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/outputs.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/outputs.py index 7c737db9df..b080cb9539 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/outputs.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/outputs.py @@ -7396,13 +7396,11 @@ def parameter_values(self) -> Mapping[str, str]: @property @pulumi.getter + @_utilities.deprecated("""Deprecated. Use RuntimeConfig.parameter_values instead. The runtime parameters of the PipelineJob. The parameters will be passed into PipelineJob.pipeline_spec to replace the placeholders at runtime. This field is used by pipelines built using `PipelineJob.pipeline_spec.schema_version` 2.0.0 or lower, such as pipelines built using Kubeflow Pipelines SDK 1.8 or lower.""") def parameters(self) -> Mapping[str, str]: """ Deprecated. Use RuntimeConfig.parameter_values instead. The runtime parameters of the PipelineJob. The parameters will be passed into PipelineJob.pipeline_spec to replace the placeholders at runtime. This field is used by pipelines built using `PipelineJob.pipeline_spec.schema_version` 2.0.0 or lower, such as pipelines built using Kubeflow Pipelines SDK 1.8 or lower. """ - warnings.warn("""Deprecated. Use RuntimeConfig.parameter_values instead. The runtime parameters of the PipelineJob. The parameters will be passed into PipelineJob.pipeline_spec to replace the placeholders at runtime. This field is used by pipelines built using `PipelineJob.pipeline_spec.schema_version` 2.0.0 or lower, such as pipelines built using Kubeflow Pipelines SDK 1.8 or lower.""", DeprecationWarning) - pulumi.log.warn("""parameters is deprecated: Deprecated. Use RuntimeConfig.parameter_values instead. The runtime parameters of the PipelineJob. The parameters will be passed into PipelineJob.pipeline_spec to replace the placeholders at runtime. This field is used by pipelines built using `PipelineJob.pipeline_spec.schema_version` 2.0.0 or lower, such as pipelines built using Kubeflow Pipelines SDK 1.8 or lower.""") - return pulumi.get(self, "parameters") @@ -10342,13 +10340,11 @@ def convex_automated_stopping_spec(self) -> 'outputs.GoogleCloudAiplatformV1beta @property @pulumi.getter(name="convexStopConfig") + @_utilities.deprecated("""Deprecated. The automated early stopping using convex stopping rule.""") def convex_stop_config(self) -> 'outputs.GoogleCloudAiplatformV1beta1StudySpecConvexStopConfigResponse': """ Deprecated. The automated early stopping using convex stopping rule. """ - warnings.warn("""Deprecated. The automated early stopping using convex stopping rule.""", DeprecationWarning) - pulumi.log.warn("""convex_stop_config is deprecated: Deprecated. The automated early stopping using convex stopping rule.""") - return pulumi.get(self, "convex_stop_config") @property diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/persistent_resource.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/persistent_resource.py index cc291247f3..0494a200e9 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/persistent_resource.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/persistent_resource.py @@ -285,7 +285,7 @@ def _internal_init(__self__, __props__.__dict__["start_time"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "persistent_resource_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "persistentResourceId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(PersistentResource, __self__).__init__( 'google-native:aiplatform/v1beta1:PersistentResource', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/run.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/run.py index e95a9be5bb..a280a4856d 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/run.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/run.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["experiment_id", "location", "project", "tensorboard_id", "tensorboard_run_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["experimentId", "location", "project", "tensorboardId", "tensorboardRunId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Run, __self__).__init__( 'google-native:aiplatform/v1beta1:Run', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/time_series.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/time_series.py index 549039a3c8..71a6f37b85 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/time_series.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/time_series.py @@ -292,7 +292,7 @@ def _internal_init(__self__, __props__.__dict__["metadata"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["experiment_id", "location", "project", "run_id", "tensorboard_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["experimentId", "location", "project", "runId", "tensorboardId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TimeSeries, __self__).__init__( 'google-native:aiplatform/v1beta1:TimeSeries', diff --git a/sdk/python/pulumi_google_native/aiplatform/v1beta1/trial.py b/sdk/python/pulumi_google_native/aiplatform/v1beta1/trial.py index 939131cef4..562596115c 100644 --- a/sdk/python/pulumi_google_native/aiplatform/v1beta1/trial.py +++ b/sdk/python/pulumi_google_native/aiplatform/v1beta1/trial.py @@ -124,7 +124,7 @@ def _internal_init(__self__, __props__.__dict__["start_time"] = None __props__.__dict__["state"] = None __props__.__dict__["web_access_uris"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "study_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "studyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Trial, __self__).__init__( 'google-native:aiplatform/v1beta1:Trial', diff --git a/sdk/python/pulumi_google_native/alloydb/v1/backup.py b/sdk/python/pulumi_google_native/alloydb/v1/backup.py index 60697530f1..d2e1c0a23b 100644 --- a/sdk/python/pulumi_google_native/alloydb/v1/backup.py +++ b/sdk/python/pulumi_google_native/alloydb/v1/backup.py @@ -314,7 +314,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Backup, __self__).__init__( 'google-native:alloydb/v1:Backup', diff --git a/sdk/python/pulumi_google_native/alloydb/v1/cluster.py b/sdk/python/pulumi_google_native/alloydb/v1/cluster.py index 11fe5c3f8b..2f887ad8a6 100644 --- a/sdk/python/pulumi_google_native/alloydb/v1/cluster.py +++ b/sdk/python/pulumi_google_native/alloydb/v1/cluster.py @@ -101,13 +101,11 @@ def cluster_id(self, value: pulumi.Input[str]): @property @pulumi.getter + @_utilities.deprecated("""Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""") def network(self) -> pulumi.Input[str]: """ The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: "projects/{project}/global/networks/{network_id}". This is required to create a cluster. Deprecated, use network_config.network instead. """ - warnings.warn("""Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""", DeprecationWarning) - pulumi.log.warn("""network is deprecated: Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""") - return pulumi.get(self, "network") @network.setter @@ -415,7 +413,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cluster_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clusterId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Cluster, __self__).__init__( 'google-native:alloydb/v1:Cluster', @@ -622,13 +620,11 @@ def name(self) -> pulumi.Output[str]: @property @pulumi.getter + @_utilities.deprecated("""Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""") def network(self) -> pulumi.Output[str]: """ The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: "projects/{project}/global/networks/{network_id}". This is required to create a cluster. Deprecated, use network_config.network instead. """ - warnings.warn("""Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""", DeprecationWarning) - pulumi.log.warn("""network is deprecated: Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""") - return pulumi.get(self, "network") @property diff --git a/sdk/python/pulumi_google_native/alloydb/v1/get_cluster.py b/sdk/python/pulumi_google_native/alloydb/v1/get_cluster.py index c232535682..66f0e1f0bd 100644 --- a/sdk/python/pulumi_google_native/alloydb/v1/get_cluster.py +++ b/sdk/python/pulumi_google_native/alloydb/v1/get_cluster.py @@ -237,13 +237,11 @@ def name(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""") def network(self) -> str: """ The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: "projects/{project}/global/networks/{network_id}". This is required to create a cluster. Deprecated, use network_config.network instead. """ - warnings.warn("""Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""", DeprecationWarning) - pulumi.log.warn("""network is deprecated: Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""") - return pulumi.get(self, "network") @property diff --git a/sdk/python/pulumi_google_native/alloydb/v1/instance.py b/sdk/python/pulumi_google_native/alloydb/v1/instance.py index a66f9665b3..8a3f170c91 100644 --- a/sdk/python/pulumi_google_native/alloydb/v1/instance.py +++ b/sdk/python/pulumi_google_native/alloydb/v1/instance.py @@ -407,7 +407,7 @@ def _internal_init(__self__, __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None __props__.__dict__["writable_node"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cluster_id", "instance_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clusterId", "instanceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Instance, __self__).__init__( 'google-native:alloydb/v1:Instance', diff --git a/sdk/python/pulumi_google_native/alloydb/v1/user.py b/sdk/python/pulumi_google_native/alloydb/v1/user.py index b1f135707c..33a24924e7 100644 --- a/sdk/python/pulumi_google_native/alloydb/v1/user.py +++ b/sdk/python/pulumi_google_native/alloydb/v1/user.py @@ -215,7 +215,7 @@ def _internal_init(__self__, __props__.__dict__["user_id"] = user_id __props__.__dict__["user_type"] = user_type __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cluster_id", "location", "project", "user_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clusterId", "location", "project", "userId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(User, __self__).__init__( 'google-native:alloydb/v1:User', diff --git a/sdk/python/pulumi_google_native/alloydb/v1alpha/backup.py b/sdk/python/pulumi_google_native/alloydb/v1alpha/backup.py index 43bb728dfa..8f6b5e263a 100644 --- a/sdk/python/pulumi_google_native/alloydb/v1alpha/backup.py +++ b/sdk/python/pulumi_google_native/alloydb/v1alpha/backup.py @@ -315,7 +315,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Backup, __self__).__init__( 'google-native:alloydb/v1alpha:Backup', diff --git a/sdk/python/pulumi_google_native/alloydb/v1alpha/cluster.py b/sdk/python/pulumi_google_native/alloydb/v1alpha/cluster.py index d6d71bb711..0f419f499c 100644 --- a/sdk/python/pulumi_google_native/alloydb/v1alpha/cluster.py +++ b/sdk/python/pulumi_google_native/alloydb/v1alpha/cluster.py @@ -105,13 +105,11 @@ def cluster_id(self, value: pulumi.Input[str]): @property @pulumi.getter + @_utilities.deprecated("""Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""") def network(self) -> pulumi.Input[str]: """ The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: "projects/{project}/global/networks/{network_id}". This is required to create a cluster. Deprecated, use network_config.network instead. """ - warnings.warn("""Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""", DeprecationWarning) - pulumi.log.warn("""network is deprecated: Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""") - return pulumi.get(self, "network") @network.setter @@ -436,7 +434,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cluster_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clusterId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Cluster, __self__).__init__( 'google-native:alloydb/v1alpha:Cluster', @@ -645,13 +643,11 @@ def name(self) -> pulumi.Output[str]: @property @pulumi.getter + @_utilities.deprecated("""Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""") def network(self) -> pulumi.Output[str]: """ The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: "projects/{project}/global/networks/{network_id}". This is required to create a cluster. Deprecated, use network_config.network instead. """ - warnings.warn("""Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""", DeprecationWarning) - pulumi.log.warn("""network is deprecated: Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""") - return pulumi.get(self, "network") @property diff --git a/sdk/python/pulumi_google_native/alloydb/v1alpha/get_cluster.py b/sdk/python/pulumi_google_native/alloydb/v1alpha/get_cluster.py index 95987ff596..a6df1c3f8c 100644 --- a/sdk/python/pulumi_google_native/alloydb/v1alpha/get_cluster.py +++ b/sdk/python/pulumi_google_native/alloydb/v1alpha/get_cluster.py @@ -243,13 +243,11 @@ def name(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""") def network(self) -> str: """ The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: "projects/{project}/global/networks/{network_id}". This is required to create a cluster. Deprecated, use network_config.network instead. """ - warnings.warn("""Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""", DeprecationWarning) - pulumi.log.warn("""network is deprecated: Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""") - return pulumi.get(self, "network") @property diff --git a/sdk/python/pulumi_google_native/alloydb/v1alpha/instance.py b/sdk/python/pulumi_google_native/alloydb/v1alpha/instance.py index d1c54f8311..d2df6c5784 100644 --- a/sdk/python/pulumi_google_native/alloydb/v1alpha/instance.py +++ b/sdk/python/pulumi_google_native/alloydb/v1alpha/instance.py @@ -428,7 +428,7 @@ def _internal_init(__self__, __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None __props__.__dict__["writable_node"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cluster_id", "instance_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clusterId", "instanceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Instance, __self__).__init__( 'google-native:alloydb/v1alpha:Instance', diff --git a/sdk/python/pulumi_google_native/alloydb/v1alpha/user.py b/sdk/python/pulumi_google_native/alloydb/v1alpha/user.py index ca2cbd3b90..4fb7ede12b 100644 --- a/sdk/python/pulumi_google_native/alloydb/v1alpha/user.py +++ b/sdk/python/pulumi_google_native/alloydb/v1alpha/user.py @@ -215,7 +215,7 @@ def _internal_init(__self__, __props__.__dict__["user_id"] = user_id __props__.__dict__["user_type"] = user_type __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cluster_id", "location", "project", "user_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clusterId", "location", "project", "userId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(User, __self__).__init__( 'google-native:alloydb/v1alpha:User', diff --git a/sdk/python/pulumi_google_native/alloydb/v1beta/backup.py b/sdk/python/pulumi_google_native/alloydb/v1beta/backup.py index a31e7fe058..604893cb2e 100644 --- a/sdk/python/pulumi_google_native/alloydb/v1beta/backup.py +++ b/sdk/python/pulumi_google_native/alloydb/v1beta/backup.py @@ -314,7 +314,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Backup, __self__).__init__( 'google-native:alloydb/v1beta:Backup', diff --git a/sdk/python/pulumi_google_native/alloydb/v1beta/cluster.py b/sdk/python/pulumi_google_native/alloydb/v1beta/cluster.py index 3f14693b42..a023ebadce 100644 --- a/sdk/python/pulumi_google_native/alloydb/v1beta/cluster.py +++ b/sdk/python/pulumi_google_native/alloydb/v1beta/cluster.py @@ -101,13 +101,11 @@ def cluster_id(self, value: pulumi.Input[str]): @property @pulumi.getter + @_utilities.deprecated("""Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""") def network(self) -> pulumi.Input[str]: """ The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: "projects/{project}/global/networks/{network_id}". This is required to create a cluster. Deprecated, use network_config.network instead. """ - warnings.warn("""Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""", DeprecationWarning) - pulumi.log.warn("""network is deprecated: Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""") - return pulumi.get(self, "network") @network.setter @@ -415,7 +413,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cluster_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clusterId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Cluster, __self__).__init__( 'google-native:alloydb/v1beta:Cluster', @@ -622,13 +620,11 @@ def name(self) -> pulumi.Output[str]: @property @pulumi.getter + @_utilities.deprecated("""Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""") def network(self) -> pulumi.Output[str]: """ The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: "projects/{project}/global/networks/{network_id}". This is required to create a cluster. Deprecated, use network_config.network instead. """ - warnings.warn("""Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""", DeprecationWarning) - pulumi.log.warn("""network is deprecated: Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""") - return pulumi.get(self, "network") @property diff --git a/sdk/python/pulumi_google_native/alloydb/v1beta/get_cluster.py b/sdk/python/pulumi_google_native/alloydb/v1beta/get_cluster.py index d0d3d2032c..34d927f7ab 100644 --- a/sdk/python/pulumi_google_native/alloydb/v1beta/get_cluster.py +++ b/sdk/python/pulumi_google_native/alloydb/v1beta/get_cluster.py @@ -237,13 +237,11 @@ def name(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""") def network(self) -> str: """ The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: "projects/{project}/global/networks/{network_id}". This is required to create a cluster. Deprecated, use network_config.network instead. """ - warnings.warn("""Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""", DeprecationWarning) - pulumi.log.warn("""network is deprecated: Required. The resource link for the VPC network in which cluster resources are created and from which they are accessible via Private IP. The network must belong to the same project as the cluster. It is specified in the form: \"projects/{project}/global/networks/{network_id}\". This is required to create a cluster. Deprecated, use network_config.network instead.""") - return pulumi.get(self, "network") @property diff --git a/sdk/python/pulumi_google_native/alloydb/v1beta/instance.py b/sdk/python/pulumi_google_native/alloydb/v1beta/instance.py index 38aa0fe80a..14bfcccd15 100644 --- a/sdk/python/pulumi_google_native/alloydb/v1beta/instance.py +++ b/sdk/python/pulumi_google_native/alloydb/v1beta/instance.py @@ -427,7 +427,7 @@ def _internal_init(__self__, __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None __props__.__dict__["writable_node"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cluster_id", "instance_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clusterId", "instanceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Instance, __self__).__init__( 'google-native:alloydb/v1beta:Instance', diff --git a/sdk/python/pulumi_google_native/alloydb/v1beta/user.py b/sdk/python/pulumi_google_native/alloydb/v1beta/user.py index da359d37d1..987da418a8 100644 --- a/sdk/python/pulumi_google_native/alloydb/v1beta/user.py +++ b/sdk/python/pulumi_google_native/alloydb/v1beta/user.py @@ -215,7 +215,7 @@ def _internal_init(__self__, __props__.__dict__["user_id"] = user_id __props__.__dict__["user_type"] = user_type __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cluster_id", "location", "project", "user_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clusterId", "location", "project", "userId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(User, __self__).__init__( 'google-native:alloydb/v1beta:User', diff --git a/sdk/python/pulumi_google_native/analyticshub/v1/data_exchange.py b/sdk/python/pulumi_google_native/analyticshub/v1/data_exchange.py index b7ae95e0f2..abb81b5f07 100644 --- a/sdk/python/pulumi_google_native/analyticshub/v1/data_exchange.py +++ b/sdk/python/pulumi_google_native/analyticshub/v1/data_exchange.py @@ -242,7 +242,7 @@ def _internal_init(__self__, __props__.__dict__["sharing_environment_config"] = sharing_environment_config __props__.__dict__["listing_count"] = None __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["data_exchange_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataExchangeId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DataExchange, __self__).__init__( 'google-native:analyticshub/v1:DataExchange', diff --git a/sdk/python/pulumi_google_native/analyticshub/v1/data_exchange_iam_policy.py b/sdk/python/pulumi_google_native/analyticshub/v1/data_exchange_iam_policy.py index b07d47b8fc..01b2d39390 100644 --- a/sdk/python/pulumi_google_native/analyticshub/v1/data_exchange_iam_policy.py +++ b/sdk/python/pulumi_google_native/analyticshub/v1/data_exchange_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["data_exchange_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataExchangeId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DataExchangeIamPolicy, __self__).__init__( 'google-native:analyticshub/v1:DataExchangeIamPolicy', diff --git a/sdk/python/pulumi_google_native/analyticshub/v1/data_exchange_listing_iam_policy.py b/sdk/python/pulumi_google_native/analyticshub/v1/data_exchange_listing_iam_policy.py index 41df40d7f5..d3ff0cda82 100644 --- a/sdk/python/pulumi_google_native/analyticshub/v1/data_exchange_listing_iam_policy.py +++ b/sdk/python/pulumi_google_native/analyticshub/v1/data_exchange_listing_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["data_exchange_id", "listing_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataExchangeId", "listingId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DataExchangeListingIamPolicy, __self__).__init__( 'google-native:analyticshub/v1:DataExchangeListingIamPolicy', diff --git a/sdk/python/pulumi_google_native/analyticshub/v1/listing.py b/sdk/python/pulumi_google_native/analyticshub/v1/listing.py index 32984c6177..bfc103d837 100644 --- a/sdk/python/pulumi_google_native/analyticshub/v1/listing.py +++ b/sdk/python/pulumi_google_native/analyticshub/v1/listing.py @@ -360,7 +360,7 @@ def _internal_init(__self__, __props__.__dict__["restricted_export_config"] = restricted_export_config __props__.__dict__["name"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["data_exchange_id", "listing_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataExchangeId", "listingId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Listing, __self__).__init__( 'google-native:analyticshub/v1:Listing', diff --git a/sdk/python/pulumi_google_native/analyticshub/v1/subscription_iam_policy.py b/sdk/python/pulumi_google_native/analyticshub/v1/subscription_iam_policy.py index 5b7b5d989a..d0983e2c4e 100644 --- a/sdk/python/pulumi_google_native/analyticshub/v1/subscription_iam_policy.py +++ b/sdk/python/pulumi_google_native/analyticshub/v1/subscription_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["subscription_id"] = subscription_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "subscription_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "subscriptionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SubscriptionIamPolicy, __self__).__init__( 'google-native:analyticshub/v1:SubscriptionIamPolicy', diff --git a/sdk/python/pulumi_google_native/analyticshub/v1beta1/data_exchange.py b/sdk/python/pulumi_google_native/analyticshub/v1beta1/data_exchange.py index 912bfc6caa..a2d2585aac 100644 --- a/sdk/python/pulumi_google_native/analyticshub/v1beta1/data_exchange.py +++ b/sdk/python/pulumi_google_native/analyticshub/v1beta1/data_exchange.py @@ -220,7 +220,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["listing_count"] = None __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["data_exchange_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataExchangeId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DataExchange, __self__).__init__( 'google-native:analyticshub/v1beta1:DataExchange', diff --git a/sdk/python/pulumi_google_native/analyticshub/v1beta1/data_exchange_iam_policy.py b/sdk/python/pulumi_google_native/analyticshub/v1beta1/data_exchange_iam_policy.py index b1788adb0b..4d37833994 100644 --- a/sdk/python/pulumi_google_native/analyticshub/v1beta1/data_exchange_iam_policy.py +++ b/sdk/python/pulumi_google_native/analyticshub/v1beta1/data_exchange_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["data_exchange_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataExchangeId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DataExchangeIamPolicy, __self__).__init__( 'google-native:analyticshub/v1beta1:DataExchangeIamPolicy', diff --git a/sdk/python/pulumi_google_native/analyticshub/v1beta1/data_exchange_listing_iam_policy.py b/sdk/python/pulumi_google_native/analyticshub/v1beta1/data_exchange_listing_iam_policy.py index ecf162aeb4..f5982b8cc5 100644 --- a/sdk/python/pulumi_google_native/analyticshub/v1beta1/data_exchange_listing_iam_policy.py +++ b/sdk/python/pulumi_google_native/analyticshub/v1beta1/data_exchange_listing_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["data_exchange_id", "listing_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataExchangeId", "listingId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DataExchangeListingIamPolicy, __self__).__init__( 'google-native:analyticshub/v1beta1:DataExchangeListingIamPolicy', diff --git a/sdk/python/pulumi_google_native/analyticshub/v1beta1/listing.py b/sdk/python/pulumi_google_native/analyticshub/v1beta1/listing.py index 7a5bba5186..ee278de5a8 100644 --- a/sdk/python/pulumi_google_native/analyticshub/v1beta1/listing.py +++ b/sdk/python/pulumi_google_native/analyticshub/v1beta1/listing.py @@ -360,7 +360,7 @@ def _internal_init(__self__, __props__.__dict__["restricted_export_config"] = restricted_export_config __props__.__dict__["name"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["data_exchange_id", "listing_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataExchangeId", "listingId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Listing, __self__).__init__( 'google-native:analyticshub/v1beta1:Listing', diff --git a/sdk/python/pulumi_google_native/apigateway/v1/api.py b/sdk/python/pulumi_google_native/apigateway/v1/api.py index 0a8459a89e..9ea56e2e3a 100644 --- a/sdk/python/pulumi_google_native/apigateway/v1/api.py +++ b/sdk/python/pulumi_google_native/apigateway/v1/api.py @@ -181,7 +181,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Api, __self__).__init__( 'google-native:apigateway/v1:Api', diff --git a/sdk/python/pulumi_google_native/apigateway/v1/api_config_iam_policy.py b/sdk/python/pulumi_google_native/apigateway/v1/api_config_iam_policy.py index c9fdd63f7f..d44a1bd3d2 100644 --- a/sdk/python/pulumi_google_native/apigateway/v1/api_config_iam_policy.py +++ b/sdk/python/pulumi_google_native/apigateway/v1/api_config_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_id", "config_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiId", "configId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ApiConfigIamPolicy, __self__).__init__( 'google-native:apigateway/v1:ApiConfigIamPolicy', diff --git a/sdk/python/pulumi_google_native/apigateway/v1/api_iam_policy.py b/sdk/python/pulumi_google_native/apigateway/v1/api_iam_policy.py index e289678318..447ad51b63 100644 --- a/sdk/python/pulumi_google_native/apigateway/v1/api_iam_policy.py +++ b/sdk/python/pulumi_google_native/apigateway/v1/api_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ApiIamPolicy, __self__).__init__( 'google-native:apigateway/v1:ApiIamPolicy', diff --git a/sdk/python/pulumi_google_native/apigateway/v1/config.py b/sdk/python/pulumi_google_native/apigateway/v1/config.py index 5a59cbd864..be818ada10 100644 --- a/sdk/python/pulumi_google_native/apigateway/v1/config.py +++ b/sdk/python/pulumi_google_native/apigateway/v1/config.py @@ -260,7 +260,7 @@ def _internal_init(__self__, __props__.__dict__["service_config_id"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_config_id", "api_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiConfigId", "apiId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Config, __self__).__init__( 'google-native:apigateway/v1:Config', diff --git a/sdk/python/pulumi_google_native/apigateway/v1/gateway.py b/sdk/python/pulumi_google_native/apigateway/v1/gateway.py index 071049ada3..12aa2dac40 100644 --- a/sdk/python/pulumi_google_native/apigateway/v1/gateway.py +++ b/sdk/python/pulumi_google_native/apigateway/v1/gateway.py @@ -183,7 +183,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gateway_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gatewayId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Gateway, __self__).__init__( 'google-native:apigateway/v1:Gateway', diff --git a/sdk/python/pulumi_google_native/apigateway/v1/gateway_iam_policy.py b/sdk/python/pulumi_google_native/apigateway/v1/gateway_iam_policy.py index 206795be3e..e86292c46a 100644 --- a/sdk/python/pulumi_google_native/apigateway/v1/gateway_iam_policy.py +++ b/sdk/python/pulumi_google_native/apigateway/v1/gateway_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gateway_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gatewayId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(GatewayIamPolicy, __self__).__init__( 'google-native:apigateway/v1:GatewayIamPolicy', diff --git a/sdk/python/pulumi_google_native/apigateway/v1beta/api.py b/sdk/python/pulumi_google_native/apigateway/v1beta/api.py index c84140b16d..a7ba4947ea 100644 --- a/sdk/python/pulumi_google_native/apigateway/v1beta/api.py +++ b/sdk/python/pulumi_google_native/apigateway/v1beta/api.py @@ -181,7 +181,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Api, __self__).__init__( 'google-native:apigateway/v1beta:Api', diff --git a/sdk/python/pulumi_google_native/apigateway/v1beta/api_config_iam_policy.py b/sdk/python/pulumi_google_native/apigateway/v1beta/api_config_iam_policy.py index 11a0673ab3..f64d625e0d 100644 --- a/sdk/python/pulumi_google_native/apigateway/v1beta/api_config_iam_policy.py +++ b/sdk/python/pulumi_google_native/apigateway/v1beta/api_config_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_id", "config_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiId", "configId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ApiConfigIamPolicy, __self__).__init__( 'google-native:apigateway/v1beta:ApiConfigIamPolicy', diff --git a/sdk/python/pulumi_google_native/apigateway/v1beta/api_iam_policy.py b/sdk/python/pulumi_google_native/apigateway/v1beta/api_iam_policy.py index 355d32d590..a9a5c3a043 100644 --- a/sdk/python/pulumi_google_native/apigateway/v1beta/api_iam_policy.py +++ b/sdk/python/pulumi_google_native/apigateway/v1beta/api_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ApiIamPolicy, __self__).__init__( 'google-native:apigateway/v1beta:ApiIamPolicy', diff --git a/sdk/python/pulumi_google_native/apigateway/v1beta/config.py b/sdk/python/pulumi_google_native/apigateway/v1beta/config.py index 1f76621d29..aeaf4f58d0 100644 --- a/sdk/python/pulumi_google_native/apigateway/v1beta/config.py +++ b/sdk/python/pulumi_google_native/apigateway/v1beta/config.py @@ -280,7 +280,7 @@ def _internal_init(__self__, __props__.__dict__["service_config_id"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_config_id", "api_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiConfigId", "apiId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Config, __self__).__init__( 'google-native:apigateway/v1beta:Config', diff --git a/sdk/python/pulumi_google_native/apigateway/v1beta/gateway.py b/sdk/python/pulumi_google_native/apigateway/v1beta/gateway.py index 92deb7e4da..e32be952ec 100644 --- a/sdk/python/pulumi_google_native/apigateway/v1beta/gateway.py +++ b/sdk/python/pulumi_google_native/apigateway/v1beta/gateway.py @@ -183,7 +183,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gateway_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gatewayId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Gateway, __self__).__init__( 'google-native:apigateway/v1beta:Gateway', diff --git a/sdk/python/pulumi_google_native/apigateway/v1beta/gateway_iam_policy.py b/sdk/python/pulumi_google_native/apigateway/v1beta/gateway_iam_policy.py index c8810bba70..aa3db560bb 100644 --- a/sdk/python/pulumi_google_native/apigateway/v1beta/gateway_iam_policy.py +++ b/sdk/python/pulumi_google_native/apigateway/v1beta/gateway_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gateway_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gatewayId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(GatewayIamPolicy, __self__).__init__( 'google-native:apigateway/v1beta:GatewayIamPolicy', diff --git a/sdk/python/pulumi_google_native/apigee/v1/alias.py b/sdk/python/pulumi_google_native/apigee/v1/alias.py index 5a413f4e11..d0f79d4412 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/alias.py +++ b/sdk/python/pulumi_google_native/apigee/v1/alias.py @@ -298,7 +298,7 @@ def _internal_init(__self__, __props__.__dict__["password"] = password __props__.__dict__["certs_info"] = None __props__.__dict__["type"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environment_id", "format", "keystore_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environmentId", "format", "keystoreId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Alias, __self__).__init__( 'google-native:apigee/v1:Alias', diff --git a/sdk/python/pulumi_google_native/apigee/v1/api.py b/sdk/python/pulumi_google_native/apigee/v1/api.py index 7ac74e0ff4..9cc3ddfbdf 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/api.py +++ b/sdk/python/pulumi_google_native/apigee/v1/api.py @@ -227,7 +227,7 @@ def _internal_init(__self__, __props__.__dict__["meta_data"] = None __props__.__dict__["read_only"] = None __props__.__dict__["revision"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Api, __self__).__init__( 'google-native:apigee/v1:Api', diff --git a/sdk/python/pulumi_google_native/apigee/v1/api_product.py b/sdk/python/pulumi_google_native/apigee/v1/api_product.py index b239d2cd75..c3ebfbc4b6 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/api_product.py +++ b/sdk/python/pulumi_google_native/apigee/v1/api_product.py @@ -443,7 +443,7 @@ def _internal_init(__self__, __props__.__dict__["quota_interval"] = quota_interval __props__.__dict__["quota_time_unit"] = quota_time_unit __props__.__dict__["scopes"] = scopes - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ApiProduct, __self__).__init__( 'google-native:apigee/v1:ApiProduct', diff --git a/sdk/python/pulumi_google_native/apigee/v1/app_group_app.py b/sdk/python/pulumi_google_native/apigee/v1/app_group_app.py index 096e08578b..c154a46d1c 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/app_group_app.py +++ b/sdk/python/pulumi_google_native/apigee/v1/app_group_app.py @@ -283,7 +283,7 @@ def _internal_init(__self__, __props__.__dict__["created_at"] = None __props__.__dict__["credentials"] = None __props__.__dict__["last_modified_at"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["appgroup_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["appgroupId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AppGroupApp, __self__).__init__( 'google-native:apigee/v1:AppGroupApp', diff --git a/sdk/python/pulumi_google_native/apigee/v1/appgroup.py b/sdk/python/pulumi_google_native/apigee/v1/appgroup.py index 93ab25208f..e10612b54c 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/appgroup.py +++ b/sdk/python/pulumi_google_native/apigee/v1/appgroup.py @@ -206,7 +206,7 @@ def _internal_init(__self__, __props__.__dict__["created_at"] = None __props__.__dict__["last_modified_at"] = None __props__.__dict__["status"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Appgroup, __self__).__init__( 'google-native:apigee/v1:Appgroup', diff --git a/sdk/python/pulumi_google_native/apigee/v1/archive_deployment.py b/sdk/python/pulumi_google_native/apigee/v1/archive_deployment.py index 6eab25a55c..99b1bb5600 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/archive_deployment.py +++ b/sdk/python/pulumi_google_native/apigee/v1/archive_deployment.py @@ -159,7 +159,7 @@ def _internal_init(__self__, __props__.__dict__["created_at"] = None __props__.__dict__["operation"] = None __props__.__dict__["updated_at"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environment_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environmentId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ArchiveDeployment, __self__).__init__( 'google-native:apigee/v1:ArchiveDeployment', diff --git a/sdk/python/pulumi_google_native/apigee/v1/canary_evaluation.py b/sdk/python/pulumi_google_native/apigee/v1/canary_evaluation.py index a7de164aa7..b7133fa9c2 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/canary_evaluation.py +++ b/sdk/python/pulumi_google_native/apigee/v1/canary_evaluation.py @@ -213,7 +213,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["state"] = None __props__.__dict__["verdict"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CanaryEvaluation, __self__).__init__( 'google-native:apigee/v1:CanaryEvaluation', diff --git a/sdk/python/pulumi_google_native/apigee/v1/data_collector.py b/sdk/python/pulumi_google_native/apigee/v1/data_collector.py index 34b051dc08..944a4c0e1f 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/data_collector.py +++ b/sdk/python/pulumi_google_native/apigee/v1/data_collector.py @@ -163,7 +163,7 @@ def _internal_init(__self__, __props__.__dict__["type"] = type __props__.__dict__["created_at"] = None __props__.__dict__["last_modified_at"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DataCollector, __self__).__init__( 'google-native:apigee/v1:DataCollector', diff --git a/sdk/python/pulumi_google_native/apigee/v1/datastore.py b/sdk/python/pulumi_google_native/apigee/v1/datastore.py index 33af32362b..4095ffff08 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/datastore.py +++ b/sdk/python/pulumi_google_native/apigee/v1/datastore.py @@ -149,7 +149,7 @@ def _internal_init(__self__, __props__.__dict__["last_update_time"] = None __props__.__dict__["org"] = None __props__.__dict__["self"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Datastore, __self__).__init__( 'google-native:apigee/v1:Datastore', diff --git a/sdk/python/pulumi_google_native/apigee/v1/debug_session.py b/sdk/python/pulumi_google_native/apigee/v1/debug_session.py index 5bdf5c1025..a6c3e156c1 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/debug_session.py +++ b/sdk/python/pulumi_google_native/apigee/v1/debug_session.py @@ -253,7 +253,7 @@ def _internal_init(__self__, __props__.__dict__["tracesize"] = tracesize __props__.__dict__["validity"] = validity __props__.__dict__["create_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_id", "environment_id", "organization_id", "revision_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiId", "environmentId", "organizationId", "revisionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DebugSession, __self__).__init__( 'google-native:apigee/v1:DebugSession', diff --git a/sdk/python/pulumi_google_native/apigee/v1/developer.py b/sdk/python/pulumi_google_native/apigee/v1/developer.py index b4fd68fbbf..ccd8b64fb2 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/developer.py +++ b/sdk/python/pulumi_google_native/apigee/v1/developer.py @@ -292,7 +292,7 @@ def _internal_init(__self__, __props__.__dict__["last_modified_at"] = None __props__.__dict__["organization_name"] = None __props__.__dict__["status"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Developer, __self__).__init__( 'google-native:apigee/v1:Developer', diff --git a/sdk/python/pulumi_google_native/apigee/v1/developer_app.py b/sdk/python/pulumi_google_native/apigee/v1/developer_app.py index 206596f70f..577ac4a68c 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/developer_app.py +++ b/sdk/python/pulumi_google_native/apigee/v1/developer_app.py @@ -286,7 +286,7 @@ def _internal_init(__self__, __props__.__dict__["created_at"] = None __props__.__dict__["credentials"] = None __props__.__dict__["last_modified_at"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["developer_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["developerId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DeveloperApp, __self__).__init__( 'google-native:apigee/v1:DeveloperApp', diff --git a/sdk/python/pulumi_google_native/apigee/v1/endpoint_attachment.py b/sdk/python/pulumi_google_native/apigee/v1/endpoint_attachment.py index 97cacb8792..c028102d58 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/endpoint_attachment.py +++ b/sdk/python/pulumi_google_native/apigee/v1/endpoint_attachment.py @@ -165,7 +165,7 @@ def _internal_init(__self__, __props__.__dict__["connection_state"] = None __props__.__dict__["host"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EndpointAttachment, __self__).__init__( 'google-native:apigee/v1:EndpointAttachment', diff --git a/sdk/python/pulumi_google_native/apigee/v1/entry.py b/sdk/python/pulumi_google_native/apigee/v1/entry.py index 7e2cca3393..94a9ef4c76 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/entry.py +++ b/sdk/python/pulumi_google_native/apigee/v1/entry.py @@ -153,7 +153,7 @@ def _internal_init(__self__, if value is None and not opts.urn: raise TypeError("Missing required property 'value'") __props__.__dict__["value"] = value - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_id", "keyvaluemap_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiId", "keyvaluemapId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Entry, __self__).__init__( 'google-native:apigee/v1:Entry', diff --git a/sdk/python/pulumi_google_native/apigee/v1/envgroup.py b/sdk/python/pulumi_google_native/apigee/v1/envgroup.py index f73b0f8428..a33bfb65b8 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/envgroup.py +++ b/sdk/python/pulumi_google_native/apigee/v1/envgroup.py @@ -124,7 +124,7 @@ def _internal_init(__self__, __props__.__dict__["created_at"] = None __props__.__dict__["last_modified_at"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Envgroup, __self__).__init__( 'google-native:apigee/v1:Envgroup', diff --git a/sdk/python/pulumi_google_native/apigee/v1/envgroup_attachment.py b/sdk/python/pulumi_google_native/apigee/v1/envgroup_attachment.py index c46bfed9b0..998ad6574e 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/envgroup_attachment.py +++ b/sdk/python/pulumi_google_native/apigee/v1/envgroup_attachment.py @@ -139,7 +139,7 @@ def _internal_init(__self__, __props__.__dict__["organization_id"] = organization_id __props__.__dict__["created_at"] = None __props__.__dict__["environment_group_id"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["envgroup_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["envgroupId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EnvgroupAttachment, __self__).__init__( 'google-native:apigee/v1:EnvgroupAttachment', diff --git a/sdk/python/pulumi_google_native/apigee/v1/environment.py b/sdk/python/pulumi_google_native/apigee/v1/environment.py index 73fdf5c575..4cc72d1a3c 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/environment.py +++ b/sdk/python/pulumi_google_native/apigee/v1/environment.py @@ -281,7 +281,7 @@ def _internal_init(__self__, __props__.__dict__["created_at"] = None __props__.__dict__["last_modified_at"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Environment, __self__).__init__( 'google-native:apigee/v1:Environment', diff --git a/sdk/python/pulumi_google_native/apigee/v1/environment_entry.py b/sdk/python/pulumi_google_native/apigee/v1/environment_entry.py index 78fad39587..628d2b6af0 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/environment_entry.py +++ b/sdk/python/pulumi_google_native/apigee/v1/environment_entry.py @@ -153,7 +153,7 @@ def _internal_init(__self__, if value is None and not opts.urn: raise TypeError("Missing required property 'value'") __props__.__dict__["value"] = value - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environment_id", "keyvaluemap_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environmentId", "keyvaluemapId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EnvironmentEntry, __self__).__init__( 'google-native:apigee/v1:EnvironmentEntry', diff --git a/sdk/python/pulumi_google_native/apigee/v1/export.py b/sdk/python/pulumi_google_native/apigee/v1/export.py index d5384d868d..0ef1734baf 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/export.py +++ b/sdk/python/pulumi_google_native/apigee/v1/export.py @@ -229,7 +229,7 @@ def _internal_init(__self__, __props__.__dict__["self"] = None __props__.__dict__["state"] = None __props__.__dict__["updated"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environment_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environmentId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Export, __self__).__init__( 'google-native:apigee/v1:Export', diff --git a/sdk/python/pulumi_google_native/apigee/v1/get_organization.py b/sdk/python/pulumi_google_native/apigee/v1/get_organization.py index dd7eecdc66..ff015e4914 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/get_organization.py +++ b/sdk/python/pulumi_google_native/apigee/v1/get_organization.py @@ -115,13 +115,11 @@ def addons_config(self) -> 'outputs.GoogleCloudApigeeV1AddonsConfigResponse': @property @pulumi.getter(name="analyticsRegion") + @_utilities.deprecated("""Required. DEPRECATED: This field will eventually be deprecated and replaced with a differently-named field. Primary Google Cloud region for analytics data storage. For valid values, see [Create an Apigee organization](https://cloud.google.com/apigee/docs/api-platform/get-started/create-org).""") def analytics_region(self) -> str: """ DEPRECATED: This field will eventually be deprecated and replaced with a differently-named field. Primary Google Cloud region for analytics data storage. For valid values, see [Create an Apigee organization](https://cloud.google.com/apigee/docs/api-platform/get-started/create-org). """ - warnings.warn("""Required. DEPRECATED: This field will eventually be deprecated and replaced with a differently-named field. Primary Google Cloud region for analytics data storage. For valid values, see [Create an Apigee organization](https://cloud.google.com/apigee/docs/api-platform/get-started/create-org).""", DeprecationWarning) - pulumi.log.warn("""analytics_region is deprecated: Required. DEPRECATED: This field will eventually be deprecated and replaced with a differently-named field. Primary Google Cloud region for analytics data storage. For valid values, see [Create an Apigee organization](https://cloud.google.com/apigee/docs/api-platform/get-started/create-org).""") - return pulumi.get(self, "analytics_region") @property @@ -318,13 +316,11 @@ def subscription_plan(self) -> str: @property @pulumi.getter(name="subscriptionType") + @_utilities.deprecated("""Output only. DEPRECATED: This will eventually be replaced by BillingType. Subscription type of the Apigee organization. Valid values include trial (free, limited, and for evaluation purposes only) or paid (full subscription has been purchased). See [Apigee pricing](https://cloud.google.com/apigee/pricing/).""") def subscription_type(self) -> str: """ DEPRECATED: This will eventually be replaced by BillingType. Subscription type of the Apigee organization. Valid values include trial (free, limited, and for evaluation purposes only) or paid (full subscription has been purchased). See [Apigee pricing](https://cloud.google.com/apigee/pricing/). """ - warnings.warn("""Output only. DEPRECATED: This will eventually be replaced by BillingType. Subscription type of the Apigee organization. Valid values include trial (free, limited, and for evaluation purposes only) or paid (full subscription has been purchased). See [Apigee pricing](https://cloud.google.com/apigee/pricing/).""", DeprecationWarning) - pulumi.log.warn("""subscription_type is deprecated: Output only. DEPRECATED: This will eventually be replaced by BillingType. Subscription type of the Apigee organization. Valid values include trial (free, limited, and for evaluation purposes only) or paid (full subscription has been purchased). See [Apigee pricing](https://cloud.google.com/apigee/pricing/).""") - return pulumi.get(self, "subscription_type") @property diff --git a/sdk/python/pulumi_google_native/apigee/v1/get_rate_plan.py b/sdk/python/pulumi_google_native/apigee/v1/get_rate_plan.py index 51e46816e5..357c6a4956 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/get_rate_plan.py +++ b/sdk/python/pulumi_google_native/apigee/v1/get_rate_plan.py @@ -184,13 +184,11 @@ def name(self) -> str: @property @pulumi.getter(name="paymentFundingModel") + @_utilities.deprecated("""DEPRECATED: This field is no longer supported and will eventually be removed when Apigee Hybrid 1.5/1.6 is no longer supported. Instead, use the `billingType` field inside `DeveloperMonetizationConfig` resource. Flag that specifies the billing account type, prepaid or postpaid.""") def payment_funding_model(self) -> str: """ DEPRECATED: This field is no longer supported and will eventually be removed when Apigee Hybrid 1.5/1.6 is no longer supported. Instead, use the `billingType` field inside `DeveloperMonetizationConfig` resource. Flag that specifies the billing account type, prepaid or postpaid. """ - warnings.warn("""DEPRECATED: This field is no longer supported and will eventually be removed when Apigee Hybrid 1.5/1.6 is no longer supported. Instead, use the `billingType` field inside `DeveloperMonetizationConfig` resource. Flag that specifies the billing account type, prepaid or postpaid.""", DeprecationWarning) - pulumi.log.warn("""payment_funding_model is deprecated: DEPRECATED: This field is no longer supported and will eventually be removed when Apigee Hybrid 1.5/1.6 is no longer supported. Instead, use the `billingType` field inside `DeveloperMonetizationConfig` resource. Flag that specifies the billing account type, prepaid or postpaid.""") - return pulumi.get(self, "payment_funding_model") @property diff --git a/sdk/python/pulumi_google_native/apigee/v1/get_security_profile.py b/sdk/python/pulumi_google_native/apigee/v1/get_security_profile.py index 4248747ccc..6c8bb30036 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/get_security_profile.py +++ b/sdk/python/pulumi_google_native/apigee/v1/get_security_profile.py @@ -67,13 +67,11 @@ def description(self) -> str: @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""DEPRECATED: DO NOT USE Display name of the security profile.""") def display_name(self) -> str: """ DEPRECATED: DO NOT USE Display name of the security profile. """ - warnings.warn("""DEPRECATED: DO NOT USE Display name of the security profile.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: DEPRECATED: DO NOT USE Display name of the security profile.""") - return pulumi.get(self, "display_name") @property @@ -134,13 +132,11 @@ def revision_id(self) -> str: @property @pulumi.getter(name="revisionPublishTime") + @_utilities.deprecated("""Output only. DEPRECATED: DO NOT USE The time when revision was published. Once published, the security profile revision cannot be updated further and can be attached to environments.""") def revision_publish_time(self) -> str: """ DEPRECATED: DO NOT USE The time when revision was published. Once published, the security profile revision cannot be updated further and can be attached to environments. """ - warnings.warn("""Output only. DEPRECATED: DO NOT USE The time when revision was published. Once published, the security profile revision cannot be updated further and can be attached to environments.""", DeprecationWarning) - pulumi.log.warn("""revision_publish_time is deprecated: Output only. DEPRECATED: DO NOT USE The time when revision was published. Once published, the security profile revision cannot be updated further and can be attached to environments.""") - return pulumi.get(self, "revision_publish_time") @property diff --git a/sdk/python/pulumi_google_native/apigee/v1/host_query.py b/sdk/python/pulumi_google_native/apigee/v1/host_query.py index fb058d8f81..a8576e6dd8 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/host_query.py +++ b/sdk/python/pulumi_google_native/apigee/v1/host_query.py @@ -317,7 +317,7 @@ def _internal_init(__self__, __props__.__dict__["self"] = None __props__.__dict__["state"] = None __props__.__dict__["updated"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(HostQuery, __self__).__init__( 'google-native:apigee/v1:HostQuery', diff --git a/sdk/python/pulumi_google_native/apigee/v1/host_security_report.py b/sdk/python/pulumi_google_native/apigee/v1/host_security_report.py index fdf4a8e004..a9610d31c0 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/host_security_report.py +++ b/sdk/python/pulumi_google_native/apigee/v1/host_security_report.py @@ -319,7 +319,7 @@ def _internal_init(__self__, __props__.__dict__["self"] = None __props__.__dict__["state"] = None __props__.__dict__["updated"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(HostSecurityReport, __self__).__init__( 'google-native:apigee/v1:HostSecurityReport', diff --git a/sdk/python/pulumi_google_native/apigee/v1/instance.py b/sdk/python/pulumi_google_native/apigee/v1/instance.py index 453f6e68dd..7f2f6b4b85 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/instance.py +++ b/sdk/python/pulumi_google_native/apigee/v1/instance.py @@ -248,7 +248,7 @@ def _internal_init(__self__, __props__.__dict__["runtime_version"] = None __props__.__dict__["service_attachment"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Instance, __self__).__init__( 'google-native:apigee/v1:Instance', diff --git a/sdk/python/pulumi_google_native/apigee/v1/instance_attachment.py b/sdk/python/pulumi_google_native/apigee/v1/instance_attachment.py index 0c0fd56285..2a9b61b03f 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/instance_attachment.py +++ b/sdk/python/pulumi_google_native/apigee/v1/instance_attachment.py @@ -120,7 +120,7 @@ def _internal_init(__self__, __props__.__dict__["organization_id"] = organization_id __props__.__dict__["created_at"] = None __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(InstanceAttachment, __self__).__init__( 'google-native:apigee/v1:InstanceAttachment', diff --git a/sdk/python/pulumi_google_native/apigee/v1/keystore.py b/sdk/python/pulumi_google_native/apigee/v1/keystore.py index 60607cb515..b3f7b33334 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/keystore.py +++ b/sdk/python/pulumi_google_native/apigee/v1/keystore.py @@ -117,7 +117,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'organization_id'") __props__.__dict__["organization_id"] = organization_id __props__.__dict__["aliases"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environment_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environmentId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Keystore, __self__).__init__( 'google-native:apigee/v1:Keystore', diff --git a/sdk/python/pulumi_google_native/apigee/v1/nat_address.py b/sdk/python/pulumi_google_native/apigee/v1/nat_address.py index 5ab5ea6a1c..2b9cd9eb2f 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/nat_address.py +++ b/sdk/python/pulumi_google_native/apigee/v1/nat_address.py @@ -118,7 +118,7 @@ def _internal_init(__self__, __props__.__dict__["organization_id"] = organization_id __props__.__dict__["ip_address"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(NatAddress, __self__).__init__( 'google-native:apigee/v1:NatAddress', diff --git a/sdk/python/pulumi_google_native/apigee/v1/organization.py b/sdk/python/pulumi_google_native/apigee/v1/organization.py index 9e864fc9fe..b6e963a44f 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/organization.py +++ b/sdk/python/pulumi_google_native/apigee/v1/organization.py @@ -95,13 +95,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="analyticsRegion") + @_utilities.deprecated("""Required. DEPRECATED: This field will eventually be deprecated and replaced with a differently-named field. Primary Google Cloud region for analytics data storage. For valid values, see [Create an Apigee organization](https://cloud.google.com/apigee/docs/api-platform/get-started/create-org).""") def analytics_region(self) -> pulumi.Input[str]: """ DEPRECATED: This field will eventually be deprecated and replaced with a differently-named field. Primary Google Cloud region for analytics data storage. For valid values, see [Create an Apigee organization](https://cloud.google.com/apigee/docs/api-platform/get-started/create-org). """ - warnings.warn("""Required. DEPRECATED: This field will eventually be deprecated and replaced with a differently-named field. Primary Google Cloud region for analytics data storage. For valid values, see [Create an Apigee organization](https://cloud.google.com/apigee/docs/api-platform/get-started/create-org).""", DeprecationWarning) - pulumi.log.warn("""analytics_region is deprecated: Required. DEPRECATED: This field will eventually be deprecated and replaced with a differently-named field. Primary Google Cloud region for analytics data storage. For valid values, see [Create an Apigee organization](https://cloud.google.com/apigee/docs/api-platform/get-started/create-org).""") - return pulumi.get(self, "analytics_region") @analytics_region.setter @@ -514,13 +512,11 @@ def addons_config(self) -> pulumi.Output['outputs.GoogleCloudApigeeV1AddonsConfi @property @pulumi.getter(name="analyticsRegion") + @_utilities.deprecated("""Required. DEPRECATED: This field will eventually be deprecated and replaced with a differently-named field. Primary Google Cloud region for analytics data storage. For valid values, see [Create an Apigee organization](https://cloud.google.com/apigee/docs/api-platform/get-started/create-org).""") def analytics_region(self) -> pulumi.Output[str]: """ DEPRECATED: This field will eventually be deprecated and replaced with a differently-named field. Primary Google Cloud region for analytics data storage. For valid values, see [Create an Apigee organization](https://cloud.google.com/apigee/docs/api-platform/get-started/create-org). """ - warnings.warn("""Required. DEPRECATED: This field will eventually be deprecated and replaced with a differently-named field. Primary Google Cloud region for analytics data storage. For valid values, see [Create an Apigee organization](https://cloud.google.com/apigee/docs/api-platform/get-started/create-org).""", DeprecationWarning) - pulumi.log.warn("""analytics_region is deprecated: Required. DEPRECATED: This field will eventually be deprecated and replaced with a differently-named field. Primary Google Cloud region for analytics data storage. For valid values, see [Create an Apigee organization](https://cloud.google.com/apigee/docs/api-platform/get-started/create-org).""") - return pulumi.get(self, "analytics_region") @property @@ -725,13 +721,11 @@ def subscription_plan(self) -> pulumi.Output[str]: @property @pulumi.getter(name="subscriptionType") + @_utilities.deprecated("""Output only. DEPRECATED: This will eventually be replaced by BillingType. Subscription type of the Apigee organization. Valid values include trial (free, limited, and for evaluation purposes only) or paid (full subscription has been purchased). See [Apigee pricing](https://cloud.google.com/apigee/pricing/).""") def subscription_type(self) -> pulumi.Output[str]: """ DEPRECATED: This will eventually be replaced by BillingType. Subscription type of the Apigee organization. Valid values include trial (free, limited, and for evaluation purposes only) or paid (full subscription has been purchased). See [Apigee pricing](https://cloud.google.com/apigee/pricing/). """ - warnings.warn("""Output only. DEPRECATED: This will eventually be replaced by BillingType. Subscription type of the Apigee organization. Valid values include trial (free, limited, and for evaluation purposes only) or paid (full subscription has been purchased). See [Apigee pricing](https://cloud.google.com/apigee/pricing/).""", DeprecationWarning) - pulumi.log.warn("""subscription_type is deprecated: Output only. DEPRECATED: This will eventually be replaced by BillingType. Subscription type of the Apigee organization. Valid values include trial (free, limited, and for evaluation purposes only) or paid (full subscription has been purchased). See [Apigee pricing](https://cloud.google.com/apigee/pricing/).""") - return pulumi.get(self, "subscription_type") @property diff --git a/sdk/python/pulumi_google_native/apigee/v1/organization_environment_iam_policy.py b/sdk/python/pulumi_google_native/apigee/v1/organization_environment_iam_policy.py index 8a363b0adb..bbd843dfff 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/organization_environment_iam_policy.py +++ b/sdk/python/pulumi_google_native/apigee/v1/organization_environment_iam_policy.py @@ -203,7 +203,7 @@ def _internal_init(__self__, __props__.__dict__["organization_id"] = organization_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environment_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environmentId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationEnvironmentIamPolicy, __self__).__init__( 'google-native:apigee/v1:OrganizationEnvironmentIamPolicy', diff --git a/sdk/python/pulumi_google_native/apigee/v1/override.py b/sdk/python/pulumi_google_native/apigee/v1/override.py index 44e653ced6..46c5b9d8d2 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/override.py +++ b/sdk/python/pulumi_google_native/apigee/v1/override.py @@ -159,7 +159,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'organization_id'") __props__.__dict__["organization_id"] = organization_id __props__.__dict__["sampling_config"] = sampling_config - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environment_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environmentId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Override, __self__).__init__( 'google-native:apigee/v1:Override', diff --git a/sdk/python/pulumi_google_native/apigee/v1/query.py b/sdk/python/pulumi_google_native/apigee/v1/query.py index ab4a50cde2..d07c392815 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/query.py +++ b/sdk/python/pulumi_google_native/apigee/v1/query.py @@ -333,7 +333,7 @@ def _internal_init(__self__, __props__.__dict__["self"] = None __props__.__dict__["state"] = None __props__.__dict__["updated"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environment_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environmentId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Query, __self__).__init__( 'google-native:apigee/v1:Query', diff --git a/sdk/python/pulumi_google_native/apigee/v1/rate_plan.py b/sdk/python/pulumi_google_native/apigee/v1/rate_plan.py index 586388f18f..8eae7d84b6 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/rate_plan.py +++ b/sdk/python/pulumi_google_native/apigee/v1/rate_plan.py @@ -232,13 +232,11 @@ def fixed_recurring_fee(self, value: Optional[pulumi.Input['GoogleTypeMoneyArgs' @property @pulumi.getter(name="paymentFundingModel") + @_utilities.deprecated("""DEPRECATED: This field is no longer supported and will eventually be removed when Apigee Hybrid 1.5/1.6 is no longer supported. Instead, use the `billingType` field inside `DeveloperMonetizationConfig` resource. Flag that specifies the billing account type, prepaid or postpaid.""") def payment_funding_model(self) -> Optional[pulumi.Input['RatePlanPaymentFundingModel']]: """ DEPRECATED: This field is no longer supported and will eventually be removed when Apigee Hybrid 1.5/1.6 is no longer supported. Instead, use the `billingType` field inside `DeveloperMonetizationConfig` resource. Flag that specifies the billing account type, prepaid or postpaid. """ - warnings.warn("""DEPRECATED: This field is no longer supported and will eventually be removed when Apigee Hybrid 1.5/1.6 is no longer supported. Instead, use the `billingType` field inside `DeveloperMonetizationConfig` resource. Flag that specifies the billing account type, prepaid or postpaid.""", DeprecationWarning) - pulumi.log.warn("""payment_funding_model is deprecated: DEPRECATED: This field is no longer supported and will eventually be removed when Apigee Hybrid 1.5/1.6 is no longer supported. Instead, use the `billingType` field inside `DeveloperMonetizationConfig` resource. Flag that specifies the billing account type, prepaid or postpaid.""") - return pulumi.get(self, "payment_funding_model") @payment_funding_model.setter @@ -430,7 +428,7 @@ def _internal_init(__self__, __props__.__dict__["created_at"] = None __props__.__dict__["last_modified_at"] = None __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiproduct_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiproductId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RatePlan, __self__).__init__( 'google-native:apigee/v1:RatePlan', @@ -593,13 +591,11 @@ def organization_id(self) -> pulumi.Output[str]: @property @pulumi.getter(name="paymentFundingModel") + @_utilities.deprecated("""DEPRECATED: This field is no longer supported and will eventually be removed when Apigee Hybrid 1.5/1.6 is no longer supported. Instead, use the `billingType` field inside `DeveloperMonetizationConfig` resource. Flag that specifies the billing account type, prepaid or postpaid.""") def payment_funding_model(self) -> pulumi.Output[str]: """ DEPRECATED: This field is no longer supported and will eventually be removed when Apigee Hybrid 1.5/1.6 is no longer supported. Instead, use the `billingType` field inside `DeveloperMonetizationConfig` resource. Flag that specifies the billing account type, prepaid or postpaid. """ - warnings.warn("""DEPRECATED: This field is no longer supported and will eventually be removed when Apigee Hybrid 1.5/1.6 is no longer supported. Instead, use the `billingType` field inside `DeveloperMonetizationConfig` resource. Flag that specifies the billing account type, prepaid or postpaid.""", DeprecationWarning) - pulumi.log.warn("""payment_funding_model is deprecated: DEPRECATED: This field is no longer supported and will eventually be removed when Apigee Hybrid 1.5/1.6 is no longer supported. Instead, use the `billingType` field inside `DeveloperMonetizationConfig` resource. Flag that specifies the billing account type, prepaid or postpaid.""") - return pulumi.get(self, "payment_funding_model") @property diff --git a/sdk/python/pulumi_google_native/apigee/v1/reference.py b/sdk/python/pulumi_google_native/apigee/v1/reference.py index fbd12c0e1d..9cc2273e13 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/reference.py +++ b/sdk/python/pulumi_google_native/apigee/v1/reference.py @@ -177,7 +177,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'refers'") __props__.__dict__["refers"] = refers __props__.__dict__["resource_type"] = resource_type - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environment_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environmentId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Reference, __self__).__init__( 'google-native:apigee/v1:Reference', diff --git a/sdk/python/pulumi_google_native/apigee/v1/report.py b/sdk/python/pulumi_google_native/apigee/v1/report.py index 9a6c2edbc8..f912809b73 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/report.py +++ b/sdk/python/pulumi_google_native/apigee/v1/report.py @@ -428,7 +428,7 @@ def _internal_init(__self__, __props__.__dict__["last_modified_at"] = None __props__.__dict__["last_viewed_at"] = None __props__.__dict__["organization"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Report, __self__).__init__( 'google-native:apigee/v1:Report', diff --git a/sdk/python/pulumi_google_native/apigee/v1/resourcefile.py b/sdk/python/pulumi_google_native/apigee/v1/resourcefile.py index 10bde1134e..1b54669200 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/resourcefile.py +++ b/sdk/python/pulumi_google_native/apigee/v1/resourcefile.py @@ -220,7 +220,7 @@ def _internal_init(__self__, if type is None and not opts.urn: raise TypeError("Missing required property 'type'") __props__.__dict__["type"] = type - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environment_id", "name", "organization_id", "type"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environmentId", "name", "organizationId", "type"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Resourcefile, __self__).__init__( 'google-native:apigee/v1:Resourcefile', diff --git a/sdk/python/pulumi_google_native/apigee/v1/security_action.py b/sdk/python/pulumi_google_native/apigee/v1/security_action.py index 5bdd0b10cc..aece641309 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/security_action.py +++ b/sdk/python/pulumi_google_native/apigee/v1/security_action.py @@ -308,7 +308,7 @@ def _internal_init(__self__, __props__.__dict__["ttl"] = ttl __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environment_id", "organization_id", "security_action_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environmentId", "organizationId", "securityActionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SecurityAction, __self__).__init__( 'google-native:apigee/v1:SecurityAction', diff --git a/sdk/python/pulumi_google_native/apigee/v1/security_profile.py b/sdk/python/pulumi_google_native/apigee/v1/security_profile.py index fae4accc39..63795632d2 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/security_profile.py +++ b/sdk/python/pulumi_google_native/apigee/v1/security_profile.py @@ -98,13 +98,11 @@ def description(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""DEPRECATED: DO NOT USE Display name of the security profile.""") def display_name(self) -> Optional[pulumi.Input[str]]: """ DEPRECATED: DO NOT USE Display name of the security profile. """ - warnings.warn("""DEPRECATED: DO NOT USE Display name of the security profile.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: DEPRECATED: DO NOT USE Display name of the security profile.""") - return pulumi.get(self, "display_name") @display_name.setter @@ -236,7 +234,7 @@ def _internal_init(__self__, __props__.__dict__["revision_id"] = None __props__.__dict__["revision_publish_time"] = None __props__.__dict__["revision_update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id", "security_profile_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId", "securityProfileId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SecurityProfile, __self__).__init__( 'google-native:apigee/v1:SecurityProfile', @@ -286,13 +284,11 @@ def description(self) -> pulumi.Output[str]: @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""DEPRECATED: DO NOT USE Display name of the security profile.""") def display_name(self) -> pulumi.Output[str]: """ DEPRECATED: DO NOT USE Display name of the security profile. """ - warnings.warn("""DEPRECATED: DO NOT USE Display name of the security profile.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: DEPRECATED: DO NOT USE Display name of the security profile.""") - return pulumi.get(self, "display_name") @property @@ -358,13 +354,11 @@ def revision_id(self) -> pulumi.Output[str]: @property @pulumi.getter(name="revisionPublishTime") + @_utilities.deprecated("""Output only. DEPRECATED: DO NOT USE The time when revision was published. Once published, the security profile revision cannot be updated further and can be attached to environments.""") def revision_publish_time(self) -> pulumi.Output[str]: """ DEPRECATED: DO NOT USE The time when revision was published. Once published, the security profile revision cannot be updated further and can be attached to environments. """ - warnings.warn("""Output only. DEPRECATED: DO NOT USE The time when revision was published. Once published, the security profile revision cannot be updated further and can be attached to environments.""", DeprecationWarning) - pulumi.log.warn("""revision_publish_time is deprecated: Output only. DEPRECATED: DO NOT USE The time when revision was published. Once published, the security profile revision cannot be updated further and can be attached to environments.""") - return pulumi.get(self, "revision_publish_time") @property diff --git a/sdk/python/pulumi_google_native/apigee/v1/security_report.py b/sdk/python/pulumi_google_native/apigee/v1/security_report.py index 7d7d72912a..b2aa517116 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/security_report.py +++ b/sdk/python/pulumi_google_native/apigee/v1/security_report.py @@ -335,7 +335,7 @@ def _internal_init(__self__, __props__.__dict__["self"] = None __props__.__dict__["state"] = None __props__.__dict__["updated"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environment_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environmentId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SecurityReport, __self__).__init__( 'google-native:apigee/v1:SecurityReport', diff --git a/sdk/python/pulumi_google_native/apigee/v1/sharedflow.py b/sdk/python/pulumi_google_native/apigee/v1/sharedflow.py index c338228937..32b494dc7c 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/sharedflow.py +++ b/sdk/python/pulumi_google_native/apigee/v1/sharedflow.py @@ -185,7 +185,7 @@ def _internal_init(__self__, __props__.__dict__["latest_revision_id"] = None __props__.__dict__["meta_data"] = None __props__.__dict__["revision"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["action", "name", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["action", "name", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Sharedflow, __self__).__init__( 'google-native:apigee/v1:Sharedflow', diff --git a/sdk/python/pulumi_google_native/apigee/v1/subscription.py b/sdk/python/pulumi_google_native/apigee/v1/subscription.py index f7c641dba3..22ec07bc0a 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/subscription.py +++ b/sdk/python/pulumi_google_native/apigee/v1/subscription.py @@ -165,7 +165,7 @@ def _internal_init(__self__, __props__.__dict__["created_at"] = None __props__.__dict__["last_modified_at"] = None __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["developer_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["developerId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Subscription, __self__).__init__( 'google-native:apigee/v1:Subscription', diff --git a/sdk/python/pulumi_google_native/apigee/v1/target_server.py b/sdk/python/pulumi_google_native/apigee/v1/target_server.py index 7d468f81b0..02afe4571d 100644 --- a/sdk/python/pulumi_google_native/apigee/v1/target_server.py +++ b/sdk/python/pulumi_google_native/apigee/v1/target_server.py @@ -241,7 +241,7 @@ def _internal_init(__self__, __props__.__dict__["port"] = port __props__.__dict__["protocol"] = protocol __props__.__dict__["s_sl_info"] = s_sl_info - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environment_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environmentId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TargetServer, __self__).__init__( 'google-native:apigee/v1:TargetServer', diff --git a/sdk/python/pulumi_google_native/apigeeregistry/v1/api.py b/sdk/python/pulumi_google_native/apigeeregistry/v1/api.py index 7a2a463a44..2cc8f336ee 100644 --- a/sdk/python/pulumi_google_native/apigeeregistry/v1/api.py +++ b/sdk/python/pulumi_google_native/apigeeregistry/v1/api.py @@ -277,7 +277,7 @@ def _internal_init(__self__, __props__.__dict__["recommended_version"] = recommended_version __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Api, __self__).__init__( 'google-native:apigeeregistry/v1:Api', diff --git a/sdk/python/pulumi_google_native/apigeeregistry/v1/api_artifact_iam_policy.py b/sdk/python/pulumi_google_native/apigeeregistry/v1/api_artifact_iam_policy.py index a06241c208..bc195f1a5a 100644 --- a/sdk/python/pulumi_google_native/apigeeregistry/v1/api_artifact_iam_policy.py +++ b/sdk/python/pulumi_google_native/apigeeregistry/v1/api_artifact_iam_policy.py @@ -192,7 +192,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_id", "artifact_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiId", "artifactId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ApiArtifactIamPolicy, __self__).__init__( 'google-native:apigeeregistry/v1:ApiArtifactIamPolicy', diff --git a/sdk/python/pulumi_google_native/apigeeregistry/v1/api_deployment_iam_policy.py b/sdk/python/pulumi_google_native/apigeeregistry/v1/api_deployment_iam_policy.py index e10f83ada0..baacad3794 100644 --- a/sdk/python/pulumi_google_native/apigeeregistry/v1/api_deployment_iam_policy.py +++ b/sdk/python/pulumi_google_native/apigeeregistry/v1/api_deployment_iam_policy.py @@ -192,7 +192,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_id", "deployment_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiId", "deploymentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ApiDeploymentIamPolicy, __self__).__init__( 'google-native:apigeeregistry/v1:ApiDeploymentIamPolicy', diff --git a/sdk/python/pulumi_google_native/apigeeregistry/v1/api_iam_policy.py b/sdk/python/pulumi_google_native/apigeeregistry/v1/api_iam_policy.py index 5256d21cf2..414aaabc56 100644 --- a/sdk/python/pulumi_google_native/apigeeregistry/v1/api_iam_policy.py +++ b/sdk/python/pulumi_google_native/apigeeregistry/v1/api_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ApiIamPolicy, __self__).__init__( 'google-native:apigeeregistry/v1:ApiIamPolicy', diff --git a/sdk/python/pulumi_google_native/apigeeregistry/v1/api_version_artifact_iam_policy.py b/sdk/python/pulumi_google_native/apigeeregistry/v1/api_version_artifact_iam_policy.py index 681becfb99..a23a328447 100644 --- a/sdk/python/pulumi_google_native/apigeeregistry/v1/api_version_artifact_iam_policy.py +++ b/sdk/python/pulumi_google_native/apigeeregistry/v1/api_version_artifact_iam_policy.py @@ -208,7 +208,7 @@ def _internal_init(__self__, if version_id is None and not opts.urn: raise TypeError("Missing required property 'version_id'") __props__.__dict__["version_id"] = version_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_id", "artifact_id", "location", "project", "version_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiId", "artifactId", "location", "project", "versionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ApiVersionArtifactIamPolicy, __self__).__init__( 'google-native:apigeeregistry/v1:ApiVersionArtifactIamPolicy', diff --git a/sdk/python/pulumi_google_native/apigeeregistry/v1/api_version_iam_policy.py b/sdk/python/pulumi_google_native/apigeeregistry/v1/api_version_iam_policy.py index bf2ddbb93b..7896de8ebb 100644 --- a/sdk/python/pulumi_google_native/apigeeregistry/v1/api_version_iam_policy.py +++ b/sdk/python/pulumi_google_native/apigeeregistry/v1/api_version_iam_policy.py @@ -192,7 +192,7 @@ def _internal_init(__self__, if version_id is None and not opts.urn: raise TypeError("Missing required property 'version_id'") __props__.__dict__["version_id"] = version_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_id", "location", "project", "version_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiId", "location", "project", "versionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ApiVersionIamPolicy, __self__).__init__( 'google-native:apigeeregistry/v1:ApiVersionIamPolicy', diff --git a/sdk/python/pulumi_google_native/apigeeregistry/v1/api_version_spec_artifact_iam_policy.py b/sdk/python/pulumi_google_native/apigeeregistry/v1/api_version_spec_artifact_iam_policy.py index 80d64f2b0f..575b3ed588 100644 --- a/sdk/python/pulumi_google_native/apigeeregistry/v1/api_version_spec_artifact_iam_policy.py +++ b/sdk/python/pulumi_google_native/apigeeregistry/v1/api_version_spec_artifact_iam_policy.py @@ -224,7 +224,7 @@ def _internal_init(__self__, if version_id is None and not opts.urn: raise TypeError("Missing required property 'version_id'") __props__.__dict__["version_id"] = version_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_id", "artifact_id", "location", "project", "spec_id", "version_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiId", "artifactId", "location", "project", "specId", "versionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ApiVersionSpecArtifactIamPolicy, __self__).__init__( 'google-native:apigeeregistry/v1:ApiVersionSpecArtifactIamPolicy', diff --git a/sdk/python/pulumi_google_native/apigeeregistry/v1/api_version_spec_iam_policy.py b/sdk/python/pulumi_google_native/apigeeregistry/v1/api_version_spec_iam_policy.py index 788e80b71d..8ecb023725 100644 --- a/sdk/python/pulumi_google_native/apigeeregistry/v1/api_version_spec_iam_policy.py +++ b/sdk/python/pulumi_google_native/apigeeregistry/v1/api_version_spec_iam_policy.py @@ -208,7 +208,7 @@ def _internal_init(__self__, if version_id is None and not opts.urn: raise TypeError("Missing required property 'version_id'") __props__.__dict__["version_id"] = version_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_id", "location", "project", "spec_id", "version_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiId", "location", "project", "specId", "versionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ApiVersionSpecIamPolicy, __self__).__init__( 'google-native:apigeeregistry/v1:ApiVersionSpecIamPolicy', diff --git a/sdk/python/pulumi_google_native/apigeeregistry/v1/artifact.py b/sdk/python/pulumi_google_native/apigeeregistry/v1/artifact.py index 76577ca9bb..364a8d359e 100644 --- a/sdk/python/pulumi_google_native/apigeeregistry/v1/artifact.py +++ b/sdk/python/pulumi_google_native/apigeeregistry/v1/artifact.py @@ -267,7 +267,7 @@ def _internal_init(__self__, __props__.__dict__["hash"] = None __props__.__dict__["size_bytes"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_id", "artifact_id", "location", "project", "spec_id", "version_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiId", "artifactId", "location", "project", "specId", "versionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Artifact, __self__).__init__( 'google-native:apigeeregistry/v1:Artifact', diff --git a/sdk/python/pulumi_google_native/apigeeregistry/v1/artifact_iam_policy.py b/sdk/python/pulumi_google_native/apigeeregistry/v1/artifact_iam_policy.py index b28194f8b7..165e4e9d69 100644 --- a/sdk/python/pulumi_google_native/apigeeregistry/v1/artifact_iam_policy.py +++ b/sdk/python/pulumi_google_native/apigeeregistry/v1/artifact_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["artifact_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["artifactId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ArtifactIamPolicy, __self__).__init__( 'google-native:apigeeregistry/v1:ArtifactIamPolicy', diff --git a/sdk/python/pulumi_google_native/apigeeregistry/v1/deployment.py b/sdk/python/pulumi_google_native/apigeeregistry/v1/deployment.py index 8a8450a83b..574dadf073 100644 --- a/sdk/python/pulumi_google_native/apigeeregistry/v1/deployment.py +++ b/sdk/python/pulumi_google_native/apigeeregistry/v1/deployment.py @@ -335,7 +335,7 @@ def _internal_init(__self__, __props__.__dict__["revision_create_time"] = None __props__.__dict__["revision_id"] = None __props__.__dict__["revision_update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_deployment_id", "api_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiDeploymentId", "apiId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Deployment, __self__).__init__( 'google-native:apigeeregistry/v1:Deployment', diff --git a/sdk/python/pulumi_google_native/apigeeregistry/v1/deployment_artifact.py b/sdk/python/pulumi_google_native/apigeeregistry/v1/deployment_artifact.py index a0ccd0d369..0c0b0419cf 100644 --- a/sdk/python/pulumi_google_native/apigeeregistry/v1/deployment_artifact.py +++ b/sdk/python/pulumi_google_native/apigeeregistry/v1/deployment_artifact.py @@ -251,7 +251,7 @@ def _internal_init(__self__, __props__.__dict__["hash"] = None __props__.__dict__["size_bytes"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_id", "artifact_id", "deployment_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiId", "artifactId", "deploymentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DeploymentArtifact, __self__).__init__( 'google-native:apigeeregistry/v1:DeploymentArtifact', diff --git a/sdk/python/pulumi_google_native/apigeeregistry/v1/instance.py b/sdk/python/pulumi_google_native/apigeeregistry/v1/instance.py index fb3d235cb9..f8fb6d5eca 100644 --- a/sdk/python/pulumi_google_native/apigeeregistry/v1/instance.py +++ b/sdk/python/pulumi_google_native/apigeeregistry/v1/instance.py @@ -165,7 +165,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["state_message"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Instance, __self__).__init__( 'google-native:apigeeregistry/v1:Instance', diff --git a/sdk/python/pulumi_google_native/apigeeregistry/v1/instance_iam_policy.py b/sdk/python/pulumi_google_native/apigeeregistry/v1/instance_iam_policy.py index dc088d3745..547390cccb 100644 --- a/sdk/python/pulumi_google_native/apigeeregistry/v1/instance_iam_policy.py +++ b/sdk/python/pulumi_google_native/apigeeregistry/v1/instance_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(InstanceIamPolicy, __self__).__init__( 'google-native:apigeeregistry/v1:InstanceIamPolicy', diff --git a/sdk/python/pulumi_google_native/apigeeregistry/v1/spec.py b/sdk/python/pulumi_google_native/apigeeregistry/v1/spec.py index 11e4c4c002..2677eda283 100644 --- a/sdk/python/pulumi_google_native/apigeeregistry/v1/spec.py +++ b/sdk/python/pulumi_google_native/apigeeregistry/v1/spec.py @@ -313,7 +313,7 @@ def _internal_init(__self__, __props__.__dict__["revision_id"] = None __props__.__dict__["revision_update_time"] = None __props__.__dict__["size_bytes"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_id", "api_spec_id", "location", "project", "version_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiId", "apiSpecId", "location", "project", "versionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Spec, __self__).__init__( 'google-native:apigeeregistry/v1:Spec', diff --git a/sdk/python/pulumi_google_native/apigeeregistry/v1/version.py b/sdk/python/pulumi_google_native/apigeeregistry/v1/version.py index 4dc660b7e9..36d8983555 100644 --- a/sdk/python/pulumi_google_native/apigeeregistry/v1/version.py +++ b/sdk/python/pulumi_google_native/apigeeregistry/v1/version.py @@ -273,7 +273,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = state __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_id", "api_version_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiId", "apiVersionId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Version, __self__).__init__( 'google-native:apigeeregistry/v1:Version', diff --git a/sdk/python/pulumi_google_native/apigeeregistry/v1/version_artifact.py b/sdk/python/pulumi_google_native/apigeeregistry/v1/version_artifact.py index 858605c532..7a783633d0 100644 --- a/sdk/python/pulumi_google_native/apigeeregistry/v1/version_artifact.py +++ b/sdk/python/pulumi_google_native/apigeeregistry/v1/version_artifact.py @@ -251,7 +251,7 @@ def _internal_init(__self__, __props__.__dict__["hash"] = None __props__.__dict__["size_bytes"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["api_id", "artifact_id", "location", "project", "version_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["apiId", "artifactId", "location", "project", "versionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(VersionArtifact, __self__).__init__( 'google-native:apigeeregistry/v1:VersionArtifact', diff --git a/sdk/python/pulumi_google_native/appengine/v1/authorized_certificate.py b/sdk/python/pulumi_google_native/appengine/v1/authorized_certificate.py index d9640ae777..979a765841 100644 --- a/sdk/python/pulumi_google_native/appengine/v1/authorized_certificate.py +++ b/sdk/python/pulumi_google_native/appengine/v1/authorized_certificate.py @@ -130,7 +130,7 @@ def _internal_init(__self__, __props__.__dict__["managed_certificate"] = None __props__.__dict__["name"] = None __props__.__dict__["visible_domain_mappings"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["app_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["appId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AuthorizedCertificate, __self__).__init__( 'google-native:appengine/v1:AuthorizedCertificate', diff --git a/sdk/python/pulumi_google_native/appengine/v1/domain_mapping.py b/sdk/python/pulumi_google_native/appengine/v1/domain_mapping.py index 0fa15d3528..af7fc8290d 100644 --- a/sdk/python/pulumi_google_native/appengine/v1/domain_mapping.py +++ b/sdk/python/pulumi_google_native/appengine/v1/domain_mapping.py @@ -147,7 +147,7 @@ def _internal_init(__self__, __props__.__dict__["ssl_settings"] = ssl_settings __props__.__dict__["name"] = None __props__.__dict__["resource_records"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["app_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["appId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DomainMapping, __self__).__init__( 'google-native:appengine/v1:DomainMapping', diff --git a/sdk/python/pulumi_google_native/appengine/v1/get_version.py b/sdk/python/pulumi_google_native/appengine/v1/get_version.py index bc065159bb..c967fd4f01 100644 --- a/sdk/python/pulumi_google_native/appengine/v1/get_version.py +++ b/sdk/python/pulumi_google_native/appengine/v1/get_version.py @@ -466,13 +466,11 @@ def vpc_access_connector(self) -> 'outputs.VpcAccessConnectorResponse': @property @pulumi.getter + @_utilities.deprecated("""The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.""") def zones(self) -> Sequence[str]: """ The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated. """ - warnings.warn("""The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.""", DeprecationWarning) - pulumi.log.warn("""zones is deprecated: The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.""") - return pulumi.get(self, "zones") diff --git a/sdk/python/pulumi_google_native/appengine/v1/ingress_rule.py b/sdk/python/pulumi_google_native/appengine/v1/ingress_rule.py index 6843dc7a3e..51be7532ee 100644 --- a/sdk/python/pulumi_google_native/appengine/v1/ingress_rule.py +++ b/sdk/python/pulumi_google_native/appengine/v1/ingress_rule.py @@ -163,7 +163,7 @@ def _internal_init(__self__, __props__.__dict__["description"] = description __props__.__dict__["priority"] = priority __props__.__dict__["source_range"] = source_range - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["app_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["appId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(IngressRule, __self__).__init__( 'google-native:appengine/v1:IngressRule', diff --git a/sdk/python/pulumi_google_native/appengine/v1/version.py b/sdk/python/pulumi_google_native/appengine/v1/version.py index 120ef462c0..fb5708a7fe 100644 --- a/sdk/python/pulumi_google_native/appengine/v1/version.py +++ b/sdk/python/pulumi_google_native/appengine/v1/version.py @@ -628,13 +628,11 @@ def vpc_access_connector(self, value: Optional[pulumi.Input['VpcAccessConnectorA @property @pulumi.getter + @_utilities.deprecated("""The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.""") def zones(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]: """ The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated. """ - warnings.warn("""The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.""", DeprecationWarning) - pulumi.log.warn("""zones is deprecated: The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.""") - return pulumi.get(self, "zones") @zones.setter @@ -852,7 +850,7 @@ def _internal_init(__self__, __props__.__dict__["disk_usage_bytes"] = None __props__.__dict__["name"] = None __props__.__dict__["version_url"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["app_id", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["appId", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Version, __self__).__init__( 'google-native:appengine/v1:Version', @@ -1253,12 +1251,10 @@ def vpc_access_connector(self) -> pulumi.Output['outputs.VpcAccessConnectorRespo @property @pulumi.getter + @_utilities.deprecated("""The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.""") def zones(self) -> pulumi.Output[Sequence[str]]: """ The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated. """ - warnings.warn("""The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.""", DeprecationWarning) - pulumi.log.warn("""zones is deprecated: The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.""") - return pulumi.get(self, "zones") diff --git a/sdk/python/pulumi_google_native/appengine/v1alpha/authorized_certificate.py b/sdk/python/pulumi_google_native/appengine/v1alpha/authorized_certificate.py index f993eb470b..ec98c59cc2 100644 --- a/sdk/python/pulumi_google_native/appengine/v1alpha/authorized_certificate.py +++ b/sdk/python/pulumi_google_native/appengine/v1alpha/authorized_certificate.py @@ -130,7 +130,7 @@ def _internal_init(__self__, __props__.__dict__["managed_certificate"] = None __props__.__dict__["name"] = None __props__.__dict__["visible_domain_mappings"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["app_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["appId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AuthorizedCertificate, __self__).__init__( 'google-native:appengine/v1alpha:AuthorizedCertificate', diff --git a/sdk/python/pulumi_google_native/appengine/v1alpha/domain_mapping.py b/sdk/python/pulumi_google_native/appengine/v1alpha/domain_mapping.py index 585a0a1b11..b7b4ff7c16 100644 --- a/sdk/python/pulumi_google_native/appengine/v1alpha/domain_mapping.py +++ b/sdk/python/pulumi_google_native/appengine/v1alpha/domain_mapping.py @@ -166,7 +166,7 @@ def _internal_init(__self__, __props__.__dict__["ssl_settings"] = ssl_settings __props__.__dict__["name"] = None __props__.__dict__["resource_records"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["app_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["appId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DomainMapping, __self__).__init__( 'google-native:appengine/v1alpha:DomainMapping', diff --git a/sdk/python/pulumi_google_native/appengine/v1beta/authorized_certificate.py b/sdk/python/pulumi_google_native/appengine/v1beta/authorized_certificate.py index 17278a27d6..cd4cbb5a21 100644 --- a/sdk/python/pulumi_google_native/appengine/v1beta/authorized_certificate.py +++ b/sdk/python/pulumi_google_native/appengine/v1beta/authorized_certificate.py @@ -130,7 +130,7 @@ def _internal_init(__self__, __props__.__dict__["managed_certificate"] = None __props__.__dict__["name"] = None __props__.__dict__["visible_domain_mappings"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["app_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["appId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AuthorizedCertificate, __self__).__init__( 'google-native:appengine/v1beta:AuthorizedCertificate', diff --git a/sdk/python/pulumi_google_native/appengine/v1beta/domain_mapping.py b/sdk/python/pulumi_google_native/appengine/v1beta/domain_mapping.py index 1d36a89eb6..90cacf1780 100644 --- a/sdk/python/pulumi_google_native/appengine/v1beta/domain_mapping.py +++ b/sdk/python/pulumi_google_native/appengine/v1beta/domain_mapping.py @@ -147,7 +147,7 @@ def _internal_init(__self__, __props__.__dict__["ssl_settings"] = ssl_settings __props__.__dict__["name"] = None __props__.__dict__["resource_records"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["app_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["appId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DomainMapping, __self__).__init__( 'google-native:appengine/v1beta:DomainMapping', diff --git a/sdk/python/pulumi_google_native/appengine/v1beta/get_version.py b/sdk/python/pulumi_google_native/appengine/v1beta/get_version.py index de542dca46..686b49c7ec 100644 --- a/sdk/python/pulumi_google_native/appengine/v1beta/get_version.py +++ b/sdk/python/pulumi_google_native/appengine/v1beta/get_version.py @@ -466,13 +466,11 @@ def vpc_access_connector(self) -> 'outputs.VpcAccessConnectorResponse': @property @pulumi.getter + @_utilities.deprecated("""The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.""") def zones(self) -> Sequence[str]: """ The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated. """ - warnings.warn("""The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.""", DeprecationWarning) - pulumi.log.warn("""zones is deprecated: The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.""") - return pulumi.get(self, "zones") diff --git a/sdk/python/pulumi_google_native/appengine/v1beta/ingress_rule.py b/sdk/python/pulumi_google_native/appengine/v1beta/ingress_rule.py index 4a6f8fdb4f..9be42f13f3 100644 --- a/sdk/python/pulumi_google_native/appengine/v1beta/ingress_rule.py +++ b/sdk/python/pulumi_google_native/appengine/v1beta/ingress_rule.py @@ -163,7 +163,7 @@ def _internal_init(__self__, __props__.__dict__["description"] = description __props__.__dict__["priority"] = priority __props__.__dict__["source_range"] = source_range - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["app_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["appId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(IngressRule, __self__).__init__( 'google-native:appengine/v1beta:IngressRule', diff --git a/sdk/python/pulumi_google_native/appengine/v1beta/version.py b/sdk/python/pulumi_google_native/appengine/v1beta/version.py index ad9b38d51d..07ff8871eb 100644 --- a/sdk/python/pulumi_google_native/appengine/v1beta/version.py +++ b/sdk/python/pulumi_google_native/appengine/v1beta/version.py @@ -628,13 +628,11 @@ def vpc_access_connector(self, value: Optional[pulumi.Input['VpcAccessConnectorA @property @pulumi.getter + @_utilities.deprecated("""The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.""") def zones(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]: """ The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated. """ - warnings.warn("""The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.""", DeprecationWarning) - pulumi.log.warn("""zones is deprecated: The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.""") - return pulumi.get(self, "zones") @zones.setter @@ -852,7 +850,7 @@ def _internal_init(__self__, __props__.__dict__["disk_usage_bytes"] = None __props__.__dict__["name"] = None __props__.__dict__["version_url"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["app_id", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["appId", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Version, __self__).__init__( 'google-native:appengine/v1beta:Version', @@ -1253,12 +1251,10 @@ def vpc_access_connector(self) -> pulumi.Output['outputs.VpcAccessConnectorRespo @property @pulumi.getter + @_utilities.deprecated("""The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.""") def zones(self) -> pulumi.Output[Sequence[str]]: """ The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated. """ - warnings.warn("""The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.""", DeprecationWarning) - pulumi.log.warn("""zones is deprecated: The Google Compute Engine zones that are supported by this version in the App Engine flexible environment. Deprecated.""") - return pulumi.get(self, "zones") diff --git a/sdk/python/pulumi_google_native/artifactregistry/v1/repository.py b/sdk/python/pulumi_google_native/artifactregistry/v1/repository.py index 5fa29412e6..461f10624a 100644 --- a/sdk/python/pulumi_google_native/artifactregistry/v1/repository.py +++ b/sdk/python/pulumi_google_native/artifactregistry/v1/repository.py @@ -362,7 +362,7 @@ def _internal_init(__self__, __props__.__dict__["satisfies_pzs"] = None __props__.__dict__["size_bytes"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repository_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repositoryId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Repository, __self__).__init__( 'google-native:artifactregistry/v1:Repository', diff --git a/sdk/python/pulumi_google_native/artifactregistry/v1/repository_iam_policy.py b/sdk/python/pulumi_google_native/artifactregistry/v1/repository_iam_policy.py index 528ae183ce..caf78a3be6 100644 --- a/sdk/python/pulumi_google_native/artifactregistry/v1/repository_iam_policy.py +++ b/sdk/python/pulumi_google_native/artifactregistry/v1/repository_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'repository_id'") __props__.__dict__["repository_id"] = repository_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repository_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repositoryId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RepositoryIamPolicy, __self__).__init__( 'google-native:artifactregistry/v1:RepositoryIamPolicy', diff --git a/sdk/python/pulumi_google_native/artifactregistry/v1/tag.py b/sdk/python/pulumi_google_native/artifactregistry/v1/tag.py index 7bccf4b95a..a58ec441b6 100644 --- a/sdk/python/pulumi_google_native/artifactregistry/v1/tag.py +++ b/sdk/python/pulumi_google_native/artifactregistry/v1/tag.py @@ -186,7 +186,7 @@ def _internal_init(__self__, __props__.__dict__["repository_id"] = repository_id __props__.__dict__["tag_id"] = tag_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "package_id", "project", "repository_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "packageId", "project", "repositoryId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Tag, __self__).__init__( 'google-native:artifactregistry/v1:Tag', diff --git a/sdk/python/pulumi_google_native/artifactregistry/v1beta1/repository.py b/sdk/python/pulumi_google_native/artifactregistry/v1beta1/repository.py index fc4b341e9f..c01c7e6809 100644 --- a/sdk/python/pulumi_google_native/artifactregistry/v1beta1/repository.py +++ b/sdk/python/pulumi_google_native/artifactregistry/v1beta1/repository.py @@ -220,7 +220,7 @@ def _internal_init(__self__, __props__.__dict__["satisfies_pzs"] = None __props__.__dict__["size_bytes"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repository_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repositoryId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Repository, __self__).__init__( 'google-native:artifactregistry/v1beta1:Repository', diff --git a/sdk/python/pulumi_google_native/artifactregistry/v1beta1/repository_iam_policy.py b/sdk/python/pulumi_google_native/artifactregistry/v1beta1/repository_iam_policy.py index 0ad5a31a0a..ffbb16b303 100644 --- a/sdk/python/pulumi_google_native/artifactregistry/v1beta1/repository_iam_policy.py +++ b/sdk/python/pulumi_google_native/artifactregistry/v1beta1/repository_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'repository_id'") __props__.__dict__["repository_id"] = repository_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repository_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repositoryId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RepositoryIamPolicy, __self__).__init__( 'google-native:artifactregistry/v1beta1:RepositoryIamPolicy', diff --git a/sdk/python/pulumi_google_native/artifactregistry/v1beta1/tag.py b/sdk/python/pulumi_google_native/artifactregistry/v1beta1/tag.py index 0304330db7..983cc82a9e 100644 --- a/sdk/python/pulumi_google_native/artifactregistry/v1beta1/tag.py +++ b/sdk/python/pulumi_google_native/artifactregistry/v1beta1/tag.py @@ -186,7 +186,7 @@ def _internal_init(__self__, __props__.__dict__["repository_id"] = repository_id __props__.__dict__["tag_id"] = tag_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "package_id", "project", "repository_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "packageId", "project", "repositoryId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Tag, __self__).__init__( 'google-native:artifactregistry/v1beta1:Tag', diff --git a/sdk/python/pulumi_google_native/artifactregistry/v1beta2/repository.py b/sdk/python/pulumi_google_native/artifactregistry/v1beta2/repository.py index 9cc269c384..57d6226379 100644 --- a/sdk/python/pulumi_google_native/artifactregistry/v1beta2/repository.py +++ b/sdk/python/pulumi_google_native/artifactregistry/v1beta2/repository.py @@ -242,7 +242,7 @@ def _internal_init(__self__, __props__.__dict__["satisfies_pzs"] = None __props__.__dict__["size_bytes"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repository_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repositoryId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Repository, __self__).__init__( 'google-native:artifactregistry/v1beta2:Repository', diff --git a/sdk/python/pulumi_google_native/artifactregistry/v1beta2/repository_iam_policy.py b/sdk/python/pulumi_google_native/artifactregistry/v1beta2/repository_iam_policy.py index 9df96a79da..902257bd7d 100644 --- a/sdk/python/pulumi_google_native/artifactregistry/v1beta2/repository_iam_policy.py +++ b/sdk/python/pulumi_google_native/artifactregistry/v1beta2/repository_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'repository_id'") __props__.__dict__["repository_id"] = repository_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repository_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repositoryId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RepositoryIamPolicy, __self__).__init__( 'google-native:artifactregistry/v1beta2:RepositoryIamPolicy', diff --git a/sdk/python/pulumi_google_native/artifactregistry/v1beta2/tag.py b/sdk/python/pulumi_google_native/artifactregistry/v1beta2/tag.py index f96b5e7b06..78cc288dfe 100644 --- a/sdk/python/pulumi_google_native/artifactregistry/v1beta2/tag.py +++ b/sdk/python/pulumi_google_native/artifactregistry/v1beta2/tag.py @@ -186,7 +186,7 @@ def _internal_init(__self__, __props__.__dict__["repository_id"] = repository_id __props__.__dict__["tag_id"] = tag_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "package_id", "project", "repository_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "packageId", "project", "repositoryId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Tag, __self__).__init__( 'google-native:artifactregistry/v1beta2:Tag', diff --git a/sdk/python/pulumi_google_native/assuredworkloads/v1/get_workload.py b/sdk/python/pulumi_google_native/assuredworkloads/v1/get_workload.py index db09fba01a..c1287d0f07 100644 --- a/sdk/python/pulumi_google_native/assuredworkloads/v1/get_workload.py +++ b/sdk/python/pulumi_google_native/assuredworkloads/v1/get_workload.py @@ -166,13 +166,11 @@ def kaj_enrollment_state(self) -> str: @property @pulumi.getter(name="kmsSettings") + @_utilities.deprecated("""Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field.""") def kms_settings(self) -> 'outputs.GoogleCloudAssuredworkloadsV1WorkloadKMSSettingsResponse': """ Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field. """ - warnings.warn("""Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field.""", DeprecationWarning) - pulumi.log.warn("""kms_settings is deprecated: Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field.""") - return pulumi.get(self, "kms_settings") @property diff --git a/sdk/python/pulumi_google_native/assuredworkloads/v1/workload.py b/sdk/python/pulumi_google_native/assuredworkloads/v1/workload.py index 52dc7673f5..5864d2c361 100644 --- a/sdk/python/pulumi_google_native/assuredworkloads/v1/workload.py +++ b/sdk/python/pulumi_google_native/assuredworkloads/v1/workload.py @@ -166,13 +166,11 @@ def external_id(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="kmsSettings") + @_utilities.deprecated("""Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field.""") def kms_settings(self) -> Optional[pulumi.Input['GoogleCloudAssuredworkloadsV1WorkloadKMSSettingsArgs']]: """ Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field. """ - warnings.warn("""Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field.""", DeprecationWarning) - pulumi.log.warn("""kms_settings is deprecated: Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field.""") - return pulumi.get(self, "kms_settings") @kms_settings.setter @@ -394,7 +392,7 @@ def _internal_init(__self__, __props__.__dict__["resource_monitoring_enabled"] = None __props__.__dict__["resources"] = None __props__.__dict__["saa_enrollment_response"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Workload, __self__).__init__( 'google-native:assuredworkloads/v1:Workload', @@ -534,13 +532,11 @@ def kaj_enrollment_state(self) -> pulumi.Output[str]: @property @pulumi.getter(name="kmsSettings") + @_utilities.deprecated("""Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field.""") def kms_settings(self) -> pulumi.Output['outputs.GoogleCloudAssuredworkloadsV1WorkloadKMSSettingsResponse']: """ Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field. """ - warnings.warn("""Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field.""", DeprecationWarning) - pulumi.log.warn("""kms_settings is deprecated: Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field.""") - return pulumi.get(self, "kms_settings") @property diff --git a/sdk/python/pulumi_google_native/assuredworkloads/v1beta1/get_workload.py b/sdk/python/pulumi_google_native/assuredworkloads/v1beta1/get_workload.py index f8ee9d5a0b..2a4c247a00 100644 --- a/sdk/python/pulumi_google_native/assuredworkloads/v1beta1/get_workload.py +++ b/sdk/python/pulumi_google_native/assuredworkloads/v1beta1/get_workload.py @@ -210,13 +210,11 @@ def kaj_enrollment_state(self) -> str: @property @pulumi.getter(name="kmsSettings") + @_utilities.deprecated("""Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field.""") def kms_settings(self) -> 'outputs.GoogleCloudAssuredworkloadsV1beta1WorkloadKMSSettingsResponse': """ Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field. """ - warnings.warn("""Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field.""", DeprecationWarning) - pulumi.log.warn("""kms_settings is deprecated: Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field.""") - return pulumi.get(self, "kms_settings") @property diff --git a/sdk/python/pulumi_google_native/assuredworkloads/v1beta1/workload.py b/sdk/python/pulumi_google_native/assuredworkloads/v1beta1/workload.py index 3e8298df90..e774b5a770 100644 --- a/sdk/python/pulumi_google_native/assuredworkloads/v1beta1/workload.py +++ b/sdk/python/pulumi_google_native/assuredworkloads/v1beta1/workload.py @@ -230,13 +230,11 @@ def il4_settings(self, value: Optional[pulumi.Input['GoogleCloudAssuredworkloads @property @pulumi.getter(name="kmsSettings") + @_utilities.deprecated("""Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field.""") def kms_settings(self) -> Optional[pulumi.Input['GoogleCloudAssuredworkloadsV1beta1WorkloadKMSSettingsArgs']]: """ Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field. """ - warnings.warn("""Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field.""", DeprecationWarning) - pulumi.log.warn("""kms_settings is deprecated: Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field.""") - return pulumi.get(self, "kms_settings") @kms_settings.setter @@ -474,7 +472,7 @@ def _internal_init(__self__, __props__.__dict__["resource_monitoring_enabled"] = None __props__.__dict__["resources"] = None __props__.__dict__["saa_enrollment_response"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Workload, __self__).__init__( 'google-native:assuredworkloads/v1beta1:Workload', @@ -650,13 +648,11 @@ def kaj_enrollment_state(self) -> pulumi.Output[str]: @property @pulumi.getter(name="kmsSettings") + @_utilities.deprecated("""Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field.""") def kms_settings(self) -> pulumi.Output['outputs.GoogleCloudAssuredworkloadsV1beta1WorkloadKMSSettingsResponse']: """ Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field. """ - warnings.warn("""Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field.""", DeprecationWarning) - pulumi.log.warn("""kms_settings is deprecated: Input only. Settings used to create a CMEK crypto key. When set, a project with a KMS CMEK key is provisioned. This field is deprecated as of Feb 28, 2022. In order to create a Keyring, callers should specify, ENCRYPTION_KEYS_PROJECT or KEYRING in ResourceSettings.resource_type field.""") - return pulumi.get(self, "kms_settings") @property diff --git a/sdk/python/pulumi_google_native/backupdr/v1/management_server.py b/sdk/python/pulumi_google_native/backupdr/v1/management_server.py index ed5e6eed24..3c967bf86a 100644 --- a/sdk/python/pulumi_google_native/backupdr/v1/management_server.py +++ b/sdk/python/pulumi_google_native/backupdr/v1/management_server.py @@ -250,7 +250,7 @@ def _internal_init(__self__, __props__.__dict__["update_time"] = None __props__.__dict__["workforce_identity_based_management_uri"] = None __props__.__dict__["workforce_identity_based_oauth2_client_id"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "management_server_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "managementServerId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ManagementServer, __self__).__init__( 'google-native:backupdr/v1:ManagementServer', diff --git a/sdk/python/pulumi_google_native/backupdr/v1/management_server_iam_policy.py b/sdk/python/pulumi_google_native/backupdr/v1/management_server_iam_policy.py index bd6f8c7261..970eaa247f 100644 --- a/sdk/python/pulumi_google_native/backupdr/v1/management_server_iam_policy.py +++ b/sdk/python/pulumi_google_native/backupdr/v1/management_server_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "management_server_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "managementServerId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ManagementServerIamPolicy, __self__).__init__( 'google-native:backupdr/v1:ManagementServerIamPolicy', diff --git a/sdk/python/pulumi_google_native/baremetalsolution/v2/_inputs.py b/sdk/python/pulumi_google_native/baremetalsolution/v2/_inputs.py index 579980d088..7d2f64baa8 100644 --- a/sdk/python/pulumi_google_native/baremetalsolution/v2/_inputs.py +++ b/sdk/python/pulumi_google_native/baremetalsolution/v2/_inputs.py @@ -151,13 +151,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="interfaceIndex") + @_utilities.deprecated("""The index of the logical interface mapping to the index of the hardware bond or nic on the chosen network template. This field is deprecated.""") def interface_index(self) -> Optional[pulumi.Input[int]]: """ The index of the logical interface mapping to the index of the hardware bond or nic on the chosen network template. This field is deprecated. """ - warnings.warn("""The index of the logical interface mapping to the index of the hardware bond or nic on the chosen network template. This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""interface_index is deprecated: The index of the logical interface mapping to the index of the hardware bond or nic on the chosen network template. This field is deprecated.""") - return pulumi.get(self, "interface_index") @interface_index.setter diff --git a/sdk/python/pulumi_google_native/baremetalsolution/v2/get_provisioning_config.py b/sdk/python/pulumi_google_native/baremetalsolution/v2/get_provisioning_config.py index ec01621006..4268c4fbea 100644 --- a/sdk/python/pulumi_google_native/baremetalsolution/v2/get_provisioning_config.py +++ b/sdk/python/pulumi_google_native/baremetalsolution/v2/get_provisioning_config.py @@ -84,13 +84,11 @@ def custom_id(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""Email provided to send a confirmation with provisioning config to. Deprecated in favour of email field in request messages.""") def email(self) -> str: """ Email provided to send a confirmation with provisioning config to. Deprecated in favour of email field in request messages. """ - warnings.warn("""Email provided to send a confirmation with provisioning config to. Deprecated in favour of email field in request messages.""", DeprecationWarning) - pulumi.log.warn("""email is deprecated: Email provided to send a confirmation with provisioning config to. Deprecated in favour of email field in request messages.""") - return pulumi.get(self, "email") @property diff --git a/sdk/python/pulumi_google_native/baremetalsolution/v2/outputs.py b/sdk/python/pulumi_google_native/baremetalsolution/v2/outputs.py index bfa4d17c13..dac44dfda5 100644 --- a/sdk/python/pulumi_google_native/baremetalsolution/v2/outputs.py +++ b/sdk/python/pulumi_google_native/baremetalsolution/v2/outputs.py @@ -192,13 +192,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="interfaceIndex") + @_utilities.deprecated("""The index of the logical interface mapping to the index of the hardware bond or nic on the chosen network template. This field is deprecated.""") def interface_index(self) -> int: """ The index of the logical interface mapping to the index of the hardware bond or nic on the chosen network template. This field is deprecated. """ - warnings.warn("""The index of the logical interface mapping to the index of the hardware bond or nic on the chosen network template. This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""interface_index is deprecated: The index of the logical interface mapping to the index of the hardware bond or nic on the chosen network template. This field is deprecated.""") - return pulumi.get(self, "interface_index") @property diff --git a/sdk/python/pulumi_google_native/baremetalsolution/v2/provisioning_config.py b/sdk/python/pulumi_google_native/baremetalsolution/v2/provisioning_config.py index 6c317fd487..fa3e2dcdd2 100644 --- a/sdk/python/pulumi_google_native/baremetalsolution/v2/provisioning_config.py +++ b/sdk/python/pulumi_google_native/baremetalsolution/v2/provisioning_config.py @@ -85,13 +85,11 @@ def custom_id(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""Email provided to send a confirmation with provisioning config to. Deprecated in favour of email field in request messages.""") def email(self) -> Optional[pulumi.Input[str]]: """ Email provided to send a confirmation with provisioning config to. Deprecated in favour of email field in request messages. """ - warnings.warn("""Email provided to send a confirmation with provisioning config to. Deprecated in favour of email field in request messages.""", DeprecationWarning) - pulumi.log.warn("""email is deprecated: Email provided to send a confirmation with provisioning config to. Deprecated in favour of email field in request messages.""") - return pulumi.get(self, "email") @email.setter diff --git a/sdk/python/pulumi_google_native/baremetalsolution/v2/snapshot.py b/sdk/python/pulumi_google_native/baremetalsolution/v2/snapshot.py index 3102f3670c..14892d8c38 100644 --- a/sdk/python/pulumi_google_native/baremetalsolution/v2/snapshot.py +++ b/sdk/python/pulumi_google_native/baremetalsolution/v2/snapshot.py @@ -153,7 +153,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["storage_volume"] = None __props__.__dict__["type"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "volume_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "volumeId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Snapshot, __self__).__init__( 'google-native:baremetalsolution/v2:Snapshot', diff --git a/sdk/python/pulumi_google_native/batch/v1/_inputs.py b/sdk/python/pulumi_google_native/batch/v1/_inputs.py index af781ddda8..03bcd53b1d 100644 --- a/sdk/python/pulumi_google_native/batch/v1/_inputs.py +++ b/sdk/python/pulumi_google_native/batch/v1/_inputs.py @@ -94,13 +94,11 @@ def driver_version(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="installGpuDrivers") + @_utilities.deprecated("""Deprecated: please use instances[0].install_gpu_drivers instead.""") def install_gpu_drivers(self) -> Optional[pulumi.Input[bool]]: """ Deprecated: please use instances[0].install_gpu_drivers instead. """ - warnings.warn("""Deprecated: please use instances[0].install_gpu_drivers instead.""", DeprecationWarning) - pulumi.log.warn("""install_gpu_drivers is deprecated: Deprecated: please use instances[0].install_gpu_drivers instead.""") - return pulumi.get(self, "install_gpu_drivers") @install_gpu_drivers.setter @@ -1734,13 +1732,11 @@ def environment(self, value: Optional[pulumi.Input['EnvironmentArgs']]): @property @pulumi.getter + @_utilities.deprecated("""Deprecated: please use environment(non-plural) instead.""") def environments(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]: """ Deprecated: please use environment(non-plural) instead. """ - warnings.warn("""Deprecated: please use environment(non-plural) instead.""", DeprecationWarning) - pulumi.log.warn("""environments is deprecated: Deprecated: please use environment(non-plural) instead.""") - return pulumi.get(self, "environments") @environments.setter diff --git a/sdk/python/pulumi_google_native/batch/v1/outputs.py b/sdk/python/pulumi_google_native/batch/v1/outputs.py index 4f5982417a..b28445ea63 100644 --- a/sdk/python/pulumi_google_native/batch/v1/outputs.py +++ b/sdk/python/pulumi_google_native/batch/v1/outputs.py @@ -105,13 +105,11 @@ def driver_version(self) -> str: @property @pulumi.getter(name="installGpuDrivers") + @_utilities.deprecated("""Deprecated: please use instances[0].install_gpu_drivers instead.""") def install_gpu_drivers(self) -> bool: """ Deprecated: please use instances[0].install_gpu_drivers instead. """ - warnings.warn("""Deprecated: please use instances[0].install_gpu_drivers instead.""", DeprecationWarning) - pulumi.log.warn("""install_gpu_drivers is deprecated: Deprecated: please use instances[0].install_gpu_drivers instead.""") - return pulumi.get(self, "install_gpu_drivers") @property @@ -2028,13 +2026,11 @@ def environment(self) -> 'outputs.EnvironmentResponse': @property @pulumi.getter + @_utilities.deprecated("""Deprecated: please use environment(non-plural) instead.""") def environments(self) -> Mapping[str, str]: """ Deprecated: please use environment(non-plural) instead. """ - warnings.warn("""Deprecated: please use environment(non-plural) instead.""", DeprecationWarning) - pulumi.log.warn("""environments is deprecated: Deprecated: please use environment(non-plural) instead.""") - return pulumi.get(self, "environments") @property diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1/app_connection_iam_policy.py b/sdk/python/pulumi_google_native/beyondcorp/v1/app_connection_iam_policy.py index 37e0e0773a..65f3a1902a 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1/app_connection_iam_policy.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1/app_connection_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["app_connection_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["appConnectionId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AppConnectionIamPolicy, __self__).__init__( 'google-native:beyondcorp/v1:AppConnectionIamPolicy', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1/app_connector_iam_policy.py b/sdk/python/pulumi_google_native/beyondcorp/v1/app_connector_iam_policy.py index 80ff2bdad5..0d8683200f 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1/app_connector_iam_policy.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1/app_connector_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["app_connector_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["appConnectorId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AppConnectorIamPolicy, __self__).__init__( 'google-native:beyondcorp/v1:AppConnectorIamPolicy', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1/app_gateway_iam_policy.py b/sdk/python/pulumi_google_native/beyondcorp/v1/app_gateway_iam_policy.py index 3a09945804..3ad4092daf 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1/app_gateway_iam_policy.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1/app_gateway_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["app_gateway_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["appGatewayId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AppGatewayIamPolicy, __self__).__init__( 'google-native:beyondcorp/v1:AppGatewayIamPolicy', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1/client_connector_service_iam_policy.py b/sdk/python/pulumi_google_native/beyondcorp/v1/client_connector_service_iam_policy.py index 0dad348613..2ec91027c4 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1/client_connector_service_iam_policy.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1/client_connector_service_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["client_connector_service_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clientConnectorServiceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ClientConnectorServiceIamPolicy, __self__).__init__( 'google-native:beyondcorp/v1:ClientConnectorServiceIamPolicy', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1/client_gateway_iam_policy.py b/sdk/python/pulumi_google_native/beyondcorp/v1/client_gateway_iam_policy.py index af0aa8d8b8..a888a5ef21 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1/client_gateway_iam_policy.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1/client_gateway_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["client_gateway_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clientGatewayId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ClientGatewayIamPolicy, __self__).__init__( 'google-native:beyondcorp/v1:ClientGatewayIamPolicy', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1/organization_partner_tenant_browser_dlp_rule_iam_policy.py b/sdk/python/pulumi_google_native/beyondcorp/v1/organization_partner_tenant_browser_dlp_rule_iam_policy.py index 399d474ddb..286fab0dff 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1/organization_partner_tenant_browser_dlp_rule_iam_policy.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1/organization_partner_tenant_browser_dlp_rule_iam_policy.py @@ -219,7 +219,7 @@ def _internal_init(__self__, __props__.__dict__["partner_tenant_id"] = partner_tenant_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["browser_dlp_rule_id", "organization_id", "partner_tenant_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["browserDlpRuleId", "organizationId", "partnerTenantId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationPartnerTenantBrowserDlpRuleIamPolicy, __self__).__init__( 'google-native:beyondcorp/v1:OrganizationPartnerTenantBrowserDlpRuleIamPolicy', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1/organization_partner_tenant_iam_policy.py b/sdk/python/pulumi_google_native/beyondcorp/v1/organization_partner_tenant_iam_policy.py index 79ada48ba7..379157f19b 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1/organization_partner_tenant_iam_policy.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1/organization_partner_tenant_iam_policy.py @@ -203,7 +203,7 @@ def _internal_init(__self__, __props__.__dict__["partner_tenant_id"] = partner_tenant_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id", "partner_tenant_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId", "partnerTenantId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationPartnerTenantIamPolicy, __self__).__init__( 'google-native:beyondcorp/v1:OrganizationPartnerTenantIamPolicy', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1/organization_partner_tenant_proxy_config_iam_policy.py b/sdk/python/pulumi_google_native/beyondcorp/v1/organization_partner_tenant_proxy_config_iam_policy.py index ae34c8eba2..5cc6606175 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1/organization_partner_tenant_proxy_config_iam_policy.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1/organization_partner_tenant_proxy_config_iam_policy.py @@ -219,7 +219,7 @@ def _internal_init(__self__, __props__.__dict__["proxy_config_id"] = proxy_config_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id", "partner_tenant_id", "proxy_config_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId", "partnerTenantId", "proxyConfigId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationPartnerTenantProxyConfigIamPolicy, __self__).__init__( 'google-native:beyondcorp/v1:OrganizationPartnerTenantProxyConfigIamPolicy', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/app_connection_iam_policy.py b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/app_connection_iam_policy.py index 7c5ff43eda..25704a6e31 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/app_connection_iam_policy.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/app_connection_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["app_connection_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["appConnectionId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AppConnectionIamPolicy, __self__).__init__( 'google-native:beyondcorp/v1alpha:AppConnectionIamPolicy', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/app_connector_iam_policy.py b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/app_connector_iam_policy.py index b73c8ed75d..7b48ad33d0 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/app_connector_iam_policy.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/app_connector_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["app_connector_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["appConnectorId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AppConnectorIamPolicy, __self__).__init__( 'google-native:beyondcorp/v1alpha:AppConnectorIamPolicy', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/app_gateway_iam_policy.py b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/app_gateway_iam_policy.py index fefce2e432..5ea9c0b21a 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/app_gateway_iam_policy.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/app_gateway_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["app_gateway_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["appGatewayId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AppGatewayIamPolicy, __self__).__init__( 'google-native:beyondcorp/v1alpha:AppGatewayIamPolicy', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/application_domain_iam_policy.py b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/application_domain_iam_policy.py index c8b0c0e86b..23bfe3fc9c 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/application_domain_iam_policy.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/application_domain_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["application_domain_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["applicationDomainId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ApplicationDomainIamPolicy, __self__).__init__( 'google-native:beyondcorp/v1alpha:ApplicationDomainIamPolicy', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/application_iam_policy.py b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/application_iam_policy.py index a014e59bee..1b29c4c9f4 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/application_iam_policy.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/application_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["application_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["applicationId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ApplicationIamPolicy, __self__).__init__( 'google-native:beyondcorp/v1alpha:ApplicationIamPolicy', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/browser_dlp_rule.py b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/browser_dlp_rule.py index 78d5cc1312..ad7b93056a 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/browser_dlp_rule.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/browser_dlp_rule.py @@ -163,7 +163,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'rule_setting'") __props__.__dict__["rule_setting"] = rule_setting __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id", "partner_tenant_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId", "partnerTenantId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(BrowserDlpRule, __self__).__init__( 'google-native:beyondcorp/v1alpha:BrowserDlpRule', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/client_connector_service_iam_policy.py b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/client_connector_service_iam_policy.py index 85e9c81ed0..fe16829015 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/client_connector_service_iam_policy.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/client_connector_service_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["client_connector_service_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clientConnectorServiceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ClientConnectorServiceIamPolicy, __self__).__init__( 'google-native:beyondcorp/v1alpha:ClientConnectorServiceIamPolicy', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/client_gateway_iam_policy.py b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/client_gateway_iam_policy.py index ed01068d6f..c8bda69baa 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/client_gateway_iam_policy.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/client_gateway_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["client_gateway_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clientGatewayId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ClientGatewayIamPolicy, __self__).__init__( 'google-native:beyondcorp/v1alpha:ClientGatewayIamPolicy', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/connection_iam_policy.py b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/connection_iam_policy.py index 80e92d8f35..58e67d5b36 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/connection_iam_policy.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/connection_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connection_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connectionId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ConnectionIamPolicy, __self__).__init__( 'google-native:beyondcorp/v1alpha:ConnectionIamPolicy', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/connector_iam_policy.py b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/connector_iam_policy.py index 8e8842c1ff..e5725f0c44 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/connector_iam_policy.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/connector_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connector_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connectorId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ConnectorIamPolicy, __self__).__init__( 'google-native:beyondcorp/v1alpha:ConnectorIamPolicy', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/net_connection_iam_policy.py b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/net_connection_iam_policy.py index 03f709ad8b..3979861ff3 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/net_connection_iam_policy.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/net_connection_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "net_connection_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "netConnectionId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(NetConnectionIamPolicy, __self__).__init__( 'google-native:beyondcorp/v1alpha:NetConnectionIamPolicy', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/organization_partner_tenant_browser_dlp_rule_iam_policy.py b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/organization_partner_tenant_browser_dlp_rule_iam_policy.py index 18287cac6b..7af2d0c51b 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/organization_partner_tenant_browser_dlp_rule_iam_policy.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/organization_partner_tenant_browser_dlp_rule_iam_policy.py @@ -219,7 +219,7 @@ def _internal_init(__self__, __props__.__dict__["partner_tenant_id"] = partner_tenant_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["browser_dlp_rule_id", "organization_id", "partner_tenant_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["browserDlpRuleId", "organizationId", "partnerTenantId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationPartnerTenantBrowserDlpRuleIamPolicy, __self__).__init__( 'google-native:beyondcorp/v1alpha:OrganizationPartnerTenantBrowserDlpRuleIamPolicy', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/organization_partner_tenant_iam_policy.py b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/organization_partner_tenant_iam_policy.py index d1085e0cc6..595a61a04e 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/organization_partner_tenant_iam_policy.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/organization_partner_tenant_iam_policy.py @@ -203,7 +203,7 @@ def _internal_init(__self__, __props__.__dict__["partner_tenant_id"] = partner_tenant_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id", "partner_tenant_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId", "partnerTenantId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationPartnerTenantIamPolicy, __self__).__init__( 'google-native:beyondcorp/v1alpha:OrganizationPartnerTenantIamPolicy', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/organization_partner_tenant_proxy_config_iam_policy.py b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/organization_partner_tenant_proxy_config_iam_policy.py index 7f456a91bc..a333960f3f 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/organization_partner_tenant_proxy_config_iam_policy.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/organization_partner_tenant_proxy_config_iam_policy.py @@ -219,7 +219,7 @@ def _internal_init(__self__, __props__.__dict__["proxy_config_id"] = proxy_config_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id", "partner_tenant_id", "proxy_config_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId", "partnerTenantId", "proxyConfigId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationPartnerTenantProxyConfigIamPolicy, __self__).__init__( 'google-native:beyondcorp/v1alpha:OrganizationPartnerTenantProxyConfigIamPolicy', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/partner_tenant.py b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/partner_tenant.py index af266cb00e..0f0b8e454c 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/partner_tenant.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/partner_tenant.py @@ -167,7 +167,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(PartnerTenant, __self__).__init__( 'google-native:beyondcorp/v1alpha:PartnerTenant', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/proxy_config.py b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/proxy_config.py index 2a9396fd08..6ac01677ef 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/proxy_config.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/proxy_config.py @@ -226,7 +226,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id", "partner_tenant_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId", "partnerTenantId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ProxyConfig, __self__).__init__( 'google-native:beyondcorp/v1alpha:ProxyConfig', diff --git a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/subscription.py b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/subscription.py index d5fde10a53..4d3abd3d17 100644 --- a/sdk/python/pulumi_google_native/beyondcorp/v1alpha/subscription.py +++ b/sdk/python/pulumi_google_native/beyondcorp/v1alpha/subscription.py @@ -187,7 +187,7 @@ def _internal_init(__self__, __props__.__dict__["end_time"] = None __props__.__dict__["start_time"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Subscription, __self__).__init__( 'google-native:beyondcorp/v1alpha:Subscription', diff --git a/sdk/python/pulumi_google_native/biglake/v1/catalog.py b/sdk/python/pulumi_google_native/biglake/v1/catalog.py index 78b309bd0a..76787236b7 100644 --- a/sdk/python/pulumi_google_native/biglake/v1/catalog.py +++ b/sdk/python/pulumi_google_native/biglake/v1/catalog.py @@ -122,7 +122,7 @@ def _internal_init(__self__, __props__.__dict__["expire_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalog_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalogId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Catalog, __self__).__init__( 'google-native:biglake/v1:Catalog', diff --git a/sdk/python/pulumi_google_native/biglake/v1/database.py b/sdk/python/pulumi_google_native/biglake/v1/database.py index 2db60dd7f5..88eb297af6 100644 --- a/sdk/python/pulumi_google_native/biglake/v1/database.py +++ b/sdk/python/pulumi_google_native/biglake/v1/database.py @@ -181,7 +181,7 @@ def _internal_init(__self__, __props__.__dict__["expire_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalog_id", "database_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalogId", "databaseId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Database, __self__).__init__( 'google-native:biglake/v1:Database', diff --git a/sdk/python/pulumi_google_native/biglake/v1/table.py b/sdk/python/pulumi_google_native/biglake/v1/table.py index 8db4ac6b76..7916c72110 100644 --- a/sdk/python/pulumi_google_native/biglake/v1/table.py +++ b/sdk/python/pulumi_google_native/biglake/v1/table.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["expire_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalog_id", "database_id", "location", "project", "table_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalogId", "databaseId", "location", "project", "tableId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Table, __self__).__init__( 'google-native:biglake/v1:Table', diff --git a/sdk/python/pulumi_google_native/bigquery/v2/_inputs.py b/sdk/python/pulumi_google_native/bigquery/v2/_inputs.py index 6a199a7194..9b0b3fb8bb 100644 --- a/sdk/python/pulumi_google_native/bigquery/v2/_inputs.py +++ b/sdk/python/pulumi_google_native/bigquery/v2/_inputs.py @@ -2615,13 +2615,11 @@ def schema(self, value: Optional[pulumi.Input['TableSchemaArgs']]): @property @pulumi.getter(name="schemaInline") + @_utilities.deprecated("""[Deprecated] The inline schema. For CSV schemas, specify as \"Field1:Type1[,Field2:Type2]*\". For example, \"foo:STRING, bar:INTEGER, baz:FLOAT\".""") def schema_inline(self) -> Optional[pulumi.Input[str]]: """ [Deprecated] The inline schema. For CSV schemas, specify as "Field1:Type1[,Field2:Type2]*". For example, "foo:STRING, bar:INTEGER, baz:FLOAT". """ - warnings.warn("""[Deprecated] The inline schema. For CSV schemas, specify as \"Field1:Type1[,Field2:Type2]*\". For example, \"foo:STRING, bar:INTEGER, baz:FLOAT\".""", DeprecationWarning) - pulumi.log.warn("""schema_inline is deprecated: [Deprecated] The inline schema. For CSV schemas, specify as \"Field1:Type1[,Field2:Type2]*\". For example, \"foo:STRING, bar:INTEGER, baz:FLOAT\".""") - return pulumi.get(self, "schema_inline") @schema_inline.setter @@ -2630,13 +2628,11 @@ def schema_inline(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="schemaInlineFormat") + @_utilities.deprecated("""[Deprecated] The format of the schemaInline property.""") def schema_inline_format(self) -> Optional[pulumi.Input[str]]: """ [Deprecated] The format of the schemaInline property. """ - warnings.warn("""[Deprecated] The format of the schemaInline property.""", DeprecationWarning) - pulumi.log.warn("""schema_inline_format is deprecated: [Deprecated] The format of the schemaInline property.""") - return pulumi.get(self, "schema_inline_format") @schema_inline_format.setter @@ -2995,13 +2991,11 @@ def parameter_mode(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="preserveNulls") + @_utilities.deprecated("""[Deprecated] This property is deprecated.""") def preserve_nulls(self) -> Optional[pulumi.Input[bool]]: """ [Deprecated] This property is deprecated. """ - warnings.warn("""[Deprecated] This property is deprecated.""", DeprecationWarning) - pulumi.log.warn("""preserve_nulls is deprecated: [Deprecated] This property is deprecated.""") - return pulumi.get(self, "preserve_nulls") @preserve_nulls.setter diff --git a/sdk/python/pulumi_google_native/bigquery/v2/outputs.py b/sdk/python/pulumi_google_native/bigquery/v2/outputs.py index 6780a6129e..b6da2e1843 100644 --- a/sdk/python/pulumi_google_native/bigquery/v2/outputs.py +++ b/sdk/python/pulumi_google_native/bigquery/v2/outputs.py @@ -3443,24 +3443,20 @@ def schema(self) -> 'outputs.TableSchemaResponse': @property @pulumi.getter(name="schemaInline") + @_utilities.deprecated("""[Deprecated] The inline schema. For CSV schemas, specify as \"Field1:Type1[,Field2:Type2]*\". For example, \"foo:STRING, bar:INTEGER, baz:FLOAT\".""") def schema_inline(self) -> str: """ [Deprecated] The inline schema. For CSV schemas, specify as "Field1:Type1[,Field2:Type2]*". For example, "foo:STRING, bar:INTEGER, baz:FLOAT". """ - warnings.warn("""[Deprecated] The inline schema. For CSV schemas, specify as \"Field1:Type1[,Field2:Type2]*\". For example, \"foo:STRING, bar:INTEGER, baz:FLOAT\".""", DeprecationWarning) - pulumi.log.warn("""schema_inline is deprecated: [Deprecated] The inline schema. For CSV schemas, specify as \"Field1:Type1[,Field2:Type2]*\". For example, \"foo:STRING, bar:INTEGER, baz:FLOAT\".""") - return pulumi.get(self, "schema_inline") @property @pulumi.getter(name="schemaInlineFormat") + @_utilities.deprecated("""[Deprecated] The format of the schemaInline property.""") def schema_inline_format(self) -> str: """ [Deprecated] The format of the schemaInline property. """ - warnings.warn("""[Deprecated] The format of the schemaInline property.""", DeprecationWarning) - pulumi.log.warn("""schema_inline_format is deprecated: [Deprecated] The format of the schemaInline property.""") - return pulumi.get(self, "schema_inline_format") @property @@ -3764,13 +3760,11 @@ def parameter_mode(self) -> str: @property @pulumi.getter(name="preserveNulls") + @_utilities.deprecated("""[Deprecated] This property is deprecated.""") def preserve_nulls(self) -> bool: """ [Deprecated] This property is deprecated. """ - warnings.warn("""[Deprecated] This property is deprecated.""", DeprecationWarning) - pulumi.log.warn("""preserve_nulls is deprecated: [Deprecated] This property is deprecated.""") - return pulumi.get(self, "preserve_nulls") @property @@ -4503,24 +4497,20 @@ def model_training(self) -> 'outputs.BigQueryModelTrainingResponse': @property @pulumi.getter(name="modelTrainingCurrentIteration") + @_utilities.deprecated("""[Output only, Beta] Deprecated; do not use.""") def model_training_current_iteration(self) -> int: """ [Output only, Beta] Deprecated; do not use. """ - warnings.warn("""[Output only, Beta] Deprecated; do not use.""", DeprecationWarning) - pulumi.log.warn("""model_training_current_iteration is deprecated: [Output only, Beta] Deprecated; do not use.""") - return pulumi.get(self, "model_training_current_iteration") @property @pulumi.getter(name="modelTrainingExpectedTotalIteration") + @_utilities.deprecated("""[Output only, Beta] Deprecated; do not use.""") def model_training_expected_total_iteration(self) -> str: """ [Output only, Beta] Deprecated; do not use. """ - warnings.warn("""[Output only, Beta] Deprecated; do not use.""", DeprecationWarning) - pulumi.log.warn("""model_training_expected_total_iteration is deprecated: [Output only, Beta] Deprecated; do not use.""") - return pulumi.get(self, "model_training_expected_total_iteration") @property @@ -5140,13 +5130,11 @@ def start_time(self) -> str: @property @pulumi.getter(name="totalBytesProcessed") + @_utilities.deprecated("""[Output-only] [Deprecated] Use the bytes processed in the query statistics instead.""") def total_bytes_processed(self) -> str: """ [Deprecated] Use the bytes processed in the query statistics instead. """ - warnings.warn("""[Output-only] [Deprecated] Use the bytes processed in the query statistics instead.""", DeprecationWarning) - pulumi.log.warn("""total_bytes_processed is deprecated: [Output-only] [Deprecated] Use the bytes processed in the query statistics instead.""") - return pulumi.get(self, "total_bytes_processed") @property diff --git a/sdk/python/pulumi_google_native/bigquery/v2/routine.py b/sdk/python/pulumi_google_native/bigquery/v2/routine.py index 060ff715cd..25b48f0ad5 100644 --- a/sdk/python/pulumi_google_native/bigquery/v2/routine.py +++ b/sdk/python/pulumi_google_native/bigquery/v2/routine.py @@ -406,7 +406,7 @@ def _internal_init(__self__, __props__.__dict__["creation_time"] = None __props__.__dict__["etag"] = None __props__.__dict__["last_modified_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataset_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datasetId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Routine, __self__).__init__( 'google-native:bigquery/v2:Routine', diff --git a/sdk/python/pulumi_google_native/bigquery/v2/table.py b/sdk/python/pulumi_google_native/bigquery/v2/table.py index f299d6b9a7..4c2d61ba7d 100644 --- a/sdk/python/pulumi_google_native/bigquery/v2/table.py +++ b/sdk/python/pulumi_google_native/bigquery/v2/table.py @@ -503,7 +503,7 @@ def _internal_init(__self__, __props__.__dict__["snapshot_definition"] = None __props__.__dict__["streaming_buffer"] = None __props__.__dict__["type"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataset_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datasetId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Table, __self__).__init__( 'google-native:bigquery/v2:Table', diff --git a/sdk/python/pulumi_google_native/bigquery/v2/table_iam_policy.py b/sdk/python/pulumi_google_native/bigquery/v2/table_iam_policy.py index e8834a1764..2c0e9ad6f9 100644 --- a/sdk/python/pulumi_google_native/bigquery/v2/table_iam_policy.py +++ b/sdk/python/pulumi_google_native/bigquery/v2/table_iam_policy.py @@ -218,7 +218,7 @@ def _internal_init(__self__, __props__.__dict__["table_id"] = table_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataset_id", "project", "table_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datasetId", "project", "tableId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TableIamPolicy, __self__).__init__( 'google-native:bigquery/v2:TableIamPolicy', diff --git a/sdk/python/pulumi_google_native/bigqueryconnection/v1beta1/connection_iam_policy.py b/sdk/python/pulumi_google_native/bigqueryconnection/v1beta1/connection_iam_policy.py index cb04efbefd..e2cc4b57aa 100644 --- a/sdk/python/pulumi_google_native/bigqueryconnection/v1beta1/connection_iam_policy.py +++ b/sdk/python/pulumi_google_native/bigqueryconnection/v1beta1/connection_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connection_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connectionId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ConnectionIamPolicy, __self__).__init__( 'google-native:bigqueryconnection/v1beta1:ConnectionIamPolicy', diff --git a/sdk/python/pulumi_google_native/bigquerydatapolicy/v1/data_policy_iam_policy.py b/sdk/python/pulumi_google_native/bigquerydatapolicy/v1/data_policy_iam_policy.py index b4f8924edf..cd65c0f066 100644 --- a/sdk/python/pulumi_google_native/bigquerydatapolicy/v1/data_policy_iam_policy.py +++ b/sdk/python/pulumi_google_native/bigquerydatapolicy/v1/data_policy_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["data_policy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataPolicyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DataPolicyIamPolicy, __self__).__init__( 'google-native:bigquerydatapolicy/v1:DataPolicyIamPolicy', diff --git a/sdk/python/pulumi_google_native/bigquerydatatransfer/v1/get_transfer_config.py b/sdk/python/pulumi_google_native/bigquerydatatransfer/v1/get_transfer_config.py index 60dde7da2c..bbf3c3ab77 100644 --- a/sdk/python/pulumi_google_native/bigquerydatatransfer/v1/get_transfer_config.py +++ b/sdk/python/pulumi_google_native/bigquerydatatransfer/v1/get_transfer_config.py @@ -213,13 +213,11 @@ def update_time(self) -> str: @property @pulumi.getter(name="userId") + @_utilities.deprecated("""Deprecated. Unique ID of the user on whose behalf transfer is done.""") def user_id(self) -> str: """ Deprecated. Unique ID of the user on whose behalf transfer is done. """ - warnings.warn("""Deprecated. Unique ID of the user on whose behalf transfer is done.""", DeprecationWarning) - pulumi.log.warn("""user_id is deprecated: Deprecated. Unique ID of the user on whose behalf transfer is done.""") - return pulumi.get(self, "user_id") diff --git a/sdk/python/pulumi_google_native/bigquerydatatransfer/v1/transfer_config.py b/sdk/python/pulumi_google_native/bigquerydatatransfer/v1/transfer_config.py index 6a81039126..1ccb06000a 100644 --- a/sdk/python/pulumi_google_native/bigquerydatatransfer/v1/transfer_config.py +++ b/sdk/python/pulumi_google_native/bigquerydatatransfer/v1/transfer_config.py @@ -281,13 +281,11 @@ def service_account_name(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="userId") + @_utilities.deprecated("""Deprecated. Unique ID of the user on whose behalf transfer is done.""") def user_id(self) -> Optional[pulumi.Input[str]]: """ Deprecated. Unique ID of the user on whose behalf transfer is done. """ - warnings.warn("""Deprecated. Unique ID of the user on whose behalf transfer is done.""", DeprecationWarning) - pulumi.log.warn("""user_id is deprecated: Deprecated. Unique ID of the user on whose behalf transfer is done.""") - return pulumi.get(self, "user_id") @user_id.setter @@ -642,13 +640,11 @@ def update_time(self) -> pulumi.Output[str]: @property @pulumi.getter(name="userId") + @_utilities.deprecated("""Deprecated. Unique ID of the user on whose behalf transfer is done.""") def user_id(self) -> pulumi.Output[str]: """ Deprecated. Unique ID of the user on whose behalf transfer is done. """ - warnings.warn("""Deprecated. Unique ID of the user on whose behalf transfer is done.""", DeprecationWarning) - pulumi.log.warn("""user_id is deprecated: Deprecated. Unique ID of the user on whose behalf transfer is done.""") - return pulumi.get(self, "user_id") @property diff --git a/sdk/python/pulumi_google_native/bigtableadmin/v2/app_profile.py b/sdk/python/pulumi_google_native/bigtableadmin/v2/app_profile.py index 69ea3a44f6..99ec3607fe 100644 --- a/sdk/python/pulumi_google_native/bigtableadmin/v2/app_profile.py +++ b/sdk/python/pulumi_google_native/bigtableadmin/v2/app_profile.py @@ -279,7 +279,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["single_cluster_routing"] = single_cluster_routing __props__.__dict__["standard_isolation"] = standard_isolation - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["app_profile_id", "instance_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["appProfileId", "instanceId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AppProfile, __self__).__init__( 'google-native:bigtableadmin/v2:AppProfile', diff --git a/sdk/python/pulumi_google_native/bigtableadmin/v2/backup.py b/sdk/python/pulumi_google_native/bigtableadmin/v2/backup.py index d450abf87b..0036466d12 100644 --- a/sdk/python/pulumi_google_native/bigtableadmin/v2/backup.py +++ b/sdk/python/pulumi_google_native/bigtableadmin/v2/backup.py @@ -203,7 +203,7 @@ def _internal_init(__self__, __props__.__dict__["source_backup"] = None __props__.__dict__["start_time"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "cluster_id", "instance_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "clusterId", "instanceId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Backup, __self__).__init__( 'google-native:bigtableadmin/v2:Backup', diff --git a/sdk/python/pulumi_google_native/bigtableadmin/v2/cluster.py b/sdk/python/pulumi_google_native/bigtableadmin/v2/cluster.py index 0cb8347526..624597d2ad 100644 --- a/sdk/python/pulumi_google_native/bigtableadmin/v2/cluster.py +++ b/sdk/python/pulumi_google_native/bigtableadmin/v2/cluster.py @@ -240,7 +240,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["serve_nodes"] = serve_nodes __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cluster_id", "instance_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clusterId", "instanceId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Cluster, __self__).__init__( 'google-native:bigtableadmin/v2:Cluster', diff --git a/sdk/python/pulumi_google_native/bigtableadmin/v2/instance_cluster_backup_iam_policy.py b/sdk/python/pulumi_google_native/bigtableadmin/v2/instance_cluster_backup_iam_policy.py index 3217c9419a..152cb89de6 100644 --- a/sdk/python/pulumi_google_native/bigtableadmin/v2/instance_cluster_backup_iam_policy.py +++ b/sdk/python/pulumi_google_native/bigtableadmin/v2/instance_cluster_backup_iam_policy.py @@ -234,7 +234,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "cluster_id", "instance_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "clusterId", "instanceId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(InstanceClusterBackupIamPolicy, __self__).__init__( 'google-native:bigtableadmin/v2:InstanceClusterBackupIamPolicy', diff --git a/sdk/python/pulumi_google_native/bigtableadmin/v2/instance_iam_policy.py b/sdk/python/pulumi_google_native/bigtableadmin/v2/instance_iam_policy.py index 836152fbfe..ac36f95be9 100644 --- a/sdk/python/pulumi_google_native/bigtableadmin/v2/instance_iam_policy.py +++ b/sdk/python/pulumi_google_native/bigtableadmin/v2/instance_iam_policy.py @@ -202,7 +202,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(InstanceIamPolicy, __self__).__init__( 'google-native:bigtableadmin/v2:InstanceIamPolicy', diff --git a/sdk/python/pulumi_google_native/bigtableadmin/v2/instance_table_iam_policy.py b/sdk/python/pulumi_google_native/bigtableadmin/v2/instance_table_iam_policy.py index f5297d9e47..3ff183b502 100644 --- a/sdk/python/pulumi_google_native/bigtableadmin/v2/instance_table_iam_policy.py +++ b/sdk/python/pulumi_google_native/bigtableadmin/v2/instance_table_iam_policy.py @@ -218,7 +218,7 @@ def _internal_init(__self__, __props__.__dict__["table_id"] = table_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "project", "table_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "project", "tableId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(InstanceTableIamPolicy, __self__).__init__( 'google-native:bigtableadmin/v2:InstanceTableIamPolicy', diff --git a/sdk/python/pulumi_google_native/bigtableadmin/v2/table.py b/sdk/python/pulumi_google_native/bigtableadmin/v2/table.py index 6537df42e9..7058f9390d 100644 --- a/sdk/python/pulumi_google_native/bigtableadmin/v2/table.py +++ b/sdk/python/pulumi_google_native/bigtableadmin/v2/table.py @@ -242,7 +242,7 @@ def _internal_init(__self__, __props__.__dict__["cluster_states"] = None __props__.__dict__["restore_info"] = None __props__.__dict__["stats"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Table, __self__).__init__( 'google-native:bigtableadmin/v2:Table', diff --git a/sdk/python/pulumi_google_native/billingbudgets/v1/budget.py b/sdk/python/pulumi_google_native/billingbudgets/v1/budget.py index a3135b4b3a..b90c64569f 100644 --- a/sdk/python/pulumi_google_native/billingbudgets/v1/budget.py +++ b/sdk/python/pulumi_google_native/billingbudgets/v1/budget.py @@ -222,7 +222,7 @@ def _internal_init(__self__, __props__.__dict__["ownership_scope"] = ownership_scope __props__.__dict__["threshold_rules"] = threshold_rules __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["billing_account_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["billingAccountId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Budget, __self__).__init__( 'google-native:billingbudgets/v1:Budget', diff --git a/sdk/python/pulumi_google_native/billingbudgets/v1beta1/budget.py b/sdk/python/pulumi_google_native/billingbudgets/v1beta1/budget.py index 620afc87bf..536b2fc2aa 100644 --- a/sdk/python/pulumi_google_native/billingbudgets/v1beta1/budget.py +++ b/sdk/python/pulumi_google_native/billingbudgets/v1beta1/budget.py @@ -222,7 +222,7 @@ def _internal_init(__self__, __props__.__dict__["ownership_scope"] = ownership_scope __props__.__dict__["threshold_rules"] = threshold_rules __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["billing_account_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["billingAccountId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Budget, __self__).__init__( 'google-native:billingbudgets/v1beta1:Budget', diff --git a/sdk/python/pulumi_google_native/binaryauthorization/v1/attestor.py b/sdk/python/pulumi_google_native/binaryauthorization/v1/attestor.py index 0e3914037b..eb77095cd7 100644 --- a/sdk/python/pulumi_google_native/binaryauthorization/v1/attestor.py +++ b/sdk/python/pulumi_google_native/binaryauthorization/v1/attestor.py @@ -184,7 +184,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["user_owned_grafeas_note"] = user_owned_grafeas_note __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["attestor_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["attestorId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Attestor, __self__).__init__( 'google-native:binaryauthorization/v1:Attestor', diff --git a/sdk/python/pulumi_google_native/binaryauthorization/v1/attestor_iam_policy.py b/sdk/python/pulumi_google_native/binaryauthorization/v1/attestor_iam_policy.py index 4f62431dc6..812783dfad 100644 --- a/sdk/python/pulumi_google_native/binaryauthorization/v1/attestor_iam_policy.py +++ b/sdk/python/pulumi_google_native/binaryauthorization/v1/attestor_iam_policy.py @@ -161,7 +161,7 @@ def _internal_init(__self__, __props__.__dict__["etag"] = etag __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["attestor_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["attestorId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AttestorIamPolicy, __self__).__init__( 'google-native:binaryauthorization/v1:AttestorIamPolicy', diff --git a/sdk/python/pulumi_google_native/binaryauthorization/v1/policy.py b/sdk/python/pulumi_google_native/binaryauthorization/v1/policy.py index 259dd21234..307b5161ba 100644 --- a/sdk/python/pulumi_google_native/binaryauthorization/v1/policy.py +++ b/sdk/python/pulumi_google_native/binaryauthorization/v1/policy.py @@ -163,7 +163,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["platform_id", "policy_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["platformId", "policyId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Policy, __self__).__init__( 'google-native:binaryauthorization/v1:Policy', diff --git a/sdk/python/pulumi_google_native/binaryauthorization/v1beta1/attestor.py b/sdk/python/pulumi_google_native/binaryauthorization/v1beta1/attestor.py index 68a5c7816e..a34ebc2a7b 100644 --- a/sdk/python/pulumi_google_native/binaryauthorization/v1beta1/attestor.py +++ b/sdk/python/pulumi_google_native/binaryauthorization/v1beta1/attestor.py @@ -184,7 +184,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["user_owned_drydock_note"] = user_owned_drydock_note __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["attestor_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["attestorId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Attestor, __self__).__init__( 'google-native:binaryauthorization/v1beta1:Attestor', diff --git a/sdk/python/pulumi_google_native/binaryauthorization/v1beta1/attestor_iam_policy.py b/sdk/python/pulumi_google_native/binaryauthorization/v1beta1/attestor_iam_policy.py index 5ad948d7b3..c2e86e58ce 100644 --- a/sdk/python/pulumi_google_native/binaryauthorization/v1beta1/attestor_iam_policy.py +++ b/sdk/python/pulumi_google_native/binaryauthorization/v1beta1/attestor_iam_policy.py @@ -161,7 +161,7 @@ def _internal_init(__self__, __props__.__dict__["etag"] = etag __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["attestor_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["attestorId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AttestorIamPolicy, __self__).__init__( 'google-native:binaryauthorization/v1beta1:AttestorIamPolicy', diff --git a/sdk/python/pulumi_google_native/blockchainnodeengine/v1/blockchain_node.py b/sdk/python/pulumi_google_native/blockchainnodeengine/v1/blockchain_node.py index ac78be9730..609369a4c2 100644 --- a/sdk/python/pulumi_google_native/blockchainnodeengine/v1/blockchain_node.py +++ b/sdk/python/pulumi_google_native/blockchainnodeengine/v1/blockchain_node.py @@ -225,7 +225,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["blockchain_node_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["blockchainNodeId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(BlockchainNode, __self__).__init__( 'google-native:blockchainnodeengine/v1:BlockchainNode', diff --git a/sdk/python/pulumi_google_native/certificatemanager/v1/certificate.py b/sdk/python/pulumi_google_native/certificatemanager/v1/certificate.py index 084691469d..c5bb861001 100644 --- a/sdk/python/pulumi_google_native/certificatemanager/v1/certificate.py +++ b/sdk/python/pulumi_google_native/certificatemanager/v1/certificate.py @@ -243,7 +243,7 @@ def _internal_init(__self__, __props__.__dict__["pem_certificate"] = None __props__.__dict__["san_dnsnames"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["certificate_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["certificateId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Certificate, __self__).__init__( 'google-native:certificatemanager/v1:Certificate', diff --git a/sdk/python/pulumi_google_native/certificatemanager/v1/certificate_issuance_config.py b/sdk/python/pulumi_google_native/certificatemanager/v1/certificate_issuance_config.py index 56c29a00fe..ed592bb6aa 100644 --- a/sdk/python/pulumi_google_native/certificatemanager/v1/certificate_issuance_config.py +++ b/sdk/python/pulumi_google_native/certificatemanager/v1/certificate_issuance_config.py @@ -264,7 +264,7 @@ def _internal_init(__self__, __props__.__dict__["rotation_window_percentage"] = rotation_window_percentage __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["certificate_issuance_config_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["certificateIssuanceConfigId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CertificateIssuanceConfig, __self__).__init__( 'google-native:certificatemanager/v1:CertificateIssuanceConfig', diff --git a/sdk/python/pulumi_google_native/certificatemanager/v1/certificate_map.py b/sdk/python/pulumi_google_native/certificatemanager/v1/certificate_map.py index 852f366e77..5537a7b19c 100644 --- a/sdk/python/pulumi_google_native/certificatemanager/v1/certificate_map.py +++ b/sdk/python/pulumi_google_native/certificatemanager/v1/certificate_map.py @@ -179,7 +179,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["gclb_targets"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["certificate_map_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["certificateMapId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CertificateMap, __self__).__init__( 'google-native:certificatemanager/v1:CertificateMap', diff --git a/sdk/python/pulumi_google_native/certificatemanager/v1/certificate_map_entry.py b/sdk/python/pulumi_google_native/certificatemanager/v1/certificate_map_entry.py index 53c57c1799..3d946df809 100644 --- a/sdk/python/pulumi_google_native/certificatemanager/v1/certificate_map_entry.py +++ b/sdk/python/pulumi_google_native/certificatemanager/v1/certificate_map_entry.py @@ -255,7 +255,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["certificate_map_entry_id", "certificate_map_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["certificateMapEntryId", "certificateMapId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CertificateMapEntry, __self__).__init__( 'google-native:certificatemanager/v1:CertificateMapEntry', diff --git a/sdk/python/pulumi_google_native/certificatemanager/v1/dns_authorization.py b/sdk/python/pulumi_google_native/certificatemanager/v1/dns_authorization.py index 45872e9590..66e79988b1 100644 --- a/sdk/python/pulumi_google_native/certificatemanager/v1/dns_authorization.py +++ b/sdk/python/pulumi_google_native/certificatemanager/v1/dns_authorization.py @@ -200,7 +200,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["dns_resource_record"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dns_authorization_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dnsAuthorizationId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DnsAuthorization, __self__).__init__( 'google-native:certificatemanager/v1:DnsAuthorization', diff --git a/sdk/python/pulumi_google_native/certificatemanager/v1/trust_config.py b/sdk/python/pulumi_google_native/certificatemanager/v1/trust_config.py index f7cb5cae21..703574c9fa 100644 --- a/sdk/python/pulumi_google_native/certificatemanager/v1/trust_config.py +++ b/sdk/python/pulumi_google_native/certificatemanager/v1/trust_config.py @@ -219,7 +219,7 @@ def _internal_init(__self__, __props__.__dict__["trust_stores"] = trust_stores __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "trust_config_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "trustConfigId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TrustConfig, __self__).__init__( 'google-native:certificatemanager/v1:TrustConfig', diff --git a/sdk/python/pulumi_google_native/cloudasset/v1/feed.py b/sdk/python/pulumi_google_native/cloudasset/v1/feed.py index df9d49c100..e567c8b889 100644 --- a/sdk/python/pulumi_google_native/cloudasset/v1/feed.py +++ b/sdk/python/pulumi_google_native/cloudasset/v1/feed.py @@ -264,7 +264,7 @@ def _internal_init(__self__, if v1_id1 is None and not opts.urn: raise TypeError("Missing required property 'v1_id1'") __props__.__dict__["v1_id1"] = v1_id1 - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["v1_id", "v1_id1"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["v1Id", "v1Id1"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Feed, __self__).__init__( 'google-native:cloudasset/v1:Feed', diff --git a/sdk/python/pulumi_google_native/cloudasset/v1/saved_query.py b/sdk/python/pulumi_google_native/cloudasset/v1/saved_query.py index eb2383aad6..138a8ae241 100644 --- a/sdk/python/pulumi_google_native/cloudasset/v1/saved_query.py +++ b/sdk/python/pulumi_google_native/cloudasset/v1/saved_query.py @@ -205,7 +205,7 @@ def _internal_init(__self__, __props__.__dict__["creator"] = None __props__.__dict__["last_update_time"] = None __props__.__dict__["last_updater"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["saved_query_id", "v1_id", "v1_id1"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["savedQueryId", "v1Id", "v1Id1"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SavedQuery, __self__).__init__( 'google-native:cloudasset/v1:SavedQuery', diff --git a/sdk/python/pulumi_google_native/cloudbilling/v1/billing_account_iam_policy.py b/sdk/python/pulumi_google_native/cloudbilling/v1/billing_account_iam_policy.py index 4a6b42f597..6a54ab7c57 100644 --- a/sdk/python/pulumi_google_native/cloudbilling/v1/billing_account_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudbilling/v1/billing_account_iam_policy.py @@ -187,7 +187,7 @@ def _internal_init(__self__, __props__.__dict__["etag"] = etag __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["billing_account_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["billingAccountId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(BillingAccountIamPolicy, __self__).__init__( 'google-native:cloudbilling/v1:BillingAccountIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudbuild/v1/build.py b/sdk/python/pulumi_google_native/cloudbuild/v1/build.py index 8c80d32385..4a3ef2854f 100644 --- a/sdk/python/pulumi_google_native/cloudbuild/v1/build.py +++ b/sdk/python/pulumi_google_native/cloudbuild/v1/build.py @@ -399,7 +399,7 @@ def _internal_init(__self__, __props__.__dict__["status_detail"] = None __props__.__dict__["timing"] = None __props__.__dict__["warnings"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "project_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "projectId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Build, __self__).__init__( 'google-native:cloudbuild/v1:Build', diff --git a/sdk/python/pulumi_google_native/cloudbuild/v1/trigger.py b/sdk/python/pulumi_google_native/cloudbuild/v1/trigger.py index b362302c1b..38263b0286 100644 --- a/sdk/python/pulumi_google_native/cloudbuild/v1/trigger.py +++ b/sdk/python/pulumi_google_native/cloudbuild/v1/trigger.py @@ -619,7 +619,7 @@ def _internal_init(__self__, __props__.__dict__["trigger_template"] = trigger_template __props__.__dict__["webhook_config"] = webhook_config __props__.__dict__["create_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "project_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "projectId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Trigger, __self__).__init__( 'google-native:cloudbuild/v1:Trigger', diff --git a/sdk/python/pulumi_google_native/cloudbuild/v1/worker_pool.py b/sdk/python/pulumi_google_native/cloudbuild/v1/worker_pool.py index 634871cc07..d09264ae03 100644 --- a/sdk/python/pulumi_google_native/cloudbuild/v1/worker_pool.py +++ b/sdk/python/pulumi_google_native/cloudbuild/v1/worker_pool.py @@ -187,7 +187,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "worker_pool_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workerPoolId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(WorkerPool, __self__).__init__( 'google-native:cloudbuild/v1:WorkerPool', diff --git a/sdk/python/pulumi_google_native/cloudbuild/v1alpha2/worker_pool.py b/sdk/python/pulumi_google_native/cloudbuild/v1alpha2/worker_pool.py index 730a077186..eabbed7a24 100644 --- a/sdk/python/pulumi_google_native/cloudbuild/v1alpha2/worker_pool.py +++ b/sdk/python/pulumi_google_native/cloudbuild/v1alpha2/worker_pool.py @@ -170,7 +170,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "worker_pool_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "workerPoolId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(WorkerPool, __self__).__init__( 'google-native:cloudbuild/v1alpha2:WorkerPool', diff --git a/sdk/python/pulumi_google_native/cloudbuild/v1beta1/worker_pool.py b/sdk/python/pulumi_google_native/cloudbuild/v1beta1/worker_pool.py index 5b3f2f3c95..0b1a98008d 100644 --- a/sdk/python/pulumi_google_native/cloudbuild/v1beta1/worker_pool.py +++ b/sdk/python/pulumi_google_native/cloudbuild/v1beta1/worker_pool.py @@ -206,7 +206,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "worker_pool_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workerPoolId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(WorkerPool, __self__).__init__( 'google-native:cloudbuild/v1beta1:WorkerPool', diff --git a/sdk/python/pulumi_google_native/cloudbuild/v2/connection.py b/sdk/python/pulumi_google_native/cloudbuild/v2/connection.py index 8de7e4fd06..7c2aea395f 100644 --- a/sdk/python/pulumi_google_native/cloudbuild/v2/connection.py +++ b/sdk/python/pulumi_google_native/cloudbuild/v2/connection.py @@ -261,7 +261,7 @@ def _internal_init(__self__, __props__.__dict__["installation_state"] = None __props__.__dict__["reconciling"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connection_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connectionId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Connection, __self__).__init__( 'google-native:cloudbuild/v2:Connection', diff --git a/sdk/python/pulumi_google_native/cloudbuild/v2/connection_iam_policy.py b/sdk/python/pulumi_google_native/cloudbuild/v2/connection_iam_policy.py index f73abfcc64..b172a2fb16 100644 --- a/sdk/python/pulumi_google_native/cloudbuild/v2/connection_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudbuild/v2/connection_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connection_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connectionId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ConnectionIamPolicy, __self__).__init__( 'google-native:cloudbuild/v2:ConnectionIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudbuild/v2/repository.py b/sdk/python/pulumi_google_native/cloudbuild/v2/repository.py index e83b5e7599..f505eac3ec 100644 --- a/sdk/python/pulumi_google_native/cloudbuild/v2/repository.py +++ b/sdk/python/pulumi_google_native/cloudbuild/v2/repository.py @@ -215,7 +215,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None __props__.__dict__["webhook_id"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connection_id", "location", "project", "repository_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connectionId", "location", "project", "repositoryId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Repository, __self__).__init__( 'google-native:cloudbuild/v2:Repository', diff --git a/sdk/python/pulumi_google_native/cloudchannel/v1/_inputs.py b/sdk/python/pulumi_google_native/cloudchannel/v1/_inputs.py index 56784d8149..d82d101129 100644 --- a/sdk/python/pulumi_google_native/cloudchannel/v1/_inputs.py +++ b/sdk/python/pulumi_google_native/cloudchannel/v1/_inputs.py @@ -546,13 +546,11 @@ def rebilling_basis(self, value: pulumi.Input['GoogleCloudChannelV1RepricingConf @property @pulumi.getter(name="channelPartnerGranularity") + @_utilities.deprecated("""Applies the repricing configuration at the channel partner level. Only ChannelPartnerRepricingConfig supports this value. Deprecated: This is no longer supported. Use RepricingConfig.entitlement_granularity instead.""") def channel_partner_granularity(self) -> Optional[pulumi.Input['GoogleCloudChannelV1RepricingConfigChannelPartnerGranularityArgs']]: """ Applies the repricing configuration at the channel partner level. Only ChannelPartnerRepricingConfig supports this value. Deprecated: This is no longer supported. Use RepricingConfig.entitlement_granularity instead. """ - warnings.warn("""Applies the repricing configuration at the channel partner level. Only ChannelPartnerRepricingConfig supports this value. Deprecated: This is no longer supported. Use RepricingConfig.entitlement_granularity instead.""", DeprecationWarning) - pulumi.log.warn("""channel_partner_granularity is deprecated: Applies the repricing configuration at the channel partner level. Only ChannelPartnerRepricingConfig supports this value. Deprecated: This is no longer supported. Use RepricingConfig.entitlement_granularity instead.""") - return pulumi.get(self, "channel_partner_granularity") @channel_partner_granularity.setter diff --git a/sdk/python/pulumi_google_native/cloudchannel/v1/channel_partner_link.py b/sdk/python/pulumi_google_native/cloudchannel/v1/channel_partner_link.py index ce73e3273d..d50743db1d 100644 --- a/sdk/python/pulumi_google_native/cloudchannel/v1/channel_partner_link.py +++ b/sdk/python/pulumi_google_native/cloudchannel/v1/channel_partner_link.py @@ -136,7 +136,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["public_id"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["account_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["accountId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ChannelPartnerLink, __self__).__init__( 'google-native:cloudchannel/v1:ChannelPartnerLink', diff --git a/sdk/python/pulumi_google_native/cloudchannel/v1/channel_partner_repricing_config.py b/sdk/python/pulumi_google_native/cloudchannel/v1/channel_partner_repricing_config.py index 0e45ab4287..88967ac207 100644 --- a/sdk/python/pulumi_google_native/cloudchannel/v1/channel_partner_repricing_config.py +++ b/sdk/python/pulumi_google_native/cloudchannel/v1/channel_partner_repricing_config.py @@ -124,7 +124,7 @@ def _internal_init(__self__, __props__.__dict__["repricing_config"] = repricing_config __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["account_id", "channel_partner_link_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["accountId", "channelPartnerLinkId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ChannelPartnerRepricingConfig, __self__).__init__( 'google-native:cloudchannel/v1:ChannelPartnerRepricingConfig', diff --git a/sdk/python/pulumi_google_native/cloudchannel/v1/customer.py b/sdk/python/pulumi_google_native/cloudchannel/v1/customer.py index d673cd14a4..5730c14421 100644 --- a/sdk/python/pulumi_google_native/cloudchannel/v1/customer.py +++ b/sdk/python/pulumi_google_native/cloudchannel/v1/customer.py @@ -268,7 +268,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["account_id", "channel_partner_link_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["accountId", "channelPartnerLinkId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Customer, __self__).__init__( 'google-native:cloudchannel/v1:Customer', diff --git a/sdk/python/pulumi_google_native/cloudchannel/v1/customer_repricing_config.py b/sdk/python/pulumi_google_native/cloudchannel/v1/customer_repricing_config.py index e3d9beffd7..924f3f76d0 100644 --- a/sdk/python/pulumi_google_native/cloudchannel/v1/customer_repricing_config.py +++ b/sdk/python/pulumi_google_native/cloudchannel/v1/customer_repricing_config.py @@ -124,7 +124,7 @@ def _internal_init(__self__, __props__.__dict__["repricing_config"] = repricing_config __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["account_id", "customer_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["accountId", "customerId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CustomerRepricingConfig, __self__).__init__( 'google-native:cloudchannel/v1:CustomerRepricingConfig', diff --git a/sdk/python/pulumi_google_native/cloudchannel/v1/entitlement.py b/sdk/python/pulumi_google_native/cloudchannel/v1/entitlement.py index 9561de8669..83242683cd 100644 --- a/sdk/python/pulumi_google_native/cloudchannel/v1/entitlement.py +++ b/sdk/python/pulumi_google_native/cloudchannel/v1/entitlement.py @@ -253,7 +253,7 @@ def _internal_init(__self__, __props__.__dict__["suspension_reasons"] = None __props__.__dict__["trial_settings"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["account_id", "customer_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["accountId", "customerId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Entitlement, __self__).__init__( 'google-native:cloudchannel/v1:Entitlement', diff --git a/sdk/python/pulumi_google_native/cloudchannel/v1/outputs.py b/sdk/python/pulumi_google_native/cloudchannel/v1/outputs.py index 8a2434b5fb..8dd23d51f7 100644 --- a/sdk/python/pulumi_google_native/cloudchannel/v1/outputs.py +++ b/sdk/python/pulumi_google_native/cloudchannel/v1/outputs.py @@ -928,13 +928,11 @@ def adjustment(self) -> 'outputs.GoogleCloudChannelV1RepricingAdjustmentResponse @property @pulumi.getter(name="channelPartnerGranularity") + @_utilities.deprecated("""Applies the repricing configuration at the channel partner level. Only ChannelPartnerRepricingConfig supports this value. Deprecated: This is no longer supported. Use RepricingConfig.entitlement_granularity instead.""") def channel_partner_granularity(self) -> 'outputs.GoogleCloudChannelV1RepricingConfigChannelPartnerGranularityResponse': """ Applies the repricing configuration at the channel partner level. Only ChannelPartnerRepricingConfig supports this value. Deprecated: This is no longer supported. Use RepricingConfig.entitlement_granularity instead. """ - warnings.warn("""Applies the repricing configuration at the channel partner level. Only ChannelPartnerRepricingConfig supports this value. Deprecated: This is no longer supported. Use RepricingConfig.entitlement_granularity instead.""", DeprecationWarning) - pulumi.log.warn("""channel_partner_granularity is deprecated: Applies the repricing configuration at the channel partner level. Only ChannelPartnerRepricingConfig supports this value. Deprecated: This is no longer supported. Use RepricingConfig.entitlement_granularity instead.""") - return pulumi.get(self, "channel_partner_granularity") @property diff --git a/sdk/python/pulumi_google_native/clouddeploy/v1/automation.py b/sdk/python/pulumi_google_native/clouddeploy/v1/automation.py index b24cdbe207..b39f83c4f1 100644 --- a/sdk/python/pulumi_google_native/clouddeploy/v1/automation.py +++ b/sdk/python/pulumi_google_native/clouddeploy/v1/automation.py @@ -323,7 +323,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["automation_id", "delivery_pipeline_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["automationId", "deliveryPipelineId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Automation, __self__).__init__( 'google-native:clouddeploy/v1:Automation', diff --git a/sdk/python/pulumi_google_native/clouddeploy/v1/delivery_pipeline.py b/sdk/python/pulumi_google_native/clouddeploy/v1/delivery_pipeline.py index c15090d36a..75bafcb6b8 100644 --- a/sdk/python/pulumi_google_native/clouddeploy/v1/delivery_pipeline.py +++ b/sdk/python/pulumi_google_native/clouddeploy/v1/delivery_pipeline.py @@ -281,7 +281,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["delivery_pipeline_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["deliveryPipelineId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DeliveryPipeline, __self__).__init__( 'google-native:clouddeploy/v1:DeliveryPipeline', diff --git a/sdk/python/pulumi_google_native/clouddeploy/v1/delivery_pipeline_iam_policy.py b/sdk/python/pulumi_google_native/clouddeploy/v1/delivery_pipeline_iam_policy.py index 25df663d39..ad8b97b37f 100644 --- a/sdk/python/pulumi_google_native/clouddeploy/v1/delivery_pipeline_iam_policy.py +++ b/sdk/python/pulumi_google_native/clouddeploy/v1/delivery_pipeline_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["delivery_pipeline_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["deliveryPipelineId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DeliveryPipelineIamPolicy, __self__).__init__( 'google-native:clouddeploy/v1:DeliveryPipelineIamPolicy', diff --git a/sdk/python/pulumi_google_native/clouddeploy/v1/release.py b/sdk/python/pulumi_google_native/clouddeploy/v1/release.py index dd612b053b..51defd471f 100644 --- a/sdk/python/pulumi_google_native/clouddeploy/v1/release.py +++ b/sdk/python/pulumi_google_native/clouddeploy/v1/release.py @@ -368,7 +368,7 @@ def _internal_init(__self__, __props__.__dict__["target_renders"] = None __props__.__dict__["target_snapshots"] = None __props__.__dict__["uid"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["delivery_pipeline_id", "location", "project", "release_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["deliveryPipelineId", "location", "project", "releaseId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Release, __self__).__init__( 'google-native:clouddeploy/v1:Release', diff --git a/sdk/python/pulumi_google_native/clouddeploy/v1/rollout.py b/sdk/python/pulumi_google_native/clouddeploy/v1/rollout.py index 3ac56dfc8e..6a0f6bedc7 100644 --- a/sdk/python/pulumi_google_native/clouddeploy/v1/rollout.py +++ b/sdk/python/pulumi_google_native/clouddeploy/v1/rollout.py @@ -329,7 +329,7 @@ def _internal_init(__self__, __props__.__dict__["rolled_back_by_rollouts"] = None __props__.__dict__["state"] = None __props__.__dict__["uid"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["delivery_pipeline_id", "location", "project", "release_id", "rollout_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["deliveryPipelineId", "location", "project", "releaseId", "rolloutId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Rollout, __self__).__init__( 'google-native:clouddeploy/v1:Rollout', diff --git a/sdk/python/pulumi_google_native/clouddeploy/v1/target.py b/sdk/python/pulumi_google_native/clouddeploy/v1/target.py index 5c709e1817..0385c8deb2 100644 --- a/sdk/python/pulumi_google_native/clouddeploy/v1/target.py +++ b/sdk/python/pulumi_google_native/clouddeploy/v1/target.py @@ -381,7 +381,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "target_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "targetId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Target, __self__).__init__( 'google-native:clouddeploy/v1:Target', diff --git a/sdk/python/pulumi_google_native/clouddeploy/v1/target_iam_policy.py b/sdk/python/pulumi_google_native/clouddeploy/v1/target_iam_policy.py index 3a7d27d166..cea970d3ce 100644 --- a/sdk/python/pulumi_google_native/clouddeploy/v1/target_iam_policy.py +++ b/sdk/python/pulumi_google_native/clouddeploy/v1/target_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["target_id"] = target_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "target_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "targetId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TargetIamPolicy, __self__).__init__( 'google-native:clouddeploy/v1:TargetIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudfunctions/v1/function.py b/sdk/python/pulumi_google_native/cloudfunctions/v1/function.py index 473660e29d..7459d948a0 100644 --- a/sdk/python/pulumi_google_native/cloudfunctions/v1/function.py +++ b/sdk/python/pulumi_google_native/cloudfunctions/v1/function.py @@ -345,13 +345,11 @@ def name(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""Deprecated: use vpc_connector""") def network(self) -> Optional[pulumi.Input[str]]: """ Deprecated: use vpc_connector """ - warnings.warn("""Deprecated: use vpc_connector""", DeprecationWarning) - pulumi.log.warn("""network is deprecated: Deprecated: use vpc_connector""") - return pulumi.get(self, "network") @network.setter @@ -880,13 +878,11 @@ def name(self) -> pulumi.Output[str]: @property @pulumi.getter + @_utilities.deprecated("""Deprecated: use vpc_connector""") def network(self) -> pulumi.Output[str]: """ Deprecated: use vpc_connector """ - warnings.warn("""Deprecated: use vpc_connector""", DeprecationWarning) - pulumi.log.warn("""network is deprecated: Deprecated: use vpc_connector""") - return pulumi.get(self, "network") @property diff --git a/sdk/python/pulumi_google_native/cloudfunctions/v1/function_iam_policy.py b/sdk/python/pulumi_google_native/cloudfunctions/v1/function_iam_policy.py index e0f31d500d..42cb75c7ff 100644 --- a/sdk/python/pulumi_google_native/cloudfunctions/v1/function_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudfunctions/v1/function_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["function_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["functionId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FunctionIamPolicy, __self__).__init__( 'google-native:cloudfunctions/v1:FunctionIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudfunctions/v1/get_function.py b/sdk/python/pulumi_google_native/cloudfunctions/v1/get_function.py index fd633c136c..d68f8c24c0 100644 --- a/sdk/python/pulumi_google_native/cloudfunctions/v1/get_function.py +++ b/sdk/python/pulumi_google_native/cloudfunctions/v1/get_function.py @@ -266,13 +266,11 @@ def name(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""Deprecated: use vpc_connector""") def network(self) -> str: """ Deprecated: use vpc_connector """ - warnings.warn("""Deprecated: use vpc_connector""", DeprecationWarning) - pulumi.log.warn("""network is deprecated: Deprecated: use vpc_connector""") - return pulumi.get(self, "network") @property diff --git a/sdk/python/pulumi_google_native/cloudfunctions/v2/function_iam_policy.py b/sdk/python/pulumi_google_native/cloudfunctions/v2/function_iam_policy.py index 32b85d046b..30d5e8ec71 100644 --- a/sdk/python/pulumi_google_native/cloudfunctions/v2/function_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudfunctions/v2/function_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["function_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["functionId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FunctionIamPolicy, __self__).__init__( 'google-native:cloudfunctions/v2:FunctionIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudfunctions/v2alpha/function_iam_policy.py b/sdk/python/pulumi_google_native/cloudfunctions/v2alpha/function_iam_policy.py index 2a714dce92..335cf90983 100644 --- a/sdk/python/pulumi_google_native/cloudfunctions/v2alpha/function_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudfunctions/v2alpha/function_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["function_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["functionId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FunctionIamPolicy, __self__).__init__( 'google-native:cloudfunctions/v2alpha:FunctionIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudfunctions/v2beta/function_iam_policy.py b/sdk/python/pulumi_google_native/cloudfunctions/v2beta/function_iam_policy.py index 17bf2e561e..e28578a199 100644 --- a/sdk/python/pulumi_google_native/cloudfunctions/v2beta/function_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudfunctions/v2beta/function_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["function_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["functionId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FunctionIamPolicy, __self__).__init__( 'google-native:cloudfunctions/v2beta:FunctionIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudidentity/v1/membership.py b/sdk/python/pulumi_google_native/cloudidentity/v1/membership.py index f5a9b72f34..00dee397ac 100644 --- a/sdk/python/pulumi_google_native/cloudidentity/v1/membership.py +++ b/sdk/python/pulumi_google_native/cloudidentity/v1/membership.py @@ -130,7 +130,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["type"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["group_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["groupId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Membership, __self__).__init__( 'google-native:cloudidentity/v1:Membership', diff --git a/sdk/python/pulumi_google_native/cloudidentity/v1beta1/group.py b/sdk/python/pulumi_google_native/cloudidentity/v1beta1/group.py index e7e64350be..8564d1c7fd 100644 --- a/sdk/python/pulumi_google_native/cloudidentity/v1beta1/group.py +++ b/sdk/python/pulumi_google_native/cloudidentity/v1beta1/group.py @@ -237,7 +237,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["initial_group_config"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["initialGroupConfig"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Group, __self__).__init__( 'google-native:cloudidentity/v1beta1:Group', diff --git a/sdk/python/pulumi_google_native/cloudidentity/v1beta1/membership.py b/sdk/python/pulumi_google_native/cloudidentity/v1beta1/membership.py index 98a78018b9..ef924971c6 100644 --- a/sdk/python/pulumi_google_native/cloudidentity/v1beta1/membership.py +++ b/sdk/python/pulumi_google_native/cloudidentity/v1beta1/membership.py @@ -150,7 +150,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["type"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["group_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["groupId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Membership, __self__).__init__( 'google-native:cloudidentity/v1beta1:Membership', diff --git a/sdk/python/pulumi_google_native/cloudiot/v1/device.py b/sdk/python/pulumi_google_native/cloudiot/v1/device.py index 51caabe5af..e3a19a609e 100644 --- a/sdk/python/pulumi_google_native/cloudiot/v1/device.py +++ b/sdk/python/pulumi_google_native/cloudiot/v1/device.py @@ -282,7 +282,7 @@ def _internal_init(__self__, __props__.__dict__["last_state_time"] = None __props__.__dict__["num_id"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "registry_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "registryId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Device, __self__).__init__( 'google-native:cloudiot/v1:Device', diff --git a/sdk/python/pulumi_google_native/cloudiot/v1/registry_group_iam_policy.py b/sdk/python/pulumi_google_native/cloudiot/v1/registry_group_iam_policy.py index 11170006d4..7bb6fc75c0 100644 --- a/sdk/python/pulumi_google_native/cloudiot/v1/registry_group_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudiot/v1/registry_group_iam_policy.py @@ -192,7 +192,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'registry_id'") __props__.__dict__["registry_id"] = registry_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["group_id", "location", "project", "registry_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["groupId", "location", "project", "registryId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RegistryGroupIamPolicy, __self__).__init__( 'google-native:cloudiot/v1:RegistryGroupIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudiot/v1/registry_iam_policy.py b/sdk/python/pulumi_google_native/cloudiot/v1/registry_iam_policy.py index d7c8d5d564..95d1a10b2d 100644 --- a/sdk/python/pulumi_google_native/cloudiot/v1/registry_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudiot/v1/registry_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'registry_id'") __props__.__dict__["registry_id"] = registry_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "registry_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "registryId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RegistryIamPolicy, __self__).__init__( 'google-native:cloudiot/v1:RegistryIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudkms/v1/crypto_key.py b/sdk/python/pulumi_google_native/cloudkms/v1/crypto_key.py index b9213455c0..233425c488 100644 --- a/sdk/python/pulumi_google_native/cloudkms/v1/crypto_key.py +++ b/sdk/python/pulumi_google_native/cloudkms/v1/crypto_key.py @@ -320,7 +320,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["primary"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["crypto_key_id", "key_ring_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cryptoKeyId", "keyRingId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CryptoKey, __self__).__init__( 'google-native:cloudkms/v1:CryptoKey', diff --git a/sdk/python/pulumi_google_native/cloudkms/v1/crypto_key_version.py b/sdk/python/pulumi_google_native/cloudkms/v1/crypto_key_version.py index 12eb303b20..d94ad892be 100644 --- a/sdk/python/pulumi_google_native/cloudkms/v1/crypto_key_version.py +++ b/sdk/python/pulumi_google_native/cloudkms/v1/crypto_key_version.py @@ -186,7 +186,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["protection_level"] = None __props__.__dict__["reimport_eligible"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["crypto_key_id", "key_ring_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cryptoKeyId", "keyRingId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CryptoKeyVersion, __self__).__init__( 'google-native:cloudkms/v1:CryptoKeyVersion', diff --git a/sdk/python/pulumi_google_native/cloudkms/v1/ekm_connection.py b/sdk/python/pulumi_google_native/cloudkms/v1/ekm_connection.py index d9bc4acc26..4a1f6b50ae 100644 --- a/sdk/python/pulumi_google_native/cloudkms/v1/ekm_connection.py +++ b/sdk/python/pulumi_google_native/cloudkms/v1/ekm_connection.py @@ -203,7 +203,7 @@ def _internal_init(__self__, __props__.__dict__["service_resolvers"] = service_resolvers __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["ekm_connection_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["ekmConnectionId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EkmConnection, __self__).__init__( 'google-native:cloudkms/v1:EkmConnection', diff --git a/sdk/python/pulumi_google_native/cloudkms/v1/ekm_connection_iam_policy.py b/sdk/python/pulumi_google_native/cloudkms/v1/ekm_connection_iam_policy.py index 3308c5c84a..e473ce4d1e 100644 --- a/sdk/python/pulumi_google_native/cloudkms/v1/ekm_connection_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudkms/v1/ekm_connection_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["ekm_connection_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["ekmConnectionId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EkmConnectionIamPolicy, __self__).__init__( 'google-native:cloudkms/v1:EkmConnectionIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudkms/v1/import_job.py b/sdk/python/pulumi_google_native/cloudkms/v1/import_job.py index 5ff87325ef..ef3310b047 100644 --- a/sdk/python/pulumi_google_native/cloudkms/v1/import_job.py +++ b/sdk/python/pulumi_google_native/cloudkms/v1/import_job.py @@ -186,7 +186,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["public_key"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["import_job_id", "key_ring_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["importJobId", "keyRingId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ImportJob, __self__).__init__( 'google-native:cloudkms/v1:ImportJob', diff --git a/sdk/python/pulumi_google_native/cloudkms/v1/key_ring.py b/sdk/python/pulumi_google_native/cloudkms/v1/key_ring.py index d213c33ba2..40ac0bc6b5 100644 --- a/sdk/python/pulumi_google_native/cloudkms/v1/key_ring.py +++ b/sdk/python/pulumi_google_native/cloudkms/v1/key_ring.py @@ -120,7 +120,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["key_ring_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["keyRingId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(KeyRing, __self__).__init__( 'google-native:cloudkms/v1:KeyRing', diff --git a/sdk/python/pulumi_google_native/cloudkms/v1/key_ring_crypto_key_iam_policy.py b/sdk/python/pulumi_google_native/cloudkms/v1/key_ring_crypto_key_iam_policy.py index f833c5b0ee..406c9c6e94 100644 --- a/sdk/python/pulumi_google_native/cloudkms/v1/key_ring_crypto_key_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudkms/v1/key_ring_crypto_key_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["crypto_key_id", "key_ring_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cryptoKeyId", "keyRingId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(KeyRingCryptoKeyIamPolicy, __self__).__init__( 'google-native:cloudkms/v1:KeyRingCryptoKeyIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudkms/v1/key_ring_iam_policy.py b/sdk/python/pulumi_google_native/cloudkms/v1/key_ring_iam_policy.py index 235dd28b30..1d7167d919 100644 --- a/sdk/python/pulumi_google_native/cloudkms/v1/key_ring_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudkms/v1/key_ring_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["key_ring_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["keyRingId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(KeyRingIamPolicy, __self__).__init__( 'google-native:cloudkms/v1:KeyRingIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudkms/v1/key_ring_import_job_iam_policy.py b/sdk/python/pulumi_google_native/cloudkms/v1/key_ring_import_job_iam_policy.py index 24600a71c3..023aa92368 100644 --- a/sdk/python/pulumi_google_native/cloudkms/v1/key_ring_import_job_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudkms/v1/key_ring_import_job_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["import_job_id", "key_ring_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["importJobId", "keyRingId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(KeyRingImportJobIamPolicy, __self__).__init__( 'google-native:cloudkms/v1:KeyRingImportJobIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudresourcemanager/v1/organization_iam_policy.py b/sdk/python/pulumi_google_native/cloudresourcemanager/v1/organization_iam_policy.py index 2643fe28dd..d0d6506945 100644 --- a/sdk/python/pulumi_google_native/cloudresourcemanager/v1/organization_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudresourcemanager/v1/organization_iam_policy.py @@ -187,7 +187,7 @@ def _internal_init(__self__, __props__.__dict__["organization_id"] = organization_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationIamPolicy, __self__).__init__( 'google-native:cloudresourcemanager/v1:OrganizationIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudresourcemanager/v1beta1/organization_iam_policy.py b/sdk/python/pulumi_google_native/cloudresourcemanager/v1beta1/organization_iam_policy.py index 98989a5a13..8ac12043c1 100644 --- a/sdk/python/pulumi_google_native/cloudresourcemanager/v1beta1/organization_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudresourcemanager/v1beta1/organization_iam_policy.py @@ -187,7 +187,7 @@ def _internal_init(__self__, __props__.__dict__["organization_id"] = organization_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationIamPolicy, __self__).__init__( 'google-native:cloudresourcemanager/v1beta1:OrganizationIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudresourcemanager/v2/folder_iam_policy.py b/sdk/python/pulumi_google_native/cloudresourcemanager/v2/folder_iam_policy.py index dcd679e442..b791342d44 100644 --- a/sdk/python/pulumi_google_native/cloudresourcemanager/v2/folder_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudresourcemanager/v2/folder_iam_policy.py @@ -187,7 +187,7 @@ def _internal_init(__self__, __props__.__dict__["folder_id"] = folder_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folder_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folderId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FolderIamPolicy, __self__).__init__( 'google-native:cloudresourcemanager/v2:FolderIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudresourcemanager/v2beta1/folder_iam_policy.py b/sdk/python/pulumi_google_native/cloudresourcemanager/v2beta1/folder_iam_policy.py index f0cbe53710..bc66c9e83c 100644 --- a/sdk/python/pulumi_google_native/cloudresourcemanager/v2beta1/folder_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudresourcemanager/v2beta1/folder_iam_policy.py @@ -187,7 +187,7 @@ def _internal_init(__self__, __props__.__dict__["folder_id"] = folder_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folder_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folderId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FolderIamPolicy, __self__).__init__( 'google-native:cloudresourcemanager/v2beta1:FolderIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudresourcemanager/v3/folder_iam_policy.py b/sdk/python/pulumi_google_native/cloudresourcemanager/v3/folder_iam_policy.py index c6df9f0244..f65181feda 100644 --- a/sdk/python/pulumi_google_native/cloudresourcemanager/v3/folder_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudresourcemanager/v3/folder_iam_policy.py @@ -187,7 +187,7 @@ def _internal_init(__self__, __props__.__dict__["folder_id"] = folder_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folder_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folderId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FolderIamPolicy, __self__).__init__( 'google-native:cloudresourcemanager/v3:FolderIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudresourcemanager/v3/organization_iam_policy.py b/sdk/python/pulumi_google_native/cloudresourcemanager/v3/organization_iam_policy.py index 432bdfdc38..bebb566000 100644 --- a/sdk/python/pulumi_google_native/cloudresourcemanager/v3/organization_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudresourcemanager/v3/organization_iam_policy.py @@ -187,7 +187,7 @@ def _internal_init(__self__, __props__.__dict__["organization_id"] = organization_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationIamPolicy, __self__).__init__( 'google-native:cloudresourcemanager/v3:OrganizationIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudresourcemanager/v3/tag_key_iam_policy.py b/sdk/python/pulumi_google_native/cloudresourcemanager/v3/tag_key_iam_policy.py index 6d1d7d9974..8452dfe32c 100644 --- a/sdk/python/pulumi_google_native/cloudresourcemanager/v3/tag_key_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudresourcemanager/v3/tag_key_iam_policy.py @@ -187,7 +187,7 @@ def _internal_init(__self__, __props__.__dict__["tag_key_id"] = tag_key_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["tag_key_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["tagKeyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TagKeyIamPolicy, __self__).__init__( 'google-native:cloudresourcemanager/v3:TagKeyIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudresourcemanager/v3/tag_value_iam_policy.py b/sdk/python/pulumi_google_native/cloudresourcemanager/v3/tag_value_iam_policy.py index 600802de99..cff10747ab 100644 --- a/sdk/python/pulumi_google_native/cloudresourcemanager/v3/tag_value_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudresourcemanager/v3/tag_value_iam_policy.py @@ -187,7 +187,7 @@ def _internal_init(__self__, __props__.__dict__["tag_value_id"] = tag_value_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["tag_value_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["tagValueId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TagValueIamPolicy, __self__).__init__( 'google-native:cloudresourcemanager/v3:TagValueIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudsupport/v2/case.py b/sdk/python/pulumi_google_native/cloudsupport/v2/case.py index eb005aaa60..3337d34309 100644 --- a/sdk/python/pulumi_google_native/cloudsupport/v2/case.py +++ b/sdk/python/pulumi_google_native/cloudsupport/v2/case.py @@ -346,7 +346,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["v2_id", "v2_id1"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["v2Id", "v2Id1"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Case, __self__).__init__( 'google-native:cloudsupport/v2:Case', diff --git a/sdk/python/pulumi_google_native/cloudsupport/v2beta/case.py b/sdk/python/pulumi_google_native/cloudsupport/v2beta/case.py index d14afc4f86..009fcd2233 100644 --- a/sdk/python/pulumi_google_native/cloudsupport/v2beta/case.py +++ b/sdk/python/pulumi_google_native/cloudsupport/v2beta/case.py @@ -366,7 +366,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["v2beta_id1", "v2betum_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["v2betaId1", "v2betumId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Case, __self__).__init__( 'google-native:cloudsupport/v2beta:Case', diff --git a/sdk/python/pulumi_google_native/cloudtasks/v2/queue_iam_policy.py b/sdk/python/pulumi_google_native/cloudtasks/v2/queue_iam_policy.py index d673aedc76..4651840d07 100644 --- a/sdk/python/pulumi_google_native/cloudtasks/v2/queue_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudtasks/v2/queue_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'queue_id'") __props__.__dict__["queue_id"] = queue_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "queue_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "queueId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(QueueIamPolicy, __self__).__init__( 'google-native:cloudtasks/v2:QueueIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudtasks/v2/task.py b/sdk/python/pulumi_google_native/cloudtasks/v2/task.py index ad87a3ee2f..fafab6516c 100644 --- a/sdk/python/pulumi_google_native/cloudtasks/v2/task.py +++ b/sdk/python/pulumi_google_native/cloudtasks/v2/task.py @@ -239,7 +239,7 @@ def _internal_init(__self__, __props__.__dict__["last_attempt"] = None __props__.__dict__["response_count"] = None __props__.__dict__["view"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "queue_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "queueId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Task, __self__).__init__( 'google-native:cloudtasks/v2:Task', diff --git a/sdk/python/pulumi_google_native/cloudtasks/v2beta2/queue_iam_policy.py b/sdk/python/pulumi_google_native/cloudtasks/v2beta2/queue_iam_policy.py index 9fe92e6d88..a7187cea69 100644 --- a/sdk/python/pulumi_google_native/cloudtasks/v2beta2/queue_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudtasks/v2beta2/queue_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'queue_id'") __props__.__dict__["queue_id"] = queue_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "queue_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "queueId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(QueueIamPolicy, __self__).__init__( 'google-native:cloudtasks/v2beta2:QueueIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudtasks/v2beta2/task.py b/sdk/python/pulumi_google_native/cloudtasks/v2beta2/task.py index 2a1572db68..3b583ce53e 100644 --- a/sdk/python/pulumi_google_native/cloudtasks/v2beta2/task.py +++ b/sdk/python/pulumi_google_native/cloudtasks/v2beta2/task.py @@ -236,7 +236,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["status"] = None __props__.__dict__["view"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "queue_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "queueId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Task, __self__).__init__( 'google-native:cloudtasks/v2beta2:Task', diff --git a/sdk/python/pulumi_google_native/cloudtasks/v2beta3/queue_iam_policy.py b/sdk/python/pulumi_google_native/cloudtasks/v2beta3/queue_iam_policy.py index e43ef7d496..18abfcaa49 100644 --- a/sdk/python/pulumi_google_native/cloudtasks/v2beta3/queue_iam_policy.py +++ b/sdk/python/pulumi_google_native/cloudtasks/v2beta3/queue_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'queue_id'") __props__.__dict__["queue_id"] = queue_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "queue_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "queueId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(QueueIamPolicy, __self__).__init__( 'google-native:cloudtasks/v2beta3:QueueIamPolicy', diff --git a/sdk/python/pulumi_google_native/cloudtasks/v2beta3/task.py b/sdk/python/pulumi_google_native/cloudtasks/v2beta3/task.py index 8aab558193..b08d942932 100644 --- a/sdk/python/pulumi_google_native/cloudtasks/v2beta3/task.py +++ b/sdk/python/pulumi_google_native/cloudtasks/v2beta3/task.py @@ -259,7 +259,7 @@ def _internal_init(__self__, __props__.__dict__["last_attempt"] = None __props__.__dict__["response_count"] = None __props__.__dict__["view"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "queue_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "queueId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Task, __self__).__init__( 'google-native:cloudtasks/v2beta3:Task', diff --git a/sdk/python/pulumi_google_native/compute/alpha/_inputs.py b/sdk/python/pulumi_google_native/compute/alpha/_inputs.py index 7691031d87..76e424022b 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/_inputs.py +++ b/sdk/python/pulumi_google_native/compute/alpha/_inputs.py @@ -1215,13 +1215,11 @@ def guest_os_features(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[' @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") def interface(self) -> Optional[pulumi.Input['AttachedDiskInitializeParamsInterface']]: """ [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. """ - warnings.warn("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""", DeprecationWarning) - pulumi.log.warn("""interface is deprecated: [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") - return pulumi.get(self, "interface") @interface.setter @@ -3192,13 +3190,11 @@ def enable(self, value: Optional[pulumi.Input[bool]]): @property @pulumi.getter + @_utilities.deprecated("""Deprecated in favor of optionalMode. This field can only be specified if logging is enabled for this backend service. Configures whether all, none or a subset of optional fields should be added to the reported logs. One of [INCLUDE_ALL_OPTIONAL, EXCLUDE_ALL_OPTIONAL, CUSTOM]. Default is EXCLUDE_ALL_OPTIONAL.""") def optional(self) -> Optional[pulumi.Input['BackendServiceLogConfigOptional']]: """ Deprecated in favor of optionalMode. This field can only be specified if logging is enabled for this backend service. Configures whether all, none or a subset of optional fields should be added to the reported logs. One of [INCLUDE_ALL_OPTIONAL, EXCLUDE_ALL_OPTIONAL, CUSTOM]. Default is EXCLUDE_ALL_OPTIONAL. """ - warnings.warn("""Deprecated in favor of optionalMode. This field can only be specified if logging is enabled for this backend service. Configures whether all, none or a subset of optional fields should be added to the reported logs. One of [INCLUDE_ALL_OPTIONAL, EXCLUDE_ALL_OPTIONAL, CUSTOM]. Default is EXCLUDE_ALL_OPTIONAL.""", DeprecationWarning) - pulumi.log.warn("""optional is deprecated: Deprecated in favor of optionalMode. This field can only be specified if logging is enabled for this backend service. Configures whether all, none or a subset of optional fields should be added to the reported logs. One of [INCLUDE_ALL_OPTIONAL, EXCLUDE_ALL_OPTIONAL, CUSTOM]. Default is EXCLUDE_ALL_OPTIONAL.""") - return pulumi.get(self, "optional") @optional.setter @@ -7758,13 +7754,11 @@ def container_type(self, value: Optional[pulumi.Input['ImageRawDiskContainerType @property @pulumi.getter(name="sha1Checksum") + @_utilities.deprecated("""[Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created.""") def sha1_checksum(self) -> Optional[pulumi.Input[str]]: """ [Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created. """ - warnings.warn("""[Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created.""", DeprecationWarning) - pulumi.log.warn("""sha1_checksum is deprecated: [Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created.""") - return pulumi.get(self, "sha1_checksum") @sha1_checksum.setter @@ -8311,13 +8305,11 @@ def name(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""Tag describing the version. Used to trigger rollout of a target version even if instance_template remains unchanged. Deprecated in favor of 'name'.""") def tag(self) -> Optional[pulumi.Input[str]]: """ Tag describing the version. Used to trigger rollout of a target version even if instance_template remains unchanged. Deprecated in favor of 'name'. """ - warnings.warn("""Tag describing the version. Used to trigger rollout of a target version even if instance_template remains unchanged. Deprecated in favor of 'name'.""", DeprecationWarning) - pulumi.log.warn("""tag is deprecated: Tag describing the version. Used to trigger rollout of a target version even if instance_template remains unchanged. Deprecated in favor of 'name'.""") - return pulumi.get(self, "tag") @tag.setter @@ -9978,13 +9970,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="defaultPort") + @_utilities.deprecated("""The default port used if the port number is not specified in the network endpoint. [Deprecated] This field is deprecated.""") def default_port(self) -> Optional[pulumi.Input[int]]: """ The default port used if the port number is not specified in the network endpoint. [Deprecated] This field is deprecated. """ - warnings.warn("""The default port used if the port number is not specified in the network endpoint. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""default_port is deprecated: The default port used if the port number is not specified in the network endpoint. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "default_port") @default_port.setter @@ -9993,13 +9983,11 @@ def default_port(self, value: Optional[pulumi.Input[int]]): @property @pulumi.getter + @_utilities.deprecated("""The URL of the network to which all network endpoints in the NEG belong. Uses \"default\" project network if unspecified. [Deprecated] This field is deprecated.""") def network(self) -> Optional[pulumi.Input[str]]: """ The URL of the network to which all network endpoints in the NEG belong. Uses "default" project network if unspecified. [Deprecated] This field is deprecated. """ - warnings.warn("""The URL of the network to which all network endpoints in the NEG belong. Uses \"default\" project network if unspecified. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""network is deprecated: The URL of the network to which all network endpoints in the NEG belong. Uses \"default\" project network if unspecified. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "network") @network.setter @@ -10008,13 +9996,11 @@ def network(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""Optional URL of the subnetwork to which all network endpoints in the NEG belong. [Deprecated] This field is deprecated.""") def subnetwork(self) -> Optional[pulumi.Input[str]]: """ Optional URL of the subnetwork to which all network endpoints in the NEG belong. [Deprecated] This field is deprecated. """ - warnings.warn("""Optional URL of the subnetwork to which all network endpoints in the NEG belong. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""subnetwork is deprecated: Optional URL of the subnetwork to which all network endpoints in the NEG belong. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "subnetwork") @subnetwork.setter @@ -16919,13 +16905,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use clientTlsPolicy instead.""") def authentication(self) -> Optional[pulumi.Input[str]]: """ [Deprecated] Use clientTlsPolicy instead. """ - warnings.warn("""[Deprecated] Use clientTlsPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authentication is deprecated: [Deprecated] Use clientTlsPolicy instead.""") - return pulumi.get(self, "authentication") @authentication.setter @@ -16934,13 +16918,11 @@ def authentication(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="authenticationPolicy") + @_utilities.deprecated("""[Deprecated] Authentication policy defines what authentication methods can be accepted on backends, and if authenticated, which method/certificate will set the request principal. request principal.""") def authentication_policy(self) -> Optional[pulumi.Input['AuthenticationPolicyArgs']]: """ [Deprecated] Authentication policy defines what authentication methods can be accepted on backends, and if authenticated, which method/certificate will set the request principal. request principal. """ - warnings.warn("""[Deprecated] Authentication policy defines what authentication methods can be accepted on backends, and if authenticated, which method/certificate will set the request principal. request principal.""", DeprecationWarning) - pulumi.log.warn("""authentication_policy is deprecated: [Deprecated] Authentication policy defines what authentication methods can be accepted on backends, and if authenticated, which method/certificate will set the request principal. request principal.""") - return pulumi.get(self, "authentication_policy") @authentication_policy.setter @@ -16949,13 +16931,11 @@ def authentication_policy(self, value: Optional[pulumi.Input['AuthenticationPoli @property @pulumi.getter(name="authorizationConfig") + @_utilities.deprecated("""[Deprecated] Authorization config defines the Role Based Access Control (RBAC) config. Authorization config defines the Role Based Access Control (RBAC) config.""") def authorization_config(self) -> Optional[pulumi.Input['AuthorizationConfigArgs']]: """ [Deprecated] Authorization config defines the Role Based Access Control (RBAC) config. Authorization config defines the Role Based Access Control (RBAC) config. """ - warnings.warn("""[Deprecated] Authorization config defines the Role Based Access Control (RBAC) config. Authorization config defines the Role Based Access Control (RBAC) config.""", DeprecationWarning) - pulumi.log.warn("""authorization_config is deprecated: [Deprecated] Authorization config defines the Role Based Access Control (RBAC) config. Authorization config defines the Role Based Access Control (RBAC) config.""") - return pulumi.get(self, "authorization_config") @authorization_config.setter @@ -16988,13 +16968,11 @@ def client_tls_policy(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="clientTlsSettings") + @_utilities.deprecated("""[Deprecated] TLS Settings for the backend service.""") def client_tls_settings(self) -> Optional[pulumi.Input['ClientTlsSettingsArgs']]: """ [Deprecated] TLS Settings for the backend service. """ - warnings.warn("""[Deprecated] TLS Settings for the backend service.""", DeprecationWarning) - pulumi.log.warn("""client_tls_settings is deprecated: [Deprecated] TLS Settings for the backend service.""") - return pulumi.get(self, "client_tls_settings") @client_tls_settings.setter @@ -18376,13 +18354,11 @@ def expected_redirect_response_code(self, value: Optional[pulumi.Input[int]]): @property @pulumi.getter(name="expectedUrlRedirect") + @_utilities.deprecated("""The expected URL that should be redirected to for the host and path being tested. [Deprecated] This field is deprecated. Use expected_output_url instead.""") def expected_url_redirect(self) -> Optional[pulumi.Input[str]]: """ The expected URL that should be redirected to for the host and path being tested. [Deprecated] This field is deprecated. Use expected_output_url instead. """ - warnings.warn("""The expected URL that should be redirected to for the host and path being tested. [Deprecated] This field is deprecated. Use expected_output_url instead.""", DeprecationWarning) - pulumi.log.warn("""expected_url_redirect is deprecated: The expected URL that should be redirected to for the host and path being tested. [Deprecated] This field is deprecated. Use expected_output_url instead.""") - return pulumi.get(self, "expected_url_redirect") @expected_url_redirect.setter diff --git a/sdk/python/pulumi_google_native/compute/alpha/backend_service.py b/sdk/python/pulumi_google_native/compute/alpha/backend_service.py index 12af4766c4..90c0bf54b2 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/backend_service.py +++ b/sdk/python/pulumi_google_native/compute/alpha/backend_service.py @@ -467,13 +467,11 @@ def outlier_detection(self, value: Optional[pulumi.Input['OutlierDetectionArgs'] @property @pulumi.getter + @_utilities.deprecated("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") def port(self) -> Optional[pulumi.Input[int]]: """ Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port. """ - warnings.warn("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""", DeprecationWarning) - pulumi.log.warn("""port is deprecated: Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") - return pulumi.get(self, "port") @port.setter @@ -1116,13 +1114,11 @@ def outlier_detection(self) -> pulumi.Output['outputs.OutlierDetectionResponse'] @property @pulumi.getter + @_utilities.deprecated("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") def port(self) -> pulumi.Output[int]: """ Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port. """ - warnings.warn("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""", DeprecationWarning) - pulumi.log.warn("""port is deprecated: Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") - return pulumi.get(self, "port") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/disk.py b/sdk/python/pulumi_google_native/compute/alpha/disk.py index e8ebde3d6a..d894dca021 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/disk.py +++ b/sdk/python/pulumi_google_native/compute/alpha/disk.py @@ -271,13 +271,11 @@ def guest_os_features(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[' @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") def interface(self) -> Optional[pulumi.Input['DiskInterface']]: """ [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. """ - warnings.warn("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""", DeprecationWarning) - pulumi.log.warn("""interface is deprecated: [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") - return pulumi.get(self, "interface") @interface.setter @@ -571,13 +569,11 @@ def storage_pool(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="storageType") + @_utilities.deprecated("""[Deprecated] Storage type of the persistent disk.""") def storage_type(self) -> Optional[pulumi.Input['DiskStorageType']]: """ [Deprecated] Storage type of the persistent disk. """ - warnings.warn("""[Deprecated] Storage type of the persistent disk.""", DeprecationWarning) - pulumi.log.warn("""storage_type is deprecated: [Deprecated] Storage type of the persistent disk.""") - return pulumi.get(self, "storage_type") @storage_type.setter @@ -994,13 +990,11 @@ def guest_os_features(self) -> pulumi.Output[Sequence['outputs.GuestOsFeatureRes @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") def interface(self) -> pulumi.Output[str]: """ [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. """ - warnings.warn("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""", DeprecationWarning) - pulumi.log.warn("""interface is deprecated: [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") - return pulumi.get(self, "interface") @property @@ -1330,13 +1324,11 @@ def storage_pool(self) -> pulumi.Output[str]: @property @pulumi.getter(name="storageType") + @_utilities.deprecated("""[Deprecated] Storage type of the persistent disk.""") def storage_type(self) -> pulumi.Output[str]: """ [Deprecated] Storage type of the persistent disk. """ - warnings.warn("""[Deprecated] Storage type of the persistent disk.""", DeprecationWarning) - pulumi.log.warn("""storage_type is deprecated: [Deprecated] Storage type of the persistent disk.""") - return pulumi.get(self, "storage_type") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/firewall.py b/sdk/python/pulumi_google_native/compute/alpha/firewall.py index 04c6c24a02..76a39b800c 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/firewall.py +++ b/sdk/python/pulumi_google_native/compute/alpha/firewall.py @@ -169,13 +169,11 @@ def disabled(self, value: Optional[pulumi.Input[bool]]): @property @pulumi.getter(name="enableLogging") + @_utilities.deprecated("""Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging.""") def enable_logging(self) -> Optional[pulumi.Input[bool]]: """ Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging. """ - warnings.warn("""Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging.""", DeprecationWarning) - pulumi.log.warn("""enable_logging is deprecated: Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging.""") - return pulumi.get(self, "enable_logging") @enable_logging.setter @@ -538,13 +536,11 @@ def disabled(self) -> pulumi.Output[bool]: @property @pulumi.getter(name="enableLogging") + @_utilities.deprecated("""Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging.""") def enable_logging(self) -> pulumi.Output[bool]: """ Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging. """ - warnings.warn("""Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging.""", DeprecationWarning) - pulumi.log.warn("""enable_logging is deprecated: Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging.""") - return pulumi.get(self, "enable_logging") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/firewall_policy.py b/sdk/python/pulumi_google_native/compute/alpha/firewall_policy.py index 5f21251a94..c11397c170 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/firewall_policy.py +++ b/sdk/python/pulumi_google_native/compute/alpha/firewall_policy.py @@ -86,13 +86,11 @@ def description(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> Optional[pulumi.Input[str]]: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @display_name.setter @@ -328,13 +326,11 @@ def description(self) -> pulumi.Output[str]: @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> pulumi.Output[str]: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/get_backend_service.py b/sdk/python/pulumi_google_native/compute/alpha/get_backend_service.py index cc692c80d9..c0d4ef2a1b 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/get_backend_service.py +++ b/sdk/python/pulumi_google_native/compute/alpha/get_backend_service.py @@ -381,13 +381,11 @@ def outlier_detection(self) -> 'outputs.OutlierDetectionResponse': @property @pulumi.getter + @_utilities.deprecated("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") def port(self) -> int: """ Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port. """ - warnings.warn("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""", DeprecationWarning) - pulumi.log.warn("""port is deprecated: Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") - return pulumi.get(self, "port") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/get_disk.py b/sdk/python/pulumi_google_native/compute/alpha/get_disk.py index 6be3c307e2..ca595f897c 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/get_disk.py +++ b/sdk/python/pulumi_google_native/compute/alpha/get_disk.py @@ -268,13 +268,11 @@ def guest_os_features(self) -> Sequence['outputs.GuestOsFeatureResponse']: @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") def interface(self) -> str: """ [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. """ - warnings.warn("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""", DeprecationWarning) - pulumi.log.warn("""interface is deprecated: [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") - return pulumi.get(self, "interface") @property @@ -591,13 +589,11 @@ def storage_pool(self) -> str: @property @pulumi.getter(name="storageType") + @_utilities.deprecated("""[Deprecated] Storage type of the persistent disk.""") def storage_type(self) -> str: """ [Deprecated] Storage type of the persistent disk. """ - warnings.warn("""[Deprecated] Storage type of the persistent disk.""", DeprecationWarning) - pulumi.log.warn("""storage_type is deprecated: [Deprecated] Storage type of the persistent disk.""") - return pulumi.get(self, "storage_type") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/get_firewall.py b/sdk/python/pulumi_google_native/compute/alpha/get_firewall.py index d3392dea5a..a679b3d598 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/get_firewall.py +++ b/sdk/python/pulumi_google_native/compute/alpha/get_firewall.py @@ -139,13 +139,11 @@ def disabled(self) -> bool: @property @pulumi.getter(name="enableLogging") + @_utilities.deprecated("""Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging.""") def enable_logging(self) -> bool: """ Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging. """ - warnings.warn("""Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging.""", DeprecationWarning) - pulumi.log.warn("""enable_logging is deprecated: Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging.""") - return pulumi.get(self, "enable_logging") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/get_firewall_policy.py b/sdk/python/pulumi_google_native/compute/alpha/get_firewall_policy.py index d399d2d439..6c01b2d6fc 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/get_firewall_policy.py +++ b/sdk/python/pulumi_google_native/compute/alpha/get_firewall_policy.py @@ -92,13 +92,11 @@ def description(self) -> str: @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> str: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/get_global_network_endpoint_group.py b/sdk/python/pulumi_google_native/compute/alpha/get_global_network_endpoint_group.py index 8fb6b20c3a..37640473c3 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/get_global_network_endpoint_group.py +++ b/sdk/python/pulumi_google_native/compute/alpha/get_global_network_endpoint_group.py @@ -164,13 +164,11 @@ def kind(self) -> str: @property @pulumi.getter(name="loadBalancer") + @_utilities.deprecated("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") def load_balancer(self) -> 'outputs.NetworkEndpointGroupLbNetworkEndpointGroupResponse': """ This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated. """ - warnings.warn("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""load_balancer is deprecated: This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "load_balancer") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/get_interconnect_attachment.py b/sdk/python/pulumi_google_native/compute/alpha/get_interconnect_attachment.py index 4bd39f3b89..da6542cc99 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/get_interconnect_attachment.py +++ b/sdk/python/pulumi_google_native/compute/alpha/get_interconnect_attachment.py @@ -271,13 +271,11 @@ def encryption(self) -> str: @property @pulumi.getter(name="googleReferenceId") + @_utilities.deprecated("""[Output Only] Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.""") def google_reference_id(self) -> str: """ Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used. """ - warnings.warn("""[Output Only] Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.""", DeprecationWarning) - pulumi.log.warn("""google_reference_id is deprecated: [Output Only] Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.""") - return pulumi.get(self, "google_reference_id") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/get_license.py b/sdk/python/pulumi_google_native/compute/alpha/get_license.py index c88babfdf2..31a0eaa256 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/get_license.py +++ b/sdk/python/pulumi_google_native/compute/alpha/get_license.py @@ -53,13 +53,11 @@ def __init__(__self__, charges_use_fee=None, creation_timestamp=None, descriptio @property @pulumi.getter(name="chargesUseFee") + @_utilities.deprecated("""[Output Only] Deprecated. This field no longer reflects whether a license charges a usage fee.""") def charges_use_fee(self) -> bool: """ Deprecated. This field no longer reflects whether a license charges a usage fee. """ - warnings.warn("""[Output Only] Deprecated. This field no longer reflects whether a license charges a usage fee.""", DeprecationWarning) - pulumi.log.warn("""charges_use_fee is deprecated: [Output Only] Deprecated. This field no longer reflects whether a license charges a usage fee.""") - return pulumi.get(self, "charges_use_fee") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/get_network.py b/sdk/python/pulumi_google_native/compute/alpha/get_network.py index 5b510bf624..3516436bc8 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/get_network.py +++ b/sdk/python/pulumi_google_native/compute/alpha/get_network.py @@ -133,13 +133,11 @@ def internal_ipv6_range(self) -> str: @property @pulumi.getter(name="ipv4Range") + @_utilities.deprecated("""Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""") def ipv4_range(self) -> str: """ Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created. """ - warnings.warn("""Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""", DeprecationWarning) - pulumi.log.warn("""ipv4_range is deprecated: Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""") - return pulumi.get(self, "ipv4_range") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/get_network_endpoint_group.py b/sdk/python/pulumi_google_native/compute/alpha/get_network_endpoint_group.py index a951748f62..fa91168e0a 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/get_network_endpoint_group.py +++ b/sdk/python/pulumi_google_native/compute/alpha/get_network_endpoint_group.py @@ -164,13 +164,11 @@ def kind(self) -> str: @property @pulumi.getter(name="loadBalancer") + @_utilities.deprecated("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") def load_balancer(self) -> 'outputs.NetworkEndpointGroupLbNetworkEndpointGroupResponse': """ This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated. """ - warnings.warn("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""load_balancer is deprecated: This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "load_balancer") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/get_network_firewall_policy.py b/sdk/python/pulumi_google_native/compute/alpha/get_network_firewall_policy.py index 61e9d5b67f..8f9864453f 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/get_network_firewall_policy.py +++ b/sdk/python/pulumi_google_native/compute/alpha/get_network_firewall_policy.py @@ -92,13 +92,11 @@ def description(self) -> str: @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> str: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/get_region_backend_service.py b/sdk/python/pulumi_google_native/compute/alpha/get_region_backend_service.py index a2d74c792a..77cce183fa 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/get_region_backend_service.py +++ b/sdk/python/pulumi_google_native/compute/alpha/get_region_backend_service.py @@ -381,13 +381,11 @@ def outlier_detection(self) -> 'outputs.OutlierDetectionResponse': @property @pulumi.getter + @_utilities.deprecated("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") def port(self) -> int: """ Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port. """ - warnings.warn("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""", DeprecationWarning) - pulumi.log.warn("""port is deprecated: Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") - return pulumi.get(self, "port") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/get_region_disk.py b/sdk/python/pulumi_google_native/compute/alpha/get_region_disk.py index 45d63432c8..f131784683 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/get_region_disk.py +++ b/sdk/python/pulumi_google_native/compute/alpha/get_region_disk.py @@ -268,13 +268,11 @@ def guest_os_features(self) -> Sequence['outputs.GuestOsFeatureResponse']: @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") def interface(self) -> str: """ [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. """ - warnings.warn("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""", DeprecationWarning) - pulumi.log.warn("""interface is deprecated: [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") - return pulumi.get(self, "interface") @property @@ -591,13 +589,11 @@ def storage_pool(self) -> str: @property @pulumi.getter(name="storageType") + @_utilities.deprecated("""[Deprecated] Storage type of the persistent disk.""") def storage_type(self) -> str: """ [Deprecated] Storage type of the persistent disk. """ - warnings.warn("""[Deprecated] Storage type of the persistent disk.""", DeprecationWarning) - pulumi.log.warn("""storage_type is deprecated: [Deprecated] Storage type of the persistent disk.""") - return pulumi.get(self, "storage_type") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/get_region_health_check_service.py b/sdk/python/pulumi_google_native/compute/alpha/get_region_health_check_service.py index ee113a1942..4391567450 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/get_region_health_check_service.py +++ b/sdk/python/pulumi_google_native/compute/alpha/get_region_health_check_service.py @@ -101,13 +101,11 @@ def health_status_aggregation_policy(self) -> str: @property @pulumi.getter(name="healthStatusAggregationStrategy") + @_utilities.deprecated("""This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. .""") def health_status_aggregation_strategy(self) -> str: """ This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. . """ - warnings.warn("""This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. .""", DeprecationWarning) - pulumi.log.warn("""health_status_aggregation_strategy is deprecated: This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. .""") - return pulumi.get(self, "health_status_aggregation_strategy") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/get_region_network_endpoint_group.py b/sdk/python/pulumi_google_native/compute/alpha/get_region_network_endpoint_group.py index e5a245097b..2df525cd29 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/get_region_network_endpoint_group.py +++ b/sdk/python/pulumi_google_native/compute/alpha/get_region_network_endpoint_group.py @@ -164,13 +164,11 @@ def kind(self) -> str: @property @pulumi.getter(name="loadBalancer") + @_utilities.deprecated("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") def load_balancer(self) -> 'outputs.NetworkEndpointGroupLbNetworkEndpointGroupResponse': """ This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated. """ - warnings.warn("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""load_balancer is deprecated: This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "load_balancer") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/get_region_network_firewall_policy.py b/sdk/python/pulumi_google_native/compute/alpha/get_region_network_firewall_policy.py index 51e01044b4..1a3ab4e0fa 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/get_region_network_firewall_policy.py +++ b/sdk/python/pulumi_google_native/compute/alpha/get_region_network_firewall_policy.py @@ -92,13 +92,11 @@ def description(self) -> str: @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> str: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/get_region_target_https_proxy.py b/sdk/python/pulumi_google_native/compute/alpha/get_region_target_https_proxy.py index 110223c164..0e6bff9b4e 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/get_region_target_https_proxy.py +++ b/sdk/python/pulumi_google_native/compute/alpha/get_region_target_https_proxy.py @@ -82,24 +82,20 @@ def __init__(__self__, authentication=None, authorization=None, authorization_po @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use serverTlsPolicy instead.""") def authentication(self) -> str: """ [Deprecated] Use serverTlsPolicy instead. """ - warnings.warn("""[Deprecated] Use serverTlsPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authentication is deprecated: [Deprecated] Use serverTlsPolicy instead.""") - return pulumi.get(self, "authentication") @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use authorizationPolicy instead.""") def authorization(self) -> str: """ [Deprecated] Use authorizationPolicy instead. """ - warnings.warn("""[Deprecated] Use authorizationPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authorization is deprecated: [Deprecated] Use authorizationPolicy instead.""") - return pulumi.get(self, "authorization") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/get_subnetwork.py b/sdk/python/pulumi_google_native/compute/alpha/get_subnetwork.py index f43a145ee3..a57a8c8c47 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/get_subnetwork.py +++ b/sdk/python/pulumi_google_native/compute/alpha/get_subnetwork.py @@ -167,13 +167,11 @@ def enable_l2(self) -> bool: @property @pulumi.getter(name="enablePrivateV6Access") + @_utilities.deprecated("""Deprecated in favor of enable in PrivateIpv6GoogleAccess. Whether the VMs in this subnet can directly access Google services via internal IPv6 addresses. This field can be both set at resource creation time and updated using patch.""") def enable_private_v6_access(self) -> bool: """ Deprecated in favor of enable in PrivateIpv6GoogleAccess. Whether the VMs in this subnet can directly access Google services via internal IPv6 addresses. This field can be both set at resource creation time and updated using patch. """ - warnings.warn("""Deprecated in favor of enable in PrivateIpv6GoogleAccess. Whether the VMs in this subnet can directly access Google services via internal IPv6 addresses. This field can be both set at resource creation time and updated using patch.""", DeprecationWarning) - pulumi.log.warn("""enable_private_v6_access is deprecated: Deprecated in favor of enable in PrivateIpv6GoogleAccess. Whether the VMs in this subnet can directly access Google services via internal IPv6 addresses. This field can be both set at resource creation time and updated using patch.""") - return pulumi.get(self, "enable_private_v6_access") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/get_target_https_proxy.py b/sdk/python/pulumi_google_native/compute/alpha/get_target_https_proxy.py index d0f6a99155..6ed3d996ec 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/get_target_https_proxy.py +++ b/sdk/python/pulumi_google_native/compute/alpha/get_target_https_proxy.py @@ -82,24 +82,20 @@ def __init__(__self__, authentication=None, authorization=None, authorization_po @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use serverTlsPolicy instead.""") def authentication(self) -> str: """ [Deprecated] Use serverTlsPolicy instead. """ - warnings.warn("""[Deprecated] Use serverTlsPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authentication is deprecated: [Deprecated] Use serverTlsPolicy instead.""") - return pulumi.get(self, "authentication") @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use authorizationPolicy instead.""") def authorization(self) -> str: """ [Deprecated] Use authorizationPolicy instead. """ - warnings.warn("""[Deprecated] Use authorizationPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authorization is deprecated: [Deprecated] Use authorizationPolicy instead.""") - return pulumi.get(self, "authorization") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/global_network_endpoint_group.py b/sdk/python/pulumi_google_native/compute/alpha/global_network_endpoint_group.py index 0a3a2b0830..064b834b8a 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/global_network_endpoint_group.py +++ b/sdk/python/pulumi_google_native/compute/alpha/global_network_endpoint_group.py @@ -180,13 +180,11 @@ def description(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="loadBalancer") + @_utilities.deprecated("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") def load_balancer(self) -> Optional[pulumi.Input['NetworkEndpointGroupLbNetworkEndpointGroupArgs']]: """ This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated. """ - warnings.warn("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""load_balancer is deprecated: This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "load_balancer") @load_balancer.setter @@ -555,13 +553,11 @@ def kind(self) -> pulumi.Output[str]: @property @pulumi.getter(name="loadBalancer") + @_utilities.deprecated("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") def load_balancer(self) -> pulumi.Output['outputs.NetworkEndpointGroupLbNetworkEndpointGroupResponse']: """ This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated. """ - warnings.warn("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""load_balancer is deprecated: This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "load_balancer") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/instance_group_manager_resize_request.py b/sdk/python/pulumi_google_native/compute/alpha/instance_group_manager_resize_request.py index 7d84149aa1..126f393e09 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/instance_group_manager_resize_request.py +++ b/sdk/python/pulumi_google_native/compute/alpha/instance_group_manager_resize_request.py @@ -258,7 +258,7 @@ def _internal_init(__self__, __props__.__dict__["self_link_with_id"] = None __props__.__dict__["state"] = None __props__.__dict__["status"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_group_manager", "project", "zone"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceGroupManager", "project", "zone"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(InstanceGroupManagerResizeRequest, __self__).__init__( 'google-native:compute/alpha:InstanceGroupManagerResizeRequest', diff --git a/sdk/python/pulumi_google_native/compute/alpha/interconnect_attachment.py b/sdk/python/pulumi_google_native/compute/alpha/interconnect_attachment.py index 661a463302..5fa40cb3d2 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/interconnect_attachment.py +++ b/sdk/python/pulumi_google_native/compute/alpha/interconnect_attachment.py @@ -773,13 +773,11 @@ def encryption(self) -> pulumi.Output[str]: @property @pulumi.getter(name="googleReferenceId") + @_utilities.deprecated("""[Output Only] Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.""") def google_reference_id(self) -> pulumi.Output[str]: """ Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used. """ - warnings.warn("""[Output Only] Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.""", DeprecationWarning) - pulumi.log.warn("""google_reference_id is deprecated: [Output Only] Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.""") - return pulumi.get(self, "google_reference_id") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/license.py b/sdk/python/pulumi_google_native/compute/alpha/license.py index 36da10feb6..9e471b3ce6 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/license.py +++ b/sdk/python/pulumi_google_native/compute/alpha/license.py @@ -222,13 +222,11 @@ def get(resource_name: str, @property @pulumi.getter(name="chargesUseFee") + @_utilities.deprecated("""[Output Only] Deprecated. This field no longer reflects whether a license charges a usage fee.""") def charges_use_fee(self) -> pulumi.Output[bool]: """ Deprecated. This field no longer reflects whether a license charges a usage fee. """ - warnings.warn("""[Output Only] Deprecated. This field no longer reflects whether a license charges a usage fee.""", DeprecationWarning) - pulumi.log.warn("""charges_use_fee is deprecated: [Output Only] Deprecated. This field no longer reflects whether a license charges a usage fee.""") - return pulumi.get(self, "charges_use_fee") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/machine_image.py b/sdk/python/pulumi_google_native/compute/alpha/machine_image.py index 9aa4b8409c..cd3a2cdf3f 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/machine_image.py +++ b/sdk/python/pulumi_google_native/compute/alpha/machine_image.py @@ -271,7 +271,7 @@ def _internal_init(__self__, __props__.__dict__["source_instance_properties"] = None __props__.__dict__["status"] = None __props__.__dict__["total_storage_bytes"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "source_instance"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "sourceInstance"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MachineImage, __self__).__init__( 'google-native:compute/alpha:MachineImage', diff --git a/sdk/python/pulumi_google_native/compute/alpha/network.py b/sdk/python/pulumi_google_native/compute/alpha/network.py index cd5488a0e7..fb6e3c71ed 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/network.py +++ b/sdk/python/pulumi_google_native/compute/alpha/network.py @@ -117,13 +117,11 @@ def internal_ipv6_range(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="ipv4Range") + @_utilities.deprecated("""Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""") def ipv4_range(self) -> Optional[pulumi.Input[str]]: """ Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created. """ - warnings.warn("""Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""", DeprecationWarning) - pulumi.log.warn("""ipv4_range is deprecated: Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""") - return pulumi.get(self, "ipv4_range") @ipv4_range.setter @@ -401,13 +399,11 @@ def internal_ipv6_range(self) -> pulumi.Output[str]: @property @pulumi.getter(name="ipv4Range") + @_utilities.deprecated("""Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""") def ipv4_range(self) -> pulumi.Output[str]: """ Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created. """ - warnings.warn("""Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""", DeprecationWarning) - pulumi.log.warn("""ipv4_range is deprecated: Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""") - return pulumi.get(self, "ipv4_range") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/network_endpoint_group.py b/sdk/python/pulumi_google_native/compute/alpha/network_endpoint_group.py index 0f0849c667..43d786eeab 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/network_endpoint_group.py +++ b/sdk/python/pulumi_google_native/compute/alpha/network_endpoint_group.py @@ -183,13 +183,11 @@ def description(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="loadBalancer") + @_utilities.deprecated("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") def load_balancer(self) -> Optional[pulumi.Input['NetworkEndpointGroupLbNetworkEndpointGroupArgs']]: """ This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated. """ - warnings.warn("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""load_balancer is deprecated: This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "load_balancer") @load_balancer.setter @@ -569,13 +567,11 @@ def kind(self) -> pulumi.Output[str]: @property @pulumi.getter(name="loadBalancer") + @_utilities.deprecated("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") def load_balancer(self) -> pulumi.Output['outputs.NetworkEndpointGroupLbNetworkEndpointGroupResponse']: """ This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated. """ - warnings.warn("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""load_balancer is deprecated: This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "load_balancer") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/network_firewall_policy.py b/sdk/python/pulumi_google_native/compute/alpha/network_firewall_policy.py index 0fb686e351..519c71881b 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/network_firewall_policy.py +++ b/sdk/python/pulumi_google_native/compute/alpha/network_firewall_policy.py @@ -85,13 +85,11 @@ def description(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> Optional[pulumi.Input[str]]: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @display_name.setter @@ -325,13 +323,11 @@ def description(self) -> pulumi.Output[str]: @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> pulumi.Output[str]: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/node_group.py b/sdk/python/pulumi_google_native/compute/alpha/node_group.py index 2e59311394..c018df50c8 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/node_group.py +++ b/sdk/python/pulumi_google_native/compute/alpha/node_group.py @@ -320,7 +320,7 @@ def _internal_init(__self__, __props__.__dict__["self_link_with_id"] = None __props__.__dict__["size"] = None __props__.__dict__["status"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["initial_node_count", "project", "zone"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["initialNodeCount", "project", "zone"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(NodeGroup, __self__).__init__( 'google-native:compute/alpha:NodeGroup', diff --git a/sdk/python/pulumi_google_native/compute/alpha/outputs.py b/sdk/python/pulumi_google_native/compute/alpha/outputs.py index de65018e33..a24845b99c 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/outputs.py +++ b/sdk/python/pulumi_google_native/compute/alpha/outputs.py @@ -1473,13 +1473,11 @@ def guest_os_features(self) -> Sequence['outputs.GuestOsFeatureResponse']: @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") def interface(self) -> str: """ [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. """ - warnings.warn("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""", DeprecationWarning) - pulumi.log.warn("""interface is deprecated: [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") - return pulumi.get(self, "interface") @property @@ -3790,13 +3788,11 @@ def enable(self) -> bool: @property @pulumi.getter + @_utilities.deprecated("""Deprecated in favor of optionalMode. This field can only be specified if logging is enabled for this backend service. Configures whether all, none or a subset of optional fields should be added to the reported logs. One of [INCLUDE_ALL_OPTIONAL, EXCLUDE_ALL_OPTIONAL, CUSTOM]. Default is EXCLUDE_ALL_OPTIONAL.""") def optional(self) -> str: """ Deprecated in favor of optionalMode. This field can only be specified if logging is enabled for this backend service. Configures whether all, none or a subset of optional fields should be added to the reported logs. One of [INCLUDE_ALL_OPTIONAL, EXCLUDE_ALL_OPTIONAL, CUSTOM]. Default is EXCLUDE_ALL_OPTIONAL. """ - warnings.warn("""Deprecated in favor of optionalMode. This field can only be specified if logging is enabled for this backend service. Configures whether all, none or a subset of optional fields should be added to the reported logs. One of [INCLUDE_ALL_OPTIONAL, EXCLUDE_ALL_OPTIONAL, CUSTOM]. Default is EXCLUDE_ALL_OPTIONAL.""", DeprecationWarning) - pulumi.log.warn("""optional is deprecated: Deprecated in favor of optionalMode. This field can only be specified if logging is enabled for this backend service. Configures whether all, none or a subset of optional fields should be added to the reported logs. One of [INCLUDE_ALL_OPTIONAL, EXCLUDE_ALL_OPTIONAL, CUSTOM]. Default is EXCLUDE_ALL_OPTIONAL.""") - return pulumi.get(self, "optional") @property @@ -8850,13 +8846,11 @@ def container_type(self) -> str: @property @pulumi.getter(name="sha1Checksum") + @_utilities.deprecated("""[Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created.""") def sha1_checksum(self) -> str: """ [Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created. """ - warnings.warn("""[Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created.""", DeprecationWarning) - pulumi.log.warn("""sha1_checksum is deprecated: [Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created.""") - return pulumi.get(self, "sha1_checksum") @property @@ -9827,13 +9821,11 @@ def has_stateful_config(self) -> bool: @property @pulumi.getter(name="isStateful") + @_utilities.deprecated("""[Output Only] A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful configuration even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions. This field is deprecated in favor of has_stateful_config.""") def is_stateful(self) -> bool: """ A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful configuration even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions. This field is deprecated in favor of has_stateful_config. """ - warnings.warn("""[Output Only] A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful configuration even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions. This field is deprecated in favor of has_stateful_config.""", DeprecationWarning) - pulumi.log.warn("""is_stateful is deprecated: [Output Only] A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful configuration even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions. This field is deprecated in favor of has_stateful_config.""") - return pulumi.get(self, "is_stateful") @property @@ -10059,13 +10051,11 @@ def name(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""Tag describing the version. Used to trigger rollout of a target version even if instance_template remains unchanged. Deprecated in favor of 'name'.""") def tag(self) -> str: """ Tag describing the version. Used to trigger rollout of a target version even if instance_template remains unchanged. Deprecated in favor of 'name'. """ - warnings.warn("""Tag describing the version. Used to trigger rollout of a target version even if instance_template remains unchanged. Deprecated in favor of 'name'.""", DeprecationWarning) - pulumi.log.warn("""tag is deprecated: Tag describing the version. Used to trigger rollout of a target version even if instance_template remains unchanged. Deprecated in favor of 'name'.""") - return pulumi.get(self, "tag") @property @@ -12332,46 +12322,38 @@ def __init__(__self__, *, @property @pulumi.getter(name="defaultPort") + @_utilities.deprecated("""The default port used if the port number is not specified in the network endpoint. [Deprecated] This field is deprecated.""") def default_port(self) -> int: """ The default port used if the port number is not specified in the network endpoint. [Deprecated] This field is deprecated. """ - warnings.warn("""The default port used if the port number is not specified in the network endpoint. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""default_port is deprecated: The default port used if the port number is not specified in the network endpoint. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "default_port") @property @pulumi.getter + @_utilities.deprecated("""The URL of the network to which all network endpoints in the NEG belong. Uses \"default\" project network if unspecified. [Deprecated] This field is deprecated.""") def network(self) -> str: """ The URL of the network to which all network endpoints in the NEG belong. Uses "default" project network if unspecified. [Deprecated] This field is deprecated. """ - warnings.warn("""The URL of the network to which all network endpoints in the NEG belong. Uses \"default\" project network if unspecified. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""network is deprecated: The URL of the network to which all network endpoints in the NEG belong. Uses \"default\" project network if unspecified. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "network") @property @pulumi.getter + @_utilities.deprecated("""Optional URL of the subnetwork to which all network endpoints in the NEG belong. [Deprecated] This field is deprecated.""") def subnetwork(self) -> str: """ Optional URL of the subnetwork to which all network endpoints in the NEG belong. [Deprecated] This field is deprecated. """ - warnings.warn("""Optional URL of the subnetwork to which all network endpoints in the NEG belong. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""subnetwork is deprecated: Optional URL of the subnetwork to which all network endpoints in the NEG belong. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "subnetwork") @property @pulumi.getter + @_utilities.deprecated("""[Output Only] The URL of the zone where the network endpoint group is located. [Deprecated] This field is deprecated.""") def zone(self) -> str: """ The URL of the zone where the network endpoint group is located. [Deprecated] This field is deprecated. """ - warnings.warn("""[Output Only] The URL of the zone where the network endpoint group is located. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""zone is deprecated: [Output Only] The URL of the zone where the network endpoint group is located. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "zone") @@ -20823,13 +20805,11 @@ def redirect_target(self) -> str: @property @pulumi.getter(name="ruleManagedProtectionTier") + @_utilities.deprecated("""[Output Only] The minimum managed protection tier required for this rule. [Deprecated] Use requiredManagedProtectionTiers instead.""") def rule_managed_protection_tier(self) -> str: """ The minimum managed protection tier required for this rule. [Deprecated] Use requiredManagedProtectionTiers instead. """ - warnings.warn("""[Output Only] The minimum managed protection tier required for this rule. [Deprecated] Use requiredManagedProtectionTiers instead.""", DeprecationWarning) - pulumi.log.warn("""rule_managed_protection_tier is deprecated: [Output Only] The minimum managed protection tier required for this rule. [Deprecated] Use requiredManagedProtectionTiers instead.""") - return pulumi.get(self, "rule_managed_protection_tier") @property @@ -20987,35 +20967,29 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use clientTlsPolicy instead.""") def authentication(self) -> str: """ [Deprecated] Use clientTlsPolicy instead. """ - warnings.warn("""[Deprecated] Use clientTlsPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authentication is deprecated: [Deprecated] Use clientTlsPolicy instead.""") - return pulumi.get(self, "authentication") @property @pulumi.getter(name="authenticationPolicy") + @_utilities.deprecated("""[Deprecated] Authentication policy defines what authentication methods can be accepted on backends, and if authenticated, which method/certificate will set the request principal. request principal.""") def authentication_policy(self) -> 'outputs.AuthenticationPolicyResponse': """ [Deprecated] Authentication policy defines what authentication methods can be accepted on backends, and if authenticated, which method/certificate will set the request principal. request principal. """ - warnings.warn("""[Deprecated] Authentication policy defines what authentication methods can be accepted on backends, and if authenticated, which method/certificate will set the request principal. request principal.""", DeprecationWarning) - pulumi.log.warn("""authentication_policy is deprecated: [Deprecated] Authentication policy defines what authentication methods can be accepted on backends, and if authenticated, which method/certificate will set the request principal. request principal.""") - return pulumi.get(self, "authentication_policy") @property @pulumi.getter(name="authorizationConfig") + @_utilities.deprecated("""[Deprecated] Authorization config defines the Role Based Access Control (RBAC) config. Authorization config defines the Role Based Access Control (RBAC) config.""") def authorization_config(self) -> 'outputs.AuthorizationConfigResponse': """ [Deprecated] Authorization config defines the Role Based Access Control (RBAC) config. Authorization config defines the Role Based Access Control (RBAC) config. """ - warnings.warn("""[Deprecated] Authorization config defines the Role Based Access Control (RBAC) config. Authorization config defines the Role Based Access Control (RBAC) config.""", DeprecationWarning) - pulumi.log.warn("""authorization_config is deprecated: [Deprecated] Authorization config defines the Role Based Access Control (RBAC) config. Authorization config defines the Role Based Access Control (RBAC) config.""") - return pulumi.get(self, "authorization_config") @property @@ -21036,13 +21010,11 @@ def client_tls_policy(self) -> str: @property @pulumi.getter(name="clientTlsSettings") + @_utilities.deprecated("""[Deprecated] TLS Settings for the backend service.""") def client_tls_settings(self) -> 'outputs.ClientTlsSettingsResponse': """ [Deprecated] TLS Settings for the backend service. """ - warnings.warn("""[Deprecated] TLS Settings for the backend service.""", DeprecationWarning) - pulumi.log.warn("""client_tls_settings is deprecated: [Deprecated] TLS Settings for the backend service.""") - return pulumi.get(self, "client_tls_settings") @property @@ -23065,13 +23037,11 @@ def can_reschedule(self) -> bool: @property @pulumi.getter + @_utilities.deprecated("""[Output Only] The date when the maintenance will take place. This value is in RFC3339 text format. DEPRECATED: Use window_start_time instead.""") def date(self) -> str: """ The date when the maintenance will take place. This value is in RFC3339 text format. DEPRECATED: Use window_start_time instead. """ - warnings.warn("""[Output Only] The date when the maintenance will take place. This value is in RFC3339 text format. DEPRECATED: Use window_start_time instead.""", DeprecationWarning) - pulumi.log.warn("""date is deprecated: [Output Only] The date when the maintenance will take place. This value is in RFC3339 text format. DEPRECATED: Use window_start_time instead.""") - return pulumi.get(self, "date") @property @@ -23089,24 +23059,20 @@ def maintenance_status(self) -> str: @property @pulumi.getter(name="startTimeWindow") + @_utilities.deprecated("""[Output Only] The start time window of the maintenance disruption. DEPRECATED: Use window_start_time instead. TimeWindow is a container for two strings that represent timestamps in \"yyyy-MM-dd'T'HH:mm:ssZ\" text format.""") def start_time_window(self) -> 'outputs.UpcomingMaintenanceTimeWindowResponse': """ The start time window of the maintenance disruption. DEPRECATED: Use window_start_time instead. TimeWindow is a container for two strings that represent timestamps in "yyyy-MM-dd'T'HH:mm:ssZ" text format. """ - warnings.warn("""[Output Only] The start time window of the maintenance disruption. DEPRECATED: Use window_start_time instead. TimeWindow is a container for two strings that represent timestamps in \"yyyy-MM-dd'T'HH:mm:ssZ\" text format.""", DeprecationWarning) - pulumi.log.warn("""start_time_window is deprecated: [Output Only] The start time window of the maintenance disruption. DEPRECATED: Use window_start_time instead. TimeWindow is a container for two strings that represent timestamps in \"yyyy-MM-dd'T'HH:mm:ssZ\" text format.""") - return pulumi.get(self, "start_time_window") @property @pulumi.getter + @_utilities.deprecated("""[Output Only] The time when the maintenance will take place. This value is in RFC3339 text format. DEPRECATED: Use window_start_time instead.""") def time(self) -> str: """ The time when the maintenance will take place. This value is in RFC3339 text format. DEPRECATED: Use window_start_time instead. """ - warnings.warn("""[Output Only] The time when the maintenance will take place. This value is in RFC3339 text format. DEPRECATED: Use window_start_time instead.""", DeprecationWarning) - pulumi.log.warn("""time is deprecated: [Output Only] The time when the maintenance will take place. This value is in RFC3339 text format. DEPRECATED: Use window_start_time instead.""") - return pulumi.get(self, "time") @property @@ -23286,13 +23252,11 @@ def expected_redirect_response_code(self) -> int: @property @pulumi.getter(name="expectedUrlRedirect") + @_utilities.deprecated("""The expected URL that should be redirected to for the host and path being tested. [Deprecated] This field is deprecated. Use expected_output_url instead.""") def expected_url_redirect(self) -> str: """ The expected URL that should be redirected to for the host and path being tested. [Deprecated] This field is deprecated. Use expected_output_url instead. """ - warnings.warn("""The expected URL that should be redirected to for the host and path being tested. [Deprecated] This field is deprecated. Use expected_output_url instead.""", DeprecationWarning) - pulumi.log.warn("""expected_url_redirect is deprecated: The expected URL that should be redirected to for the host and path being tested. [Deprecated] This field is deprecated. Use expected_output_url instead.""") - return pulumi.get(self, "expected_url_redirect") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/region_backend_service.py b/sdk/python/pulumi_google_native/compute/alpha/region_backend_service.py index bacd415e86..4363c8f272 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/region_backend_service.py +++ b/sdk/python/pulumi_google_native/compute/alpha/region_backend_service.py @@ -478,13 +478,11 @@ def outlier_detection(self, value: Optional[pulumi.Input['OutlierDetectionArgs'] @property @pulumi.getter + @_utilities.deprecated("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") def port(self) -> Optional[pulumi.Input[int]]: """ Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port. """ - warnings.warn("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""", DeprecationWarning) - pulumi.log.warn("""port is deprecated: Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") - return pulumi.get(self, "port") @port.setter @@ -1131,13 +1129,11 @@ def outlier_detection(self) -> pulumi.Output['outputs.OutlierDetectionResponse'] @property @pulumi.getter + @_utilities.deprecated("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") def port(self) -> pulumi.Output[int]: """ Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port. """ - warnings.warn("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""", DeprecationWarning) - pulumi.log.warn("""port is deprecated: Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") - return pulumi.get(self, "port") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/region_disk.py b/sdk/python/pulumi_google_native/compute/alpha/region_disk.py index 2361afd4e8..f81eb81b4c 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/region_disk.py +++ b/sdk/python/pulumi_google_native/compute/alpha/region_disk.py @@ -279,13 +279,11 @@ def guest_os_features(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[' @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") def interface(self) -> Optional[pulumi.Input['RegionDiskInterface']]: """ [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. """ - warnings.warn("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""", DeprecationWarning) - pulumi.log.warn("""interface is deprecated: [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") - return pulumi.get(self, "interface") @interface.setter @@ -579,13 +577,11 @@ def storage_pool(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="storageType") + @_utilities.deprecated("""[Deprecated] Storage type of the persistent disk.""") def storage_type(self) -> Optional[pulumi.Input['RegionDiskStorageType']]: """ [Deprecated] Storage type of the persistent disk. """ - warnings.warn("""[Deprecated] Storage type of the persistent disk.""", DeprecationWarning) - pulumi.log.warn("""storage_type is deprecated: [Deprecated] Storage type of the persistent disk.""") - return pulumi.get(self, "storage_type") @storage_type.setter @@ -995,13 +991,11 @@ def guest_os_features(self) -> pulumi.Output[Sequence['outputs.GuestOsFeatureRes @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") def interface(self) -> pulumi.Output[str]: """ [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. """ - warnings.warn("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""", DeprecationWarning) - pulumi.log.warn("""interface is deprecated: [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") - return pulumi.get(self, "interface") @property @@ -1328,13 +1322,11 @@ def storage_pool(self) -> pulumi.Output[str]: @property @pulumi.getter(name="storageType") + @_utilities.deprecated("""[Deprecated] Storage type of the persistent disk.""") def storage_type(self) -> pulumi.Output[str]: """ [Deprecated] Storage type of the persistent disk. """ - warnings.warn("""[Deprecated] Storage type of the persistent disk.""", DeprecationWarning) - pulumi.log.warn("""storage_type is deprecated: [Deprecated] Storage type of the persistent disk.""") - return pulumi.get(self, "storage_type") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/region_health_check_service.py b/sdk/python/pulumi_google_native/compute/alpha/region_health_check_service.py index 31d937cd78..8d07ed65b4 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/region_health_check_service.py +++ b/sdk/python/pulumi_google_native/compute/alpha/region_health_check_service.py @@ -106,13 +106,11 @@ def health_status_aggregation_policy(self, value: Optional[pulumi.Input['RegionH @property @pulumi.getter(name="healthStatusAggregationStrategy") + @_utilities.deprecated("""This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. .""") def health_status_aggregation_strategy(self) -> Optional[pulumi.Input['RegionHealthCheckServiceHealthStatusAggregationStrategy']]: """ This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. . """ - warnings.warn("""This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. .""", DeprecationWarning) - pulumi.log.warn("""health_status_aggregation_strategy is deprecated: This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. .""") - return pulumi.get(self, "health_status_aggregation_strategy") @health_status_aggregation_strategy.setter @@ -350,13 +348,11 @@ def health_status_aggregation_policy(self) -> pulumi.Output[str]: @property @pulumi.getter(name="healthStatusAggregationStrategy") + @_utilities.deprecated("""This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. .""") def health_status_aggregation_strategy(self) -> pulumi.Output[str]: """ This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. . """ - warnings.warn("""This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. .""", DeprecationWarning) - pulumi.log.warn("""health_status_aggregation_strategy is deprecated: This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. .""") - return pulumi.get(self, "health_status_aggregation_strategy") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/region_network_endpoint_group.py b/sdk/python/pulumi_google_native/compute/alpha/region_network_endpoint_group.py index 332c1ccc24..f7e9e05351 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/region_network_endpoint_group.py +++ b/sdk/python/pulumi_google_native/compute/alpha/region_network_endpoint_group.py @@ -191,13 +191,11 @@ def description(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="loadBalancer") + @_utilities.deprecated("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") def load_balancer(self) -> Optional[pulumi.Input['NetworkEndpointGroupLbNetworkEndpointGroupArgs']]: """ This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated. """ - warnings.warn("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""load_balancer is deprecated: This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "load_balancer") @load_balancer.setter @@ -570,13 +568,11 @@ def kind(self) -> pulumi.Output[str]: @property @pulumi.getter(name="loadBalancer") + @_utilities.deprecated("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") def load_balancer(self) -> pulumi.Output['outputs.NetworkEndpointGroupLbNetworkEndpointGroupResponse']: """ This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated. """ - warnings.warn("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""load_balancer is deprecated: This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "load_balancer") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/region_network_firewall_policy.py b/sdk/python/pulumi_google_native/compute/alpha/region_network_firewall_policy.py index e0de077d7f..ace2452ec9 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/region_network_firewall_policy.py +++ b/sdk/python/pulumi_google_native/compute/alpha/region_network_firewall_policy.py @@ -96,13 +96,11 @@ def description(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> Optional[pulumi.Input[str]]: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @display_name.setter @@ -340,13 +338,11 @@ def description(self) -> pulumi.Output[str]: @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> pulumi.Output[str]: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/region_target_https_proxy.py b/sdk/python/pulumi_google_native/compute/alpha/region_target_https_proxy.py index f3697c9fd8..b67eb72789 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/region_target_https_proxy.py +++ b/sdk/python/pulumi_google_native/compute/alpha/region_target_https_proxy.py @@ -101,13 +101,11 @@ def region(self, value: pulumi.Input[str]): @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use serverTlsPolicy instead.""") def authentication(self) -> Optional[pulumi.Input[str]]: """ [Deprecated] Use serverTlsPolicy instead. """ - warnings.warn("""[Deprecated] Use serverTlsPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authentication is deprecated: [Deprecated] Use serverTlsPolicy instead.""") - return pulumi.get(self, "authentication") @authentication.setter @@ -116,13 +114,11 @@ def authentication(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use authorizationPolicy instead.""") def authorization(self) -> Optional[pulumi.Input[str]]: """ [Deprecated] Use authorizationPolicy instead. """ - warnings.warn("""[Deprecated] Use authorizationPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authorization is deprecated: [Deprecated] Use authorizationPolicy instead.""") - return pulumi.get(self, "authorization") @authorization.setter @@ -463,24 +459,20 @@ def get(resource_name: str, @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use serverTlsPolicy instead.""") def authentication(self) -> pulumi.Output[str]: """ [Deprecated] Use serverTlsPolicy instead. """ - warnings.warn("""[Deprecated] Use serverTlsPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authentication is deprecated: [Deprecated] Use serverTlsPolicy instead.""") - return pulumi.get(self, "authentication") @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use authorizationPolicy instead.""") def authorization(self) -> pulumi.Output[str]: """ [Deprecated] Use authorizationPolicy instead. """ - warnings.warn("""[Deprecated] Use authorizationPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authorization is deprecated: [Deprecated] Use authorizationPolicy instead.""") - return pulumi.get(self, "authorization") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/subnetwork.py b/sdk/python/pulumi_google_native/compute/alpha/subnetwork.py index a4d312dd5c..366371ddee 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/subnetwork.py +++ b/sdk/python/pulumi_google_native/compute/alpha/subnetwork.py @@ -196,13 +196,11 @@ def enable_l2(self, value: Optional[pulumi.Input[bool]]): @property @pulumi.getter(name="enablePrivateV6Access") + @_utilities.deprecated("""Deprecated in favor of enable in PrivateIpv6GoogleAccess. Whether the VMs in this subnet can directly access Google services via internal IPv6 addresses. This field can be both set at resource creation time and updated using patch.""") def enable_private_v6_access(self) -> Optional[pulumi.Input[bool]]: """ Deprecated in favor of enable in PrivateIpv6GoogleAccess. Whether the VMs in this subnet can directly access Google services via internal IPv6 addresses. This field can be both set at resource creation time and updated using patch. """ - warnings.warn("""Deprecated in favor of enable in PrivateIpv6GoogleAccess. Whether the VMs in this subnet can directly access Google services via internal IPv6 addresses. This field can be both set at resource creation time and updated using patch.""", DeprecationWarning) - pulumi.log.warn("""enable_private_v6_access is deprecated: Deprecated in favor of enable in PrivateIpv6GoogleAccess. Whether the VMs in this subnet can directly access Google services via internal IPv6 addresses. This field can be both set at resource creation time and updated using patch.""") - return pulumi.get(self, "enable_private_v6_access") @enable_private_v6_access.setter @@ -688,13 +686,11 @@ def enable_l2(self) -> pulumi.Output[bool]: @property @pulumi.getter(name="enablePrivateV6Access") + @_utilities.deprecated("""Deprecated in favor of enable in PrivateIpv6GoogleAccess. Whether the VMs in this subnet can directly access Google services via internal IPv6 addresses. This field can be both set at resource creation time and updated using patch.""") def enable_private_v6_access(self) -> pulumi.Output[bool]: """ Deprecated in favor of enable in PrivateIpv6GoogleAccess. Whether the VMs in this subnet can directly access Google services via internal IPv6 addresses. This field can be both set at resource creation time and updated using patch. """ - warnings.warn("""Deprecated in favor of enable in PrivateIpv6GoogleAccess. Whether the VMs in this subnet can directly access Google services via internal IPv6 addresses. This field can be both set at resource creation time and updated using patch.""", DeprecationWarning) - pulumi.log.warn("""enable_private_v6_access is deprecated: Deprecated in favor of enable in PrivateIpv6GoogleAccess. Whether the VMs in this subnet can directly access Google services via internal IPv6 addresses. This field can be both set at resource creation time and updated using patch.""") - return pulumi.get(self, "enable_private_v6_access") @property diff --git a/sdk/python/pulumi_google_native/compute/alpha/target_https_proxy.py b/sdk/python/pulumi_google_native/compute/alpha/target_https_proxy.py index 6ddb1bca72..b4eaf0858c 100644 --- a/sdk/python/pulumi_google_native/compute/alpha/target_https_proxy.py +++ b/sdk/python/pulumi_google_native/compute/alpha/target_https_proxy.py @@ -90,13 +90,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use serverTlsPolicy instead.""") def authentication(self) -> Optional[pulumi.Input[str]]: """ [Deprecated] Use serverTlsPolicy instead. """ - warnings.warn("""[Deprecated] Use serverTlsPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authentication is deprecated: [Deprecated] Use serverTlsPolicy instead.""") - return pulumi.get(self, "authentication") @authentication.setter @@ -105,13 +103,11 @@ def authentication(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use authorizationPolicy instead.""") def authorization(self) -> Optional[pulumi.Input[str]]: """ [Deprecated] Use authorizationPolicy instead. """ - warnings.warn("""[Deprecated] Use authorizationPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authorization is deprecated: [Deprecated] Use authorizationPolicy instead.""") - return pulumi.get(self, "authorization") @authorization.setter @@ -448,24 +444,20 @@ def get(resource_name: str, @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use serverTlsPolicy instead.""") def authentication(self) -> pulumi.Output[str]: """ [Deprecated] Use serverTlsPolicy instead. """ - warnings.warn("""[Deprecated] Use serverTlsPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authentication is deprecated: [Deprecated] Use serverTlsPolicy instead.""") - return pulumi.get(self, "authentication") @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use authorizationPolicy instead.""") def authorization(self) -> pulumi.Output[str]: """ [Deprecated] Use authorizationPolicy instead. """ - warnings.warn("""[Deprecated] Use authorizationPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authorization is deprecated: [Deprecated] Use authorizationPolicy instead.""") - return pulumi.get(self, "authorization") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/_inputs.py b/sdk/python/pulumi_google_native/compute/beta/_inputs.py index 94439a0aec..7771b3583d 100644 --- a/sdk/python/pulumi_google_native/compute/beta/_inputs.py +++ b/sdk/python/pulumi_google_native/compute/beta/_inputs.py @@ -7038,13 +7038,11 @@ def container_type(self, value: Optional[pulumi.Input['ImageRawDiskContainerType @property @pulumi.getter(name="sha1Checksum") + @_utilities.deprecated("""[Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created.""") def sha1_checksum(self) -> Optional[pulumi.Input[str]]: """ [Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created. """ - warnings.warn("""[Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created.""", DeprecationWarning) - pulumi.log.warn("""sha1_checksum is deprecated: [Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created.""") - return pulumi.get(self, "sha1_checksum") @sha1_checksum.setter @@ -8846,13 +8844,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="defaultPort") + @_utilities.deprecated("""The default port used if the port number is not specified in the network endpoint. [Deprecated] This field is deprecated.""") def default_port(self) -> Optional[pulumi.Input[int]]: """ The default port used if the port number is not specified in the network endpoint. [Deprecated] This field is deprecated. """ - warnings.warn("""The default port used if the port number is not specified in the network endpoint. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""default_port is deprecated: The default port used if the port number is not specified in the network endpoint. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "default_port") @default_port.setter @@ -8861,13 +8857,11 @@ def default_port(self, value: Optional[pulumi.Input[int]]): @property @pulumi.getter + @_utilities.deprecated("""The URL of the network to which all network endpoints in the NEG belong. Uses \"default\" project network if unspecified. [Deprecated] This field is deprecated.""") def network(self) -> Optional[pulumi.Input[str]]: """ The URL of the network to which all network endpoints in the NEG belong. Uses "default" project network if unspecified. [Deprecated] This field is deprecated. """ - warnings.warn("""The URL of the network to which all network endpoints in the NEG belong. Uses \"default\" project network if unspecified. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""network is deprecated: The URL of the network to which all network endpoints in the NEG belong. Uses \"default\" project network if unspecified. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "network") @network.setter @@ -8876,13 +8870,11 @@ def network(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""Optional URL of the subnetwork to which all network endpoints in the NEG belong. [Deprecated] This field is deprecated.""") def subnetwork(self) -> Optional[pulumi.Input[str]]: """ Optional URL of the subnetwork to which all network endpoints in the NEG belong. [Deprecated] This field is deprecated. """ - warnings.warn("""Optional URL of the subnetwork to which all network endpoints in the NEG belong. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""subnetwork is deprecated: Optional URL of the subnetwork to which all network endpoints in the NEG belong. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "subnetwork") @subnetwork.setter @@ -14554,13 +14546,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use clientTlsPolicy instead.""") def authentication(self) -> Optional[pulumi.Input[str]]: """ [Deprecated] Use clientTlsPolicy instead. """ - warnings.warn("""[Deprecated] Use clientTlsPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authentication is deprecated: [Deprecated] Use clientTlsPolicy instead.""") - return pulumi.get(self, "authentication") @authentication.setter diff --git a/sdk/python/pulumi_google_native/compute/beta/backend_service.py b/sdk/python/pulumi_google_native/compute/beta/backend_service.py index 1fc80600a6..15f8105993 100644 --- a/sdk/python/pulumi_google_native/compute/beta/backend_service.py +++ b/sdk/python/pulumi_google_native/compute/beta/backend_service.py @@ -463,13 +463,11 @@ def outlier_detection(self, value: Optional[pulumi.Input['OutlierDetectionArgs'] @property @pulumi.getter + @_utilities.deprecated("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") def port(self) -> Optional[pulumi.Input[int]]: """ Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port. """ - warnings.warn("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""", DeprecationWarning) - pulumi.log.warn("""port is deprecated: Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") - return pulumi.get(self, "port") @port.setter @@ -1093,13 +1091,11 @@ def outlier_detection(self) -> pulumi.Output['outputs.OutlierDetectionResponse'] @property @pulumi.getter + @_utilities.deprecated("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") def port(self) -> pulumi.Output[int]: """ Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port. """ - warnings.warn("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""", DeprecationWarning) - pulumi.log.warn("""port is deprecated: Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") - return pulumi.get(self, "port") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/disk.py b/sdk/python/pulumi_google_native/compute/beta/disk.py index a312f2737b..79721d6a73 100644 --- a/sdk/python/pulumi_google_native/compute/beta/disk.py +++ b/sdk/python/pulumi_google_native/compute/beta/disk.py @@ -251,13 +251,11 @@ def guest_os_features(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[' @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") def interface(self) -> Optional[pulumi.Input['DiskInterface']]: """ [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. """ - warnings.warn("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""", DeprecationWarning) - pulumi.log.warn("""interface is deprecated: [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") - return pulumi.get(self, "interface") @interface.setter @@ -539,13 +537,11 @@ def source_storage_object(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="storageType") + @_utilities.deprecated("""[Deprecated] Storage type of the persistent disk.""") def storage_type(self) -> Optional[pulumi.Input['DiskStorageType']]: """ [Deprecated] Storage type of the persistent disk. """ - warnings.warn("""[Deprecated] Storage type of the persistent disk.""", DeprecationWarning) - pulumi.log.warn("""storage_type is deprecated: [Deprecated] Storage type of the persistent disk.""") - return pulumi.get(self, "storage_type") @storage_type.setter @@ -942,13 +938,11 @@ def guest_os_features(self) -> pulumi.Output[Sequence['outputs.GuestOsFeatureRes @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") def interface(self) -> pulumi.Output[str]: """ [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. """ - warnings.warn("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""", DeprecationWarning) - pulumi.log.warn("""interface is deprecated: [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") - return pulumi.get(self, "interface") @property @@ -1262,13 +1256,11 @@ def status(self) -> pulumi.Output[str]: @property @pulumi.getter(name="storageType") + @_utilities.deprecated("""[Deprecated] Storage type of the persistent disk.""") def storage_type(self) -> pulumi.Output[str]: """ [Deprecated] Storage type of the persistent disk. """ - warnings.warn("""[Deprecated] Storage type of the persistent disk.""", DeprecationWarning) - pulumi.log.warn("""storage_type is deprecated: [Deprecated] Storage type of the persistent disk.""") - return pulumi.get(self, "storage_type") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/firewall.py b/sdk/python/pulumi_google_native/compute/beta/firewall.py index a382cf96c1..b00d5833e8 100644 --- a/sdk/python/pulumi_google_native/compute/beta/firewall.py +++ b/sdk/python/pulumi_google_native/compute/beta/firewall.py @@ -169,13 +169,11 @@ def disabled(self, value: Optional[pulumi.Input[bool]]): @property @pulumi.getter(name="enableLogging") + @_utilities.deprecated("""Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging.""") def enable_logging(self) -> Optional[pulumi.Input[bool]]: """ Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging. """ - warnings.warn("""Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging.""", DeprecationWarning) - pulumi.log.warn("""enable_logging is deprecated: Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging.""") - return pulumi.get(self, "enable_logging") @enable_logging.setter @@ -536,13 +534,11 @@ def disabled(self) -> pulumi.Output[bool]: @property @pulumi.getter(name="enableLogging") + @_utilities.deprecated("""Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging.""") def enable_logging(self) -> pulumi.Output[bool]: """ Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging. """ - warnings.warn("""Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging.""", DeprecationWarning) - pulumi.log.warn("""enable_logging is deprecated: Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging.""") - return pulumi.get(self, "enable_logging") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/firewall_policy.py b/sdk/python/pulumi_google_native/compute/beta/firewall_policy.py index d40daa39ad..251f4e4591 100644 --- a/sdk/python/pulumi_google_native/compute/beta/firewall_policy.py +++ b/sdk/python/pulumi_google_native/compute/beta/firewall_policy.py @@ -82,13 +82,11 @@ def description(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> Optional[pulumi.Input[str]]: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @display_name.setter @@ -307,13 +305,11 @@ def description(self) -> pulumi.Output[str]: @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> pulumi.Output[str]: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/get_backend_service.py b/sdk/python/pulumi_google_native/compute/beta/get_backend_service.py index 125f485deb..c23d5a1808 100644 --- a/sdk/python/pulumi_google_native/compute/beta/get_backend_service.py +++ b/sdk/python/pulumi_google_native/compute/beta/get_backend_service.py @@ -375,13 +375,11 @@ def outlier_detection(self) -> 'outputs.OutlierDetectionResponse': @property @pulumi.getter + @_utilities.deprecated("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") def port(self) -> int: """ Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port. """ - warnings.warn("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""", DeprecationWarning) - pulumi.log.warn("""port is deprecated: Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") - return pulumi.get(self, "port") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/get_disk.py b/sdk/python/pulumi_google_native/compute/beta/get_disk.py index 73e41e6c52..dfdaa658be 100644 --- a/sdk/python/pulumi_google_native/compute/beta/get_disk.py +++ b/sdk/python/pulumi_google_native/compute/beta/get_disk.py @@ -251,13 +251,11 @@ def guest_os_features(self) -> Sequence['outputs.GuestOsFeatureResponse']: @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") def interface(self) -> str: """ [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. """ - warnings.warn("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""", DeprecationWarning) - pulumi.log.warn("""interface is deprecated: [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") - return pulumi.get(self, "interface") @property @@ -558,13 +556,11 @@ def status(self) -> str: @property @pulumi.getter(name="storageType") + @_utilities.deprecated("""[Deprecated] Storage type of the persistent disk.""") def storage_type(self) -> str: """ [Deprecated] Storage type of the persistent disk. """ - warnings.warn("""[Deprecated] Storage type of the persistent disk.""", DeprecationWarning) - pulumi.log.warn("""storage_type is deprecated: [Deprecated] Storage type of the persistent disk.""") - return pulumi.get(self, "storage_type") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/get_firewall.py b/sdk/python/pulumi_google_native/compute/beta/get_firewall.py index 107221f9fa..52e3ec0b0f 100644 --- a/sdk/python/pulumi_google_native/compute/beta/get_firewall.py +++ b/sdk/python/pulumi_google_native/compute/beta/get_firewall.py @@ -136,13 +136,11 @@ def disabled(self) -> bool: @property @pulumi.getter(name="enableLogging") + @_utilities.deprecated("""Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging.""") def enable_logging(self) -> bool: """ Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging. """ - warnings.warn("""Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging.""", DeprecationWarning) - pulumi.log.warn("""enable_logging is deprecated: Deprecated in favor of enable in LogConfig. This field denotes whether to enable logging for a particular firewall rule. If logging is enabled, logs will be exported t Cloud Logging.""") - return pulumi.get(self, "enable_logging") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/get_firewall_policy.py b/sdk/python/pulumi_google_native/compute/beta/get_firewall_policy.py index ea4e4ba01c..44423be087 100644 --- a/sdk/python/pulumi_google_native/compute/beta/get_firewall_policy.py +++ b/sdk/python/pulumi_google_native/compute/beta/get_firewall_policy.py @@ -89,13 +89,11 @@ def description(self) -> str: @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> str: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/get_global_network_endpoint_group.py b/sdk/python/pulumi_google_native/compute/beta/get_global_network_endpoint_group.py index 68893280eb..3a822b5edc 100644 --- a/sdk/python/pulumi_google_native/compute/beta/get_global_network_endpoint_group.py +++ b/sdk/python/pulumi_google_native/compute/beta/get_global_network_endpoint_group.py @@ -147,13 +147,11 @@ def kind(self) -> str: @property @pulumi.getter(name="loadBalancer") + @_utilities.deprecated("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") def load_balancer(self) -> 'outputs.NetworkEndpointGroupLbNetworkEndpointGroupResponse': """ This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated. """ - warnings.warn("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""load_balancer is deprecated: This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "load_balancer") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/get_interconnect_attachment.py b/sdk/python/pulumi_google_native/compute/beta/get_interconnect_attachment.py index a51b91a9a3..fced994ee0 100644 --- a/sdk/python/pulumi_google_native/compute/beta/get_interconnect_attachment.py +++ b/sdk/python/pulumi_google_native/compute/beta/get_interconnect_attachment.py @@ -268,13 +268,11 @@ def encryption(self) -> str: @property @pulumi.getter(name="googleReferenceId") + @_utilities.deprecated("""[Output Only] Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.""") def google_reference_id(self) -> str: """ Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used. """ - warnings.warn("""[Output Only] Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.""", DeprecationWarning) - pulumi.log.warn("""google_reference_id is deprecated: [Output Only] Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.""") - return pulumi.get(self, "google_reference_id") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/get_license.py b/sdk/python/pulumi_google_native/compute/beta/get_license.py index 60a3fb23c8..ede5c7c5af 100644 --- a/sdk/python/pulumi_google_native/compute/beta/get_license.py +++ b/sdk/python/pulumi_google_native/compute/beta/get_license.py @@ -50,13 +50,11 @@ def __init__(__self__, charges_use_fee=None, creation_timestamp=None, descriptio @property @pulumi.getter(name="chargesUseFee") + @_utilities.deprecated("""[Output Only] Deprecated. This field no longer reflects whether a license charges a usage fee.""") def charges_use_fee(self) -> bool: """ Deprecated. This field no longer reflects whether a license charges a usage fee. """ - warnings.warn("""[Output Only] Deprecated. This field no longer reflects whether a license charges a usage fee.""", DeprecationWarning) - pulumi.log.warn("""charges_use_fee is deprecated: [Output Only] Deprecated. This field no longer reflects whether a license charges a usage fee.""") - return pulumi.get(self, "charges_use_fee") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/get_network.py b/sdk/python/pulumi_google_native/compute/beta/get_network.py index 6a7f7e2957..00c6b23c52 100644 --- a/sdk/python/pulumi_google_native/compute/beta/get_network.py +++ b/sdk/python/pulumi_google_native/compute/beta/get_network.py @@ -130,13 +130,11 @@ def internal_ipv6_range(self) -> str: @property @pulumi.getter(name="ipv4Range") + @_utilities.deprecated("""Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""") def ipv4_range(self) -> str: """ Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created. """ - warnings.warn("""Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""", DeprecationWarning) - pulumi.log.warn("""ipv4_range is deprecated: Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""") - return pulumi.get(self, "ipv4_range") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/get_network_endpoint_group.py b/sdk/python/pulumi_google_native/compute/beta/get_network_endpoint_group.py index b2ddb7f730..940851666e 100644 --- a/sdk/python/pulumi_google_native/compute/beta/get_network_endpoint_group.py +++ b/sdk/python/pulumi_google_native/compute/beta/get_network_endpoint_group.py @@ -147,13 +147,11 @@ def kind(self) -> str: @property @pulumi.getter(name="loadBalancer") + @_utilities.deprecated("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") def load_balancer(self) -> 'outputs.NetworkEndpointGroupLbNetworkEndpointGroupResponse': """ This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated. """ - warnings.warn("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""load_balancer is deprecated: This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "load_balancer") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/get_network_firewall_policy.py b/sdk/python/pulumi_google_native/compute/beta/get_network_firewall_policy.py index e613a3afce..a5e834863e 100644 --- a/sdk/python/pulumi_google_native/compute/beta/get_network_firewall_policy.py +++ b/sdk/python/pulumi_google_native/compute/beta/get_network_firewall_policy.py @@ -89,13 +89,11 @@ def description(self) -> str: @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> str: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/get_region_backend_service.py b/sdk/python/pulumi_google_native/compute/beta/get_region_backend_service.py index b6c2d55492..36b3887064 100644 --- a/sdk/python/pulumi_google_native/compute/beta/get_region_backend_service.py +++ b/sdk/python/pulumi_google_native/compute/beta/get_region_backend_service.py @@ -375,13 +375,11 @@ def outlier_detection(self) -> 'outputs.OutlierDetectionResponse': @property @pulumi.getter + @_utilities.deprecated("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") def port(self) -> int: """ Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port. """ - warnings.warn("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""", DeprecationWarning) - pulumi.log.warn("""port is deprecated: Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") - return pulumi.get(self, "port") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/get_region_disk.py b/sdk/python/pulumi_google_native/compute/beta/get_region_disk.py index f099b0c7db..f148efd424 100644 --- a/sdk/python/pulumi_google_native/compute/beta/get_region_disk.py +++ b/sdk/python/pulumi_google_native/compute/beta/get_region_disk.py @@ -251,13 +251,11 @@ def guest_os_features(self) -> Sequence['outputs.GuestOsFeatureResponse']: @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") def interface(self) -> str: """ [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. """ - warnings.warn("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""", DeprecationWarning) - pulumi.log.warn("""interface is deprecated: [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") - return pulumi.get(self, "interface") @property @@ -558,13 +556,11 @@ def status(self) -> str: @property @pulumi.getter(name="storageType") + @_utilities.deprecated("""[Deprecated] Storage type of the persistent disk.""") def storage_type(self) -> str: """ [Deprecated] Storage type of the persistent disk. """ - warnings.warn("""[Deprecated] Storage type of the persistent disk.""", DeprecationWarning) - pulumi.log.warn("""storage_type is deprecated: [Deprecated] Storage type of the persistent disk.""") - return pulumi.get(self, "storage_type") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/get_region_health_check_service.py b/sdk/python/pulumi_google_native/compute/beta/get_region_health_check_service.py index 4bf9c37d9d..7607c95908 100644 --- a/sdk/python/pulumi_google_native/compute/beta/get_region_health_check_service.py +++ b/sdk/python/pulumi_google_native/compute/beta/get_region_health_check_service.py @@ -98,13 +98,11 @@ def health_status_aggregation_policy(self) -> str: @property @pulumi.getter(name="healthStatusAggregationStrategy") + @_utilities.deprecated("""This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. .""") def health_status_aggregation_strategy(self) -> str: """ This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. . """ - warnings.warn("""This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. .""", DeprecationWarning) - pulumi.log.warn("""health_status_aggregation_strategy is deprecated: This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. .""") - return pulumi.get(self, "health_status_aggregation_strategy") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/get_region_network_endpoint_group.py b/sdk/python/pulumi_google_native/compute/beta/get_region_network_endpoint_group.py index cbff5c3902..ba16e55250 100644 --- a/sdk/python/pulumi_google_native/compute/beta/get_region_network_endpoint_group.py +++ b/sdk/python/pulumi_google_native/compute/beta/get_region_network_endpoint_group.py @@ -147,13 +147,11 @@ def kind(self) -> str: @property @pulumi.getter(name="loadBalancer") + @_utilities.deprecated("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") def load_balancer(self) -> 'outputs.NetworkEndpointGroupLbNetworkEndpointGroupResponse': """ This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated. """ - warnings.warn("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""load_balancer is deprecated: This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "load_balancer") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/get_region_network_firewall_policy.py b/sdk/python/pulumi_google_native/compute/beta/get_region_network_firewall_policy.py index c47eb64cbb..fee6cb65d2 100644 --- a/sdk/python/pulumi_google_native/compute/beta/get_region_network_firewall_policy.py +++ b/sdk/python/pulumi_google_native/compute/beta/get_region_network_firewall_policy.py @@ -89,13 +89,11 @@ def description(self) -> str: @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> str: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/get_region_target_https_proxy.py b/sdk/python/pulumi_google_native/compute/beta/get_region_target_https_proxy.py index 526ad5d696..2772f82fd2 100644 --- a/sdk/python/pulumi_google_native/compute/beta/get_region_target_https_proxy.py +++ b/sdk/python/pulumi_google_native/compute/beta/get_region_target_https_proxy.py @@ -79,24 +79,20 @@ def __init__(__self__, authentication=None, authorization=None, authorization_po @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use serverTlsPolicy instead.""") def authentication(self) -> str: """ [Deprecated] Use serverTlsPolicy instead. """ - warnings.warn("""[Deprecated] Use serverTlsPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authentication is deprecated: [Deprecated] Use serverTlsPolicy instead.""") - return pulumi.get(self, "authentication") @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use authorizationPolicy instead.""") def authorization(self) -> str: """ [Deprecated] Use authorizationPolicy instead. """ - warnings.warn("""[Deprecated] Use authorizationPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authorization is deprecated: [Deprecated] Use authorizationPolicy instead.""") - return pulumi.get(self, "authorization") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/get_target_https_proxy.py b/sdk/python/pulumi_google_native/compute/beta/get_target_https_proxy.py index e874ff0fa8..45c468eb97 100644 --- a/sdk/python/pulumi_google_native/compute/beta/get_target_https_proxy.py +++ b/sdk/python/pulumi_google_native/compute/beta/get_target_https_proxy.py @@ -79,24 +79,20 @@ def __init__(__self__, authentication=None, authorization=None, authorization_po @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use serverTlsPolicy instead.""") def authentication(self) -> str: """ [Deprecated] Use serverTlsPolicy instead. """ - warnings.warn("""[Deprecated] Use serverTlsPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authentication is deprecated: [Deprecated] Use serverTlsPolicy instead.""") - return pulumi.get(self, "authentication") @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use authorizationPolicy instead.""") def authorization(self) -> str: """ [Deprecated] Use authorizationPolicy instead. """ - warnings.warn("""[Deprecated] Use authorizationPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authorization is deprecated: [Deprecated] Use authorizationPolicy instead.""") - return pulumi.get(self, "authorization") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/global_network_endpoint_group.py b/sdk/python/pulumi_google_native/compute/beta/global_network_endpoint_group.py index 045496e2f3..9d08c4701b 100644 --- a/sdk/python/pulumi_google_native/compute/beta/global_network_endpoint_group.py +++ b/sdk/python/pulumi_google_native/compute/beta/global_network_endpoint_group.py @@ -160,13 +160,11 @@ def description(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="loadBalancer") + @_utilities.deprecated("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") def load_balancer(self) -> Optional[pulumi.Input['NetworkEndpointGroupLbNetworkEndpointGroupArgs']]: """ This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated. """ - warnings.warn("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""load_balancer is deprecated: This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "load_balancer") @load_balancer.setter @@ -503,13 +501,11 @@ def kind(self) -> pulumi.Output[str]: @property @pulumi.getter(name="loadBalancer") + @_utilities.deprecated("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") def load_balancer(self) -> pulumi.Output['outputs.NetworkEndpointGroupLbNetworkEndpointGroupResponse']: """ This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated. """ - warnings.warn("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""load_balancer is deprecated: This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "load_balancer") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/instance_group_manager_resize_request.py b/sdk/python/pulumi_google_native/compute/beta/instance_group_manager_resize_request.py index a7bdade559..48ee666c3e 100644 --- a/sdk/python/pulumi_google_native/compute/beta/instance_group_manager_resize_request.py +++ b/sdk/python/pulumi_google_native/compute/beta/instance_group_manager_resize_request.py @@ -238,7 +238,7 @@ def _internal_init(__self__, __props__.__dict__["self_link_with_id"] = None __props__.__dict__["state"] = None __props__.__dict__["status"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_group_manager", "project", "zone"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceGroupManager", "project", "zone"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(InstanceGroupManagerResizeRequest, __self__).__init__( 'google-native:compute/beta:InstanceGroupManagerResizeRequest', diff --git a/sdk/python/pulumi_google_native/compute/beta/interconnect_attachment.py b/sdk/python/pulumi_google_native/compute/beta/interconnect_attachment.py index 09082e28c1..de18363752 100644 --- a/sdk/python/pulumi_google_native/compute/beta/interconnect_attachment.py +++ b/sdk/python/pulumi_google_native/compute/beta/interconnect_attachment.py @@ -771,13 +771,11 @@ def encryption(self) -> pulumi.Output[str]: @property @pulumi.getter(name="googleReferenceId") + @_utilities.deprecated("""[Output Only] Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.""") def google_reference_id(self) -> pulumi.Output[str]: """ Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used. """ - warnings.warn("""[Output Only] Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.""", DeprecationWarning) - pulumi.log.warn("""google_reference_id is deprecated: [Output Only] Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.""") - return pulumi.get(self, "google_reference_id") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/license.py b/sdk/python/pulumi_google_native/compute/beta/license.py index e2ae9a0119..d1b51c4285 100644 --- a/sdk/python/pulumi_google_native/compute/beta/license.py +++ b/sdk/python/pulumi_google_native/compute/beta/license.py @@ -220,13 +220,11 @@ def get(resource_name: str, @property @pulumi.getter(name="chargesUseFee") + @_utilities.deprecated("""[Output Only] Deprecated. This field no longer reflects whether a license charges a usage fee.""") def charges_use_fee(self) -> pulumi.Output[bool]: """ Deprecated. This field no longer reflects whether a license charges a usage fee. """ - warnings.warn("""[Output Only] Deprecated. This field no longer reflects whether a license charges a usage fee.""", DeprecationWarning) - pulumi.log.warn("""charges_use_fee is deprecated: [Output Only] Deprecated. This field no longer reflects whether a license charges a usage fee.""") - return pulumi.get(self, "charges_use_fee") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/machine_image.py b/sdk/python/pulumi_google_native/compute/beta/machine_image.py index dbc7b7ebab..a82b9a874b 100644 --- a/sdk/python/pulumi_google_native/compute/beta/machine_image.py +++ b/sdk/python/pulumi_google_native/compute/beta/machine_image.py @@ -270,7 +270,7 @@ def _internal_init(__self__, __props__.__dict__["source_instance_properties"] = None __props__.__dict__["status"] = None __props__.__dict__["total_storage_bytes"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "source_instance"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "sourceInstance"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MachineImage, __self__).__init__( 'google-native:compute/beta:MachineImage', diff --git a/sdk/python/pulumi_google_native/compute/beta/network.py b/sdk/python/pulumi_google_native/compute/beta/network.py index 0eb4508a40..70180f7d7c 100644 --- a/sdk/python/pulumi_google_native/compute/beta/network.py +++ b/sdk/python/pulumi_google_native/compute/beta/network.py @@ -117,13 +117,11 @@ def internal_ipv6_range(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="ipv4Range") + @_utilities.deprecated("""Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""") def ipv4_range(self) -> Optional[pulumi.Input[str]]: """ Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created. """ - warnings.warn("""Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""", DeprecationWarning) - pulumi.log.warn("""ipv4_range is deprecated: Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""") - return pulumi.get(self, "ipv4_range") @ipv4_range.setter @@ -399,13 +397,11 @@ def internal_ipv6_range(self) -> pulumi.Output[str]: @property @pulumi.getter(name="ipv4Range") + @_utilities.deprecated("""Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""") def ipv4_range(self) -> pulumi.Output[str]: """ Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created. """ - warnings.warn("""Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""", DeprecationWarning) - pulumi.log.warn("""ipv4_range is deprecated: Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""") - return pulumi.get(self, "ipv4_range") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/network_endpoint_group.py b/sdk/python/pulumi_google_native/compute/beta/network_endpoint_group.py index d3c67c788b..2015cbc46f 100644 --- a/sdk/python/pulumi_google_native/compute/beta/network_endpoint_group.py +++ b/sdk/python/pulumi_google_native/compute/beta/network_endpoint_group.py @@ -163,13 +163,11 @@ def description(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="loadBalancer") + @_utilities.deprecated("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") def load_balancer(self) -> Optional[pulumi.Input['NetworkEndpointGroupLbNetworkEndpointGroupArgs']]: """ This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated. """ - warnings.warn("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""load_balancer is deprecated: This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "load_balancer") @load_balancer.setter @@ -517,13 +515,11 @@ def kind(self) -> pulumi.Output[str]: @property @pulumi.getter(name="loadBalancer") + @_utilities.deprecated("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") def load_balancer(self) -> pulumi.Output['outputs.NetworkEndpointGroupLbNetworkEndpointGroupResponse']: """ This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated. """ - warnings.warn("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""load_balancer is deprecated: This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "load_balancer") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/network_firewall_policy.py b/sdk/python/pulumi_google_native/compute/beta/network_firewall_policy.py index 21399d9c26..37b3fb0c28 100644 --- a/sdk/python/pulumi_google_native/compute/beta/network_firewall_policy.py +++ b/sdk/python/pulumi_google_native/compute/beta/network_firewall_policy.py @@ -81,13 +81,11 @@ def description(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> Optional[pulumi.Input[str]]: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @display_name.setter @@ -304,13 +302,11 @@ def description(self) -> pulumi.Output[str]: @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> pulumi.Output[str]: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/node_group.py b/sdk/python/pulumi_google_native/compute/beta/node_group.py index da0b3f769f..ceaf8cea5e 100644 --- a/sdk/python/pulumi_google_native/compute/beta/node_group.py +++ b/sdk/python/pulumi_google_native/compute/beta/node_group.py @@ -319,7 +319,7 @@ def _internal_init(__self__, __props__.__dict__["self_link"] = None __props__.__dict__["size"] = None __props__.__dict__["status"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["initial_node_count", "project", "zone"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["initialNodeCount", "project", "zone"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(NodeGroup, __self__).__init__( 'google-native:compute/beta:NodeGroup', diff --git a/sdk/python/pulumi_google_native/compute/beta/outputs.py b/sdk/python/pulumi_google_native/compute/beta/outputs.py index fccb8c8a6f..00e3c801c7 100644 --- a/sdk/python/pulumi_google_native/compute/beta/outputs.py +++ b/sdk/python/pulumi_google_native/compute/beta/outputs.py @@ -7980,13 +7980,11 @@ def container_type(self) -> str: @property @pulumi.getter(name="sha1Checksum") + @_utilities.deprecated("""[Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created.""") def sha1_checksum(self) -> str: """ [Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created. """ - warnings.warn("""[Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created.""", DeprecationWarning) - pulumi.log.warn("""sha1_checksum is deprecated: [Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created.""") - return pulumi.get(self, "sha1_checksum") @property @@ -8783,13 +8781,11 @@ def has_stateful_config(self) -> bool: @property @pulumi.getter(name="isStateful") + @_utilities.deprecated("""[Output Only] A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful configuration even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions. This field is deprecated in favor of has_stateful_config.""") def is_stateful(self) -> bool: """ A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful configuration even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions. This field is deprecated in favor of has_stateful_config. """ - warnings.warn("""[Output Only] A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful configuration even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions. This field is deprecated in favor of has_stateful_config.""", DeprecationWarning) - pulumi.log.warn("""is_stateful is deprecated: [Output Only] A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful configuration even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions. This field is deprecated in favor of has_stateful_config.""") - return pulumi.get(self, "is_stateful") @property @@ -10915,46 +10911,38 @@ def __init__(__self__, *, @property @pulumi.getter(name="defaultPort") + @_utilities.deprecated("""The default port used if the port number is not specified in the network endpoint. [Deprecated] This field is deprecated.""") def default_port(self) -> int: """ The default port used if the port number is not specified in the network endpoint. [Deprecated] This field is deprecated. """ - warnings.warn("""The default port used if the port number is not specified in the network endpoint. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""default_port is deprecated: The default port used if the port number is not specified in the network endpoint. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "default_port") @property @pulumi.getter + @_utilities.deprecated("""The URL of the network to which all network endpoints in the NEG belong. Uses \"default\" project network if unspecified. [Deprecated] This field is deprecated.""") def network(self) -> str: """ The URL of the network to which all network endpoints in the NEG belong. Uses "default" project network if unspecified. [Deprecated] This field is deprecated. """ - warnings.warn("""The URL of the network to which all network endpoints in the NEG belong. Uses \"default\" project network if unspecified. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""network is deprecated: The URL of the network to which all network endpoints in the NEG belong. Uses \"default\" project network if unspecified. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "network") @property @pulumi.getter + @_utilities.deprecated("""Optional URL of the subnetwork to which all network endpoints in the NEG belong. [Deprecated] This field is deprecated.""") def subnetwork(self) -> str: """ Optional URL of the subnetwork to which all network endpoints in the NEG belong. [Deprecated] This field is deprecated. """ - warnings.warn("""Optional URL of the subnetwork to which all network endpoints in the NEG belong. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""subnetwork is deprecated: Optional URL of the subnetwork to which all network endpoints in the NEG belong. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "subnetwork") @property @pulumi.getter + @_utilities.deprecated("""[Output Only] The URL of the zone where the network endpoint group is located. [Deprecated] This field is deprecated.""") def zone(self) -> str: """ The URL of the zone where the network endpoint group is located. [Deprecated] This field is deprecated. """ - warnings.warn("""[Output Only] The URL of the zone where the network endpoint group is located. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""zone is deprecated: [Output Only] The URL of the zone where the network endpoint group is located. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "zone") @@ -17965,13 +17953,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use clientTlsPolicy instead.""") def authentication(self) -> str: """ [Deprecated] Use clientTlsPolicy instead. """ - warnings.warn("""[Deprecated] Use clientTlsPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authentication is deprecated: [Deprecated] Use clientTlsPolicy instead.""") - return pulumi.get(self, "authentication") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/region_backend_service.py b/sdk/python/pulumi_google_native/compute/beta/region_backend_service.py index 376fcc756a..e2b032afa7 100644 --- a/sdk/python/pulumi_google_native/compute/beta/region_backend_service.py +++ b/sdk/python/pulumi_google_native/compute/beta/region_backend_service.py @@ -474,13 +474,11 @@ def outlier_detection(self, value: Optional[pulumi.Input['OutlierDetectionArgs'] @property @pulumi.getter + @_utilities.deprecated("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") def port(self) -> Optional[pulumi.Input[int]]: """ Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port. """ - warnings.warn("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""", DeprecationWarning) - pulumi.log.warn("""port is deprecated: Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") - return pulumi.get(self, "port") @port.setter @@ -1108,13 +1106,11 @@ def outlier_detection(self) -> pulumi.Output['outputs.OutlierDetectionResponse'] @property @pulumi.getter + @_utilities.deprecated("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") def port(self) -> pulumi.Output[int]: """ Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port. """ - warnings.warn("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""", DeprecationWarning) - pulumi.log.warn("""port is deprecated: Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") - return pulumi.get(self, "port") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/region_disk.py b/sdk/python/pulumi_google_native/compute/beta/region_disk.py index 12df3e39d6..c558abbfb9 100644 --- a/sdk/python/pulumi_google_native/compute/beta/region_disk.py +++ b/sdk/python/pulumi_google_native/compute/beta/region_disk.py @@ -259,13 +259,11 @@ def guest_os_features(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[' @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") def interface(self) -> Optional[pulumi.Input['RegionDiskInterface']]: """ [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. """ - warnings.warn("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""", DeprecationWarning) - pulumi.log.warn("""interface is deprecated: [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") - return pulumi.get(self, "interface") @interface.setter @@ -547,13 +545,11 @@ def source_storage_object(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="storageType") + @_utilities.deprecated("""[Deprecated] Storage type of the persistent disk.""") def storage_type(self) -> Optional[pulumi.Input['RegionDiskStorageType']]: """ [Deprecated] Storage type of the persistent disk. """ - warnings.warn("""[Deprecated] Storage type of the persistent disk.""", DeprecationWarning) - pulumi.log.warn("""storage_type is deprecated: [Deprecated] Storage type of the persistent disk.""") - return pulumi.get(self, "storage_type") @storage_type.setter @@ -943,13 +939,11 @@ def guest_os_features(self) -> pulumi.Output[Sequence['outputs.GuestOsFeatureRes @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") def interface(self) -> pulumi.Output[str]: """ [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. """ - warnings.warn("""[Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""", DeprecationWarning) - pulumi.log.warn("""interface is deprecated: [Deprecated] Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.""") - return pulumi.get(self, "interface") @property @@ -1260,13 +1254,11 @@ def status(self) -> pulumi.Output[str]: @property @pulumi.getter(name="storageType") + @_utilities.deprecated("""[Deprecated] Storage type of the persistent disk.""") def storage_type(self) -> pulumi.Output[str]: """ [Deprecated] Storage type of the persistent disk. """ - warnings.warn("""[Deprecated] Storage type of the persistent disk.""", DeprecationWarning) - pulumi.log.warn("""storage_type is deprecated: [Deprecated] Storage type of the persistent disk.""") - return pulumi.get(self, "storage_type") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/region_health_check_service.py b/sdk/python/pulumi_google_native/compute/beta/region_health_check_service.py index 37d08baeb7..b0e4d9f584 100644 --- a/sdk/python/pulumi_google_native/compute/beta/region_health_check_service.py +++ b/sdk/python/pulumi_google_native/compute/beta/region_health_check_service.py @@ -106,13 +106,11 @@ def health_status_aggregation_policy(self, value: Optional[pulumi.Input['RegionH @property @pulumi.getter(name="healthStatusAggregationStrategy") + @_utilities.deprecated("""This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. .""") def health_status_aggregation_strategy(self) -> Optional[pulumi.Input['RegionHealthCheckServiceHealthStatusAggregationStrategy']]: """ This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. . """ - warnings.warn("""This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. .""", DeprecationWarning) - pulumi.log.warn("""health_status_aggregation_strategy is deprecated: This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. .""") - return pulumi.get(self, "health_status_aggregation_strategy") @health_status_aggregation_strategy.setter @@ -348,13 +346,11 @@ def health_status_aggregation_policy(self) -> pulumi.Output[str]: @property @pulumi.getter(name="healthStatusAggregationStrategy") + @_utilities.deprecated("""This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. .""") def health_status_aggregation_strategy(self) -> pulumi.Output[str]: """ This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. . """ - warnings.warn("""This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. .""", DeprecationWarning) - pulumi.log.warn("""health_status_aggregation_strategy is deprecated: This field is deprecated. Use health_status_aggregation_policy instead. Policy for how the results from multiple health checks for the same endpoint are aggregated. - NO_AGGREGATION. An EndpointHealth message is returned for each backend in the health check service. - AND. If any backend's health check reports UNHEALTHY, then UNHEALTHY is the HealthState of the entire health check service. If all backend's are healthy, the HealthState of the health check service is HEALTHY. .""") - return pulumi.get(self, "health_status_aggregation_strategy") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/region_network_endpoint_group.py b/sdk/python/pulumi_google_native/compute/beta/region_network_endpoint_group.py index eddf1de87a..82f1a26d13 100644 --- a/sdk/python/pulumi_google_native/compute/beta/region_network_endpoint_group.py +++ b/sdk/python/pulumi_google_native/compute/beta/region_network_endpoint_group.py @@ -171,13 +171,11 @@ def description(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="loadBalancer") + @_utilities.deprecated("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") def load_balancer(self) -> Optional[pulumi.Input['NetworkEndpointGroupLbNetworkEndpointGroupArgs']]: """ This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated. """ - warnings.warn("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""load_balancer is deprecated: This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "load_balancer") @load_balancer.setter @@ -518,13 +516,11 @@ def kind(self) -> pulumi.Output[str]: @property @pulumi.getter(name="loadBalancer") + @_utilities.deprecated("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") def load_balancer(self) -> pulumi.Output['outputs.NetworkEndpointGroupLbNetworkEndpointGroupResponse']: """ This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated. """ - warnings.warn("""This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""load_balancer is deprecated: This field is only valid when the network endpoint group is used for load balancing. [Deprecated] This field is deprecated.""") - return pulumi.get(self, "load_balancer") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/region_network_firewall_policy.py b/sdk/python/pulumi_google_native/compute/beta/region_network_firewall_policy.py index b9c0a8b47b..39358c26ca 100644 --- a/sdk/python/pulumi_google_native/compute/beta/region_network_firewall_policy.py +++ b/sdk/python/pulumi_google_native/compute/beta/region_network_firewall_policy.py @@ -92,13 +92,11 @@ def description(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> Optional[pulumi.Input[str]]: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @display_name.setter @@ -319,13 +317,11 @@ def description(self) -> pulumi.Output[str]: @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> pulumi.Output[str]: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/region_target_https_proxy.py b/sdk/python/pulumi_google_native/compute/beta/region_target_https_proxy.py index c35d20b8ad..e8557371ff 100644 --- a/sdk/python/pulumi_google_native/compute/beta/region_target_https_proxy.py +++ b/sdk/python/pulumi_google_native/compute/beta/region_target_https_proxy.py @@ -101,13 +101,11 @@ def region(self, value: pulumi.Input[str]): @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use serverTlsPolicy instead.""") def authentication(self) -> Optional[pulumi.Input[str]]: """ [Deprecated] Use serverTlsPolicy instead. """ - warnings.warn("""[Deprecated] Use serverTlsPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authentication is deprecated: [Deprecated] Use serverTlsPolicy instead.""") - return pulumi.get(self, "authentication") @authentication.setter @@ -116,13 +114,11 @@ def authentication(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use authorizationPolicy instead.""") def authorization(self) -> Optional[pulumi.Input[str]]: """ [Deprecated] Use authorizationPolicy instead. """ - warnings.warn("""[Deprecated] Use authorizationPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authorization is deprecated: [Deprecated] Use authorizationPolicy instead.""") - return pulumi.get(self, "authorization") @authorization.setter @@ -461,24 +457,20 @@ def get(resource_name: str, @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use serverTlsPolicy instead.""") def authentication(self) -> pulumi.Output[str]: """ [Deprecated] Use serverTlsPolicy instead. """ - warnings.warn("""[Deprecated] Use serverTlsPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authentication is deprecated: [Deprecated] Use serverTlsPolicy instead.""") - return pulumi.get(self, "authentication") @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use authorizationPolicy instead.""") def authorization(self) -> pulumi.Output[str]: """ [Deprecated] Use authorizationPolicy instead. """ - warnings.warn("""[Deprecated] Use authorizationPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authorization is deprecated: [Deprecated] Use authorizationPolicy instead.""") - return pulumi.get(self, "authorization") @property diff --git a/sdk/python/pulumi_google_native/compute/beta/target_https_proxy.py b/sdk/python/pulumi_google_native/compute/beta/target_https_proxy.py index e68099920e..3dd026ea1e 100644 --- a/sdk/python/pulumi_google_native/compute/beta/target_https_proxy.py +++ b/sdk/python/pulumi_google_native/compute/beta/target_https_proxy.py @@ -90,13 +90,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use serverTlsPolicy instead.""") def authentication(self) -> Optional[pulumi.Input[str]]: """ [Deprecated] Use serverTlsPolicy instead. """ - warnings.warn("""[Deprecated] Use serverTlsPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authentication is deprecated: [Deprecated] Use serverTlsPolicy instead.""") - return pulumi.get(self, "authentication") @authentication.setter @@ -105,13 +103,11 @@ def authentication(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use authorizationPolicy instead.""") def authorization(self) -> Optional[pulumi.Input[str]]: """ [Deprecated] Use authorizationPolicy instead. """ - warnings.warn("""[Deprecated] Use authorizationPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authorization is deprecated: [Deprecated] Use authorizationPolicy instead.""") - return pulumi.get(self, "authorization") @authorization.setter @@ -446,24 +442,20 @@ def get(resource_name: str, @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use serverTlsPolicy instead.""") def authentication(self) -> pulumi.Output[str]: """ [Deprecated] Use serverTlsPolicy instead. """ - warnings.warn("""[Deprecated] Use serverTlsPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authentication is deprecated: [Deprecated] Use serverTlsPolicy instead.""") - return pulumi.get(self, "authentication") @property @pulumi.getter + @_utilities.deprecated("""[Deprecated] Use authorizationPolicy instead.""") def authorization(self) -> pulumi.Output[str]: """ [Deprecated] Use authorizationPolicy instead. """ - warnings.warn("""[Deprecated] Use authorizationPolicy instead.""", DeprecationWarning) - pulumi.log.warn("""authorization is deprecated: [Deprecated] Use authorizationPolicy instead.""") - return pulumi.get(self, "authorization") @property diff --git a/sdk/python/pulumi_google_native/compute/v1/_inputs.py b/sdk/python/pulumi_google_native/compute/v1/_inputs.py index 628bef4b90..1e24e33687 100644 --- a/sdk/python/pulumi_google_native/compute/v1/_inputs.py +++ b/sdk/python/pulumi_google_native/compute/v1/_inputs.py @@ -6334,13 +6334,11 @@ def container_type(self, value: Optional[pulumi.Input['ImageRawDiskContainerType @property @pulumi.getter(name="sha1Checksum") + @_utilities.deprecated("""[Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created.""") def sha1_checksum(self) -> Optional[pulumi.Input[str]]: """ [Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created. """ - warnings.warn("""[Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created.""", DeprecationWarning) - pulumi.log.warn("""sha1_checksum is deprecated: [Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created.""") - return pulumi.get(self, "sha1_checksum") @sha1_checksum.setter diff --git a/sdk/python/pulumi_google_native/compute/v1/backend_service.py b/sdk/python/pulumi_google_native/compute/v1/backend_service.py index 72a0fe0592..a656ffc9e8 100644 --- a/sdk/python/pulumi_google_native/compute/v1/backend_service.py +++ b/sdk/python/pulumi_google_native/compute/v1/backend_service.py @@ -443,13 +443,11 @@ def outlier_detection(self, value: Optional[pulumi.Input['OutlierDetectionArgs'] @property @pulumi.getter + @_utilities.deprecated("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") def port(self) -> Optional[pulumi.Input[int]]: """ Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port. """ - warnings.warn("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""", DeprecationWarning) - pulumi.log.warn("""port is deprecated: Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") - return pulumi.get(self, "port") @port.setter @@ -1043,13 +1041,11 @@ def outlier_detection(self) -> pulumi.Output['outputs.OutlierDetectionResponse'] @property @pulumi.getter + @_utilities.deprecated("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") def port(self) -> pulumi.Output[int]: """ Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port. """ - warnings.warn("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""", DeprecationWarning) - pulumi.log.warn("""port is deprecated: Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") - return pulumi.get(self, "port") @property diff --git a/sdk/python/pulumi_google_native/compute/v1/firewall_policy.py b/sdk/python/pulumi_google_native/compute/v1/firewall_policy.py index 6730fe6cf5..5d358f3eae 100644 --- a/sdk/python/pulumi_google_native/compute/v1/firewall_policy.py +++ b/sdk/python/pulumi_google_native/compute/v1/firewall_policy.py @@ -82,13 +82,11 @@ def description(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> Optional[pulumi.Input[str]]: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @display_name.setter @@ -307,13 +305,11 @@ def description(self) -> pulumi.Output[str]: @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> pulumi.Output[str]: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @property diff --git a/sdk/python/pulumi_google_native/compute/v1/get_backend_service.py b/sdk/python/pulumi_google_native/compute/v1/get_backend_service.py index f5b7378a94..bba80be1bf 100644 --- a/sdk/python/pulumi_google_native/compute/v1/get_backend_service.py +++ b/sdk/python/pulumi_google_native/compute/v1/get_backend_service.py @@ -361,13 +361,11 @@ def outlier_detection(self) -> 'outputs.OutlierDetectionResponse': @property @pulumi.getter + @_utilities.deprecated("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") def port(self) -> int: """ Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port. """ - warnings.warn("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""", DeprecationWarning) - pulumi.log.warn("""port is deprecated: Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") - return pulumi.get(self, "port") @property diff --git a/sdk/python/pulumi_google_native/compute/v1/get_firewall_policy.py b/sdk/python/pulumi_google_native/compute/v1/get_firewall_policy.py index 69cc5680a5..a4b9096855 100644 --- a/sdk/python/pulumi_google_native/compute/v1/get_firewall_policy.py +++ b/sdk/python/pulumi_google_native/compute/v1/get_firewall_policy.py @@ -89,13 +89,11 @@ def description(self) -> str: @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> str: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @property diff --git a/sdk/python/pulumi_google_native/compute/v1/get_interconnect_attachment.py b/sdk/python/pulumi_google_native/compute/v1/get_interconnect_attachment.py index 0d7e79ee89..5c534c83fc 100644 --- a/sdk/python/pulumi_google_native/compute/v1/get_interconnect_attachment.py +++ b/sdk/python/pulumi_google_native/compute/v1/get_interconnect_attachment.py @@ -268,13 +268,11 @@ def encryption(self) -> str: @property @pulumi.getter(name="googleReferenceId") + @_utilities.deprecated("""[Output Only] Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.""") def google_reference_id(self) -> str: """ Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used. """ - warnings.warn("""[Output Only] Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.""", DeprecationWarning) - pulumi.log.warn("""google_reference_id is deprecated: [Output Only] Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.""") - return pulumi.get(self, "google_reference_id") @property diff --git a/sdk/python/pulumi_google_native/compute/v1/get_license.py b/sdk/python/pulumi_google_native/compute/v1/get_license.py index 989da531db..c44aa6aac7 100644 --- a/sdk/python/pulumi_google_native/compute/v1/get_license.py +++ b/sdk/python/pulumi_google_native/compute/v1/get_license.py @@ -50,13 +50,11 @@ def __init__(__self__, charges_use_fee=None, creation_timestamp=None, descriptio @property @pulumi.getter(name="chargesUseFee") + @_utilities.deprecated("""[Output Only] Deprecated. This field no longer reflects whether a license charges a usage fee.""") def charges_use_fee(self) -> bool: """ Deprecated. This field no longer reflects whether a license charges a usage fee. """ - warnings.warn("""[Output Only] Deprecated. This field no longer reflects whether a license charges a usage fee.""", DeprecationWarning) - pulumi.log.warn("""charges_use_fee is deprecated: [Output Only] Deprecated. This field no longer reflects whether a license charges a usage fee.""") - return pulumi.get(self, "charges_use_fee") @property diff --git a/sdk/python/pulumi_google_native/compute/v1/get_network.py b/sdk/python/pulumi_google_native/compute/v1/get_network.py index 1ce9e8c0fd..cc4c023993 100644 --- a/sdk/python/pulumi_google_native/compute/v1/get_network.py +++ b/sdk/python/pulumi_google_native/compute/v1/get_network.py @@ -130,13 +130,11 @@ def internal_ipv6_range(self) -> str: @property @pulumi.getter(name="ipv4Range") + @_utilities.deprecated("""Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""") def ipv4_range(self) -> str: """ Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created. """ - warnings.warn("""Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""", DeprecationWarning) - pulumi.log.warn("""ipv4_range is deprecated: Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""") - return pulumi.get(self, "ipv4_range") @property diff --git a/sdk/python/pulumi_google_native/compute/v1/get_network_firewall_policy.py b/sdk/python/pulumi_google_native/compute/v1/get_network_firewall_policy.py index 67aab20c47..a8b9d262f7 100644 --- a/sdk/python/pulumi_google_native/compute/v1/get_network_firewall_policy.py +++ b/sdk/python/pulumi_google_native/compute/v1/get_network_firewall_policy.py @@ -89,13 +89,11 @@ def description(self) -> str: @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> str: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @property diff --git a/sdk/python/pulumi_google_native/compute/v1/get_region_backend_service.py b/sdk/python/pulumi_google_native/compute/v1/get_region_backend_service.py index e2439fceff..51445b9dbc 100644 --- a/sdk/python/pulumi_google_native/compute/v1/get_region_backend_service.py +++ b/sdk/python/pulumi_google_native/compute/v1/get_region_backend_service.py @@ -361,13 +361,11 @@ def outlier_detection(self) -> 'outputs.OutlierDetectionResponse': @property @pulumi.getter + @_utilities.deprecated("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") def port(self) -> int: """ Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port. """ - warnings.warn("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""", DeprecationWarning) - pulumi.log.warn("""port is deprecated: Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") - return pulumi.get(self, "port") @property diff --git a/sdk/python/pulumi_google_native/compute/v1/get_region_network_firewall_policy.py b/sdk/python/pulumi_google_native/compute/v1/get_region_network_firewall_policy.py index 43d79d04ff..28643ddaad 100644 --- a/sdk/python/pulumi_google_native/compute/v1/get_region_network_firewall_policy.py +++ b/sdk/python/pulumi_google_native/compute/v1/get_region_network_firewall_policy.py @@ -89,13 +89,11 @@ def description(self) -> str: @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> str: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @property diff --git a/sdk/python/pulumi_google_native/compute/v1/interconnect_attachment.py b/sdk/python/pulumi_google_native/compute/v1/interconnect_attachment.py index e9efceb770..cd51096b3d 100644 --- a/sdk/python/pulumi_google_native/compute/v1/interconnect_attachment.py +++ b/sdk/python/pulumi_google_native/compute/v1/interconnect_attachment.py @@ -771,13 +771,11 @@ def encryption(self) -> pulumi.Output[str]: @property @pulumi.getter(name="googleReferenceId") + @_utilities.deprecated("""[Output Only] Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.""") def google_reference_id(self) -> pulumi.Output[str]: """ Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used. """ - warnings.warn("""[Output Only] Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.""", DeprecationWarning) - pulumi.log.warn("""google_reference_id is deprecated: [Output Only] Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.""") - return pulumi.get(self, "google_reference_id") @property diff --git a/sdk/python/pulumi_google_native/compute/v1/license.py b/sdk/python/pulumi_google_native/compute/v1/license.py index 7fc39a08e7..caf04cac1a 100644 --- a/sdk/python/pulumi_google_native/compute/v1/license.py +++ b/sdk/python/pulumi_google_native/compute/v1/license.py @@ -220,13 +220,11 @@ def get(resource_name: str, @property @pulumi.getter(name="chargesUseFee") + @_utilities.deprecated("""[Output Only] Deprecated. This field no longer reflects whether a license charges a usage fee.""") def charges_use_fee(self) -> pulumi.Output[bool]: """ Deprecated. This field no longer reflects whether a license charges a usage fee. """ - warnings.warn("""[Output Only] Deprecated. This field no longer reflects whether a license charges a usage fee.""", DeprecationWarning) - pulumi.log.warn("""charges_use_fee is deprecated: [Output Only] Deprecated. This field no longer reflects whether a license charges a usage fee.""") - return pulumi.get(self, "charges_use_fee") @property diff --git a/sdk/python/pulumi_google_native/compute/v1/machine_image.py b/sdk/python/pulumi_google_native/compute/v1/machine_image.py index 83f916c974..c7496c168d 100644 --- a/sdk/python/pulumi_google_native/compute/v1/machine_image.py +++ b/sdk/python/pulumi_google_native/compute/v1/machine_image.py @@ -270,7 +270,7 @@ def _internal_init(__self__, __props__.__dict__["source_instance_properties"] = None __props__.__dict__["status"] = None __props__.__dict__["total_storage_bytes"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "source_instance"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "sourceInstance"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MachineImage, __self__).__init__( 'google-native:compute/v1:MachineImage', diff --git a/sdk/python/pulumi_google_native/compute/v1/network.py b/sdk/python/pulumi_google_native/compute/v1/network.py index f758362e7e..efd2480e7c 100644 --- a/sdk/python/pulumi_google_native/compute/v1/network.py +++ b/sdk/python/pulumi_google_native/compute/v1/network.py @@ -117,13 +117,11 @@ def internal_ipv6_range(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="ipv4Range") + @_utilities.deprecated("""Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""") def ipv4_range(self) -> Optional[pulumi.Input[str]]: """ Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created. """ - warnings.warn("""Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""", DeprecationWarning) - pulumi.log.warn("""ipv4_range is deprecated: Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""") - return pulumi.get(self, "ipv4_range") @ipv4_range.setter @@ -399,13 +397,11 @@ def internal_ipv6_range(self) -> pulumi.Output[str]: @property @pulumi.getter(name="ipv4Range") + @_utilities.deprecated("""Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""") def ipv4_range(self) -> pulumi.Output[str]: """ Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created. """ - warnings.warn("""Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""", DeprecationWarning) - pulumi.log.warn("""ipv4_range is deprecated: Deprecated in favor of subnet mode networks. The range of internal addresses that are legal on this network. This range is a CIDR specification, for example: 192.168.0.0/16. Provided by the client when the network is created.""") - return pulumi.get(self, "ipv4_range") @property diff --git a/sdk/python/pulumi_google_native/compute/v1/network_firewall_policy.py b/sdk/python/pulumi_google_native/compute/v1/network_firewall_policy.py index 29f6c7a3be..dde1d3d7be 100644 --- a/sdk/python/pulumi_google_native/compute/v1/network_firewall_policy.py +++ b/sdk/python/pulumi_google_native/compute/v1/network_firewall_policy.py @@ -81,13 +81,11 @@ def description(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> Optional[pulumi.Input[str]]: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @display_name.setter @@ -304,13 +302,11 @@ def description(self) -> pulumi.Output[str]: @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> pulumi.Output[str]: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @property diff --git a/sdk/python/pulumi_google_native/compute/v1/node_group.py b/sdk/python/pulumi_google_native/compute/v1/node_group.py index 4d66ec3c45..e1ca1db03f 100644 --- a/sdk/python/pulumi_google_native/compute/v1/node_group.py +++ b/sdk/python/pulumi_google_native/compute/v1/node_group.py @@ -299,7 +299,7 @@ def _internal_init(__self__, __props__.__dict__["self_link"] = None __props__.__dict__["size"] = None __props__.__dict__["status"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["initial_node_count", "project", "zone"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["initialNodeCount", "project", "zone"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(NodeGroup, __self__).__init__( 'google-native:compute/v1:NodeGroup', diff --git a/sdk/python/pulumi_google_native/compute/v1/outputs.py b/sdk/python/pulumi_google_native/compute/v1/outputs.py index 038094d9e7..ab86a72a04 100644 --- a/sdk/python/pulumi_google_native/compute/v1/outputs.py +++ b/sdk/python/pulumi_google_native/compute/v1/outputs.py @@ -6799,13 +6799,11 @@ def container_type(self) -> str: @property @pulumi.getter(name="sha1Checksum") + @_utilities.deprecated("""[Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created.""") def sha1_checksum(self) -> str: """ [Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created. """ - warnings.warn("""[Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created.""", DeprecationWarning) - pulumi.log.warn("""sha1_checksum is deprecated: [Deprecated] This field is deprecated. An optional SHA1 checksum of the disk image before unpackaging provided by the client when the disk image is created.""") - return pulumi.get(self, "sha1_checksum") @property diff --git a/sdk/python/pulumi_google_native/compute/v1/region_backend_service.py b/sdk/python/pulumi_google_native/compute/v1/region_backend_service.py index bc009f4302..bfb32baafe 100644 --- a/sdk/python/pulumi_google_native/compute/v1/region_backend_service.py +++ b/sdk/python/pulumi_google_native/compute/v1/region_backend_service.py @@ -454,13 +454,11 @@ def outlier_detection(self, value: Optional[pulumi.Input['OutlierDetectionArgs'] @property @pulumi.getter + @_utilities.deprecated("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") def port(self) -> Optional[pulumi.Input[int]]: """ Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port. """ - warnings.warn("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""", DeprecationWarning) - pulumi.log.warn("""port is deprecated: Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") - return pulumi.get(self, "port") @port.setter @@ -1058,13 +1056,11 @@ def outlier_detection(self) -> pulumi.Output['outputs.OutlierDetectionResponse'] @property @pulumi.getter + @_utilities.deprecated("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") def port(self) -> pulumi.Output[int]: """ Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port. """ - warnings.warn("""Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""", DeprecationWarning) - pulumi.log.warn("""port is deprecated: Deprecated in favor of portName. The TCP port to connect on the backend. The default value is 80. For Internal TCP/UDP Load Balancing and Network Load Balancing, omit port.""") - return pulumi.get(self, "port") @property diff --git a/sdk/python/pulumi_google_native/compute/v1/region_network_firewall_policy.py b/sdk/python/pulumi_google_native/compute/v1/region_network_firewall_policy.py index 1061010e27..4aad7f14df 100644 --- a/sdk/python/pulumi_google_native/compute/v1/region_network_firewall_policy.py +++ b/sdk/python/pulumi_google_native/compute/v1/region_network_firewall_policy.py @@ -92,13 +92,11 @@ def description(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> Optional[pulumi.Input[str]]: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @display_name.setter @@ -319,13 +317,11 @@ def description(self) -> pulumi.Output[str]: @property @pulumi.getter(name="displayName") + @_utilities.deprecated("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") def display_name(self) -> pulumi.Output[str]: """ Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. """ - warnings.warn("""Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""", DeprecationWarning) - pulumi.log.warn("""display_name is deprecated: Deprecated, please use short name instead. User-provided name of the Organization firewall policy. The name should be unique in the organization in which the firewall policy is created. This field is not applicable to network firewall policies. This name must be set on creation and cannot be changed. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.""") - return pulumi.get(self, "display_name") @property diff --git a/sdk/python/pulumi_google_native/connectors/v1/connection.py b/sdk/python/pulumi_google_native/connectors/v1/connection.py index 1f8eae5a1d..6741d855e3 100644 --- a/sdk/python/pulumi_google_native/connectors/v1/connection.py +++ b/sdk/python/pulumi_google_native/connectors/v1/connection.py @@ -414,7 +414,7 @@ def _internal_init(__self__, __props__.__dict__["status"] = None __props__.__dict__["subscription_type"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connection_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connectionId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Connection, __self__).__init__( 'google-native:connectors/v1:Connection', diff --git a/sdk/python/pulumi_google_native/connectors/v1/connection_iam_policy.py b/sdk/python/pulumi_google_native/connectors/v1/connection_iam_policy.py index e309515033..fe9b864733 100644 --- a/sdk/python/pulumi_google_native/connectors/v1/connection_iam_policy.py +++ b/sdk/python/pulumi_google_native/connectors/v1/connection_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connection_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connectionId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ConnectionIamPolicy, __self__).__init__( 'google-native:connectors/v1:ConnectionIamPolicy', diff --git a/sdk/python/pulumi_google_native/connectors/v1/custom_connector.py b/sdk/python/pulumi_google_native/connectors/v1/custom_connector.py index 29aa2d6c9c..29ab3b6d5e 100644 --- a/sdk/python/pulumi_google_native/connectors/v1/custom_connector.py +++ b/sdk/python/pulumi_google_native/connectors/v1/custom_connector.py @@ -226,7 +226,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["custom_connector_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["customConnectorId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CustomConnector, __self__).__init__( 'google-native:connectors/v1:CustomConnector', diff --git a/sdk/python/pulumi_google_native/connectors/v1/custom_connector_version.py b/sdk/python/pulumi_google_native/connectors/v1/custom_connector_version.py index 868ed9576c..a3a8e1c6ea 100644 --- a/sdk/python/pulumi_google_native/connectors/v1/custom_connector_version.py +++ b/sdk/python/pulumi_google_native/connectors/v1/custom_connector_version.py @@ -247,7 +247,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["custom_connector_id", "custom_connector_version_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["customConnectorId", "customConnectorVersionId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CustomConnectorVersion, __self__).__init__( 'google-native:connectors/v1:CustomConnectorVersion', diff --git a/sdk/python/pulumi_google_native/connectors/v1/endpoint_attachment.py b/sdk/python/pulumi_google_native/connectors/v1/endpoint_attachment.py index e48213b638..ea86c2ff5d 100644 --- a/sdk/python/pulumi_google_native/connectors/v1/endpoint_attachment.py +++ b/sdk/python/pulumi_google_native/connectors/v1/endpoint_attachment.py @@ -182,7 +182,7 @@ def _internal_init(__self__, __props__.__dict__["endpoint_ip"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["endpoint_attachment_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["endpointAttachmentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EndpointAttachment, __self__).__init__( 'google-native:connectors/v1:EndpointAttachment', diff --git a/sdk/python/pulumi_google_native/connectors/v1/event_subscription.py b/sdk/python/pulumi_google_native/connectors/v1/event_subscription.py index dc8eeb754f..e341a3cf90 100644 --- a/sdk/python/pulumi_google_native/connectors/v1/event_subscription.py +++ b/sdk/python/pulumi_google_native/connectors/v1/event_subscription.py @@ -257,7 +257,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["status"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connection_id", "event_subscription_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connectionId", "eventSubscriptionId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EventSubscription, __self__).__init__( 'google-native:connectors/v1:EventSubscription', diff --git a/sdk/python/pulumi_google_native/connectors/v1/managed_zone.py b/sdk/python/pulumi_google_native/connectors/v1/managed_zone.py index d457f71469..f015211f70 100644 --- a/sdk/python/pulumi_google_native/connectors/v1/managed_zone.py +++ b/sdk/python/pulumi_google_native/connectors/v1/managed_zone.py @@ -208,7 +208,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["managed_zone_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["managedZoneId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ManagedZone, __self__).__init__( 'google-native:connectors/v1:ManagedZone', diff --git a/sdk/python/pulumi_google_native/connectors/v1/provider_iam_policy.py b/sdk/python/pulumi_google_native/connectors/v1/provider_iam_policy.py index 61f65223c9..f33429c072 100644 --- a/sdk/python/pulumi_google_native/connectors/v1/provider_iam_policy.py +++ b/sdk/python/pulumi_google_native/connectors/v1/provider_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["provider_id"] = provider_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "provider_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "providerId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ProviderIamPolicy, __self__).__init__( 'google-native:connectors/v1:ProviderIamPolicy', diff --git a/sdk/python/pulumi_google_native/connectors/v2/entity.py b/sdk/python/pulumi_google_native/connectors/v2/entity.py index 15875d92e7..0bd774248c 100644 --- a/sdk/python/pulumi_google_native/connectors/v2/entity.py +++ b/sdk/python/pulumi_google_native/connectors/v2/entity.py @@ -149,7 +149,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["project"] = project __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connection_id", "entity_type_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connectionId", "entityTypeId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Entity, __self__).__init__( 'google-native:connectors/v2:Entity', diff --git a/sdk/python/pulumi_google_native/contactcenteraiplatform/v1alpha1/contact_center.py b/sdk/python/pulumi_google_native/contactcenteraiplatform/v1alpha1/contact_center.py index d915af6eae..c6552dcfad 100644 --- a/sdk/python/pulumi_google_native/contactcenteraiplatform/v1alpha1/contact_center.py +++ b/sdk/python/pulumi_google_native/contactcenteraiplatform/v1alpha1/contact_center.py @@ -344,7 +344,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None __props__.__dict__["uris"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["contact_center_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["contactCenterId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ContactCenter, __self__).__init__( 'google-native:contactcenteraiplatform/v1alpha1:ContactCenter', diff --git a/sdk/python/pulumi_google_native/contactcenterinsights/v1/analysis.py b/sdk/python/pulumi_google_native/contactcenterinsights/v1/analysis.py index 0c9e32c392..723c437788 100644 --- a/sdk/python/pulumi_google_native/contactcenterinsights/v1/analysis.py +++ b/sdk/python/pulumi_google_native/contactcenterinsights/v1/analysis.py @@ -156,7 +156,7 @@ def _internal_init(__self__, __props__.__dict__["analysis_result"] = None __props__.__dict__["create_time"] = None __props__.__dict__["request_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["conversation_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["conversationId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Analysis, __self__).__init__( 'google-native:contactcenterinsights/v1:Analysis', diff --git a/sdk/python/pulumi_google_native/contactcenterinsights/v1/outputs.py b/sdk/python/pulumi_google_native/contactcenterinsights/v1/outputs.py index 5c56fea711..fee81dd2d9 100644 --- a/sdk/python/pulumi_google_native/contactcenterinsights/v1/outputs.py +++ b/sdk/python/pulumi_google_native/contactcenterinsights/v1/outputs.py @@ -1097,13 +1097,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="dialogflowParticipant") + @_utilities.deprecated("""Deprecated. Use `dialogflow_participant_name` instead. The name of the Dialogflow participant. Format: projects/{project}/locations/{location}/conversations/{conversation}/participants/{participant}""") def dialogflow_participant(self) -> str: """ Deprecated. Use `dialogflow_participant_name` instead. The name of the Dialogflow participant. Format: projects/{project}/locations/{location}/conversations/{conversation}/participants/{participant} """ - warnings.warn("""Deprecated. Use `dialogflow_participant_name` instead. The name of the Dialogflow participant. Format: projects/{project}/locations/{location}/conversations/{conversation}/participants/{participant}""", DeprecationWarning) - pulumi.log.warn("""dialogflow_participant is deprecated: Deprecated. Use `dialogflow_participant_name` instead. The name of the Dialogflow participant. Format: projects/{project}/locations/{location}/conversations/{conversation}/participants/{participant}""") - return pulumi.get(self, "dialogflow_participant") @property diff --git a/sdk/python/pulumi_google_native/container/v1/_inputs.py b/sdk/python/pulumi_google_native/container/v1/_inputs.py index a9b90fd19f..7a0069a3ea 100644 --- a/sdk/python/pulumi_google_native/container/v1/_inputs.py +++ b/sdk/python/pulumi_google_native/container/v1/_inputs.py @@ -772,13 +772,11 @@ def management(self, value: Optional[pulumi.Input['NodeManagementArgs']]): @property @pulumi.getter(name="minCpuPlatform") + @_utilities.deprecated("""Deprecated. Minimum CPU platform to be used for NAP created node pools. The instance may be scheduled on the specified or newer CPU platform. Applicable values are the friendly names of CPU platforms, such as minCpuPlatform: Intel Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how to specify min CPU platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform). This field is deprecated, min_cpu_platform should be specified using `cloud.google.com/requested-min-cpu-platform` label selector on the pod. To unset the min cpu platform field pass \"automatic\" as field value.""") def min_cpu_platform(self) -> Optional[pulumi.Input[str]]: """ Deprecated. Minimum CPU platform to be used for NAP created node pools. The instance may be scheduled on the specified or newer CPU platform. Applicable values are the friendly names of CPU platforms, such as minCpuPlatform: Intel Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how to specify min CPU platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform). This field is deprecated, min_cpu_platform should be specified using `cloud.google.com/requested-min-cpu-platform` label selector on the pod. To unset the min cpu platform field pass "automatic" as field value. """ - warnings.warn("""Deprecated. Minimum CPU platform to be used for NAP created node pools. The instance may be scheduled on the specified or newer CPU platform. Applicable values are the friendly names of CPU platforms, such as minCpuPlatform: Intel Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how to specify min CPU platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform). This field is deprecated, min_cpu_platform should be specified using `cloud.google.com/requested-min-cpu-platform` label selector on the pod. To unset the min cpu platform field pass \"automatic\" as field value.""", DeprecationWarning) - pulumi.log.warn("""min_cpu_platform is deprecated: Deprecated. Minimum CPU platform to be used for NAP created node pools. The instance may be scheduled on the specified or newer CPU platform. Applicable values are the friendly names of CPU platforms, such as minCpuPlatform: Intel Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how to specify min CPU platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform). This field is deprecated, min_cpu_platform should be specified using `cloud.google.com/requested-min-cpu-platform` label selector on the pod. To unset the min cpu platform field pass \"automatic\" as field value.""") - return pulumi.get(self, "min_cpu_platform") @min_cpu_platform.setter @@ -918,13 +916,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""This field is deprecated. Leave this unset and instead configure BinaryAuthorization using evaluation_mode. If evaluation_mode is set to anything other than EVALUATION_MODE_UNSPECIFIED, this field is ignored.""") def enabled(self) -> Optional[pulumi.Input[bool]]: """ This field is deprecated. Leave this unset and instead configure BinaryAuthorization using evaluation_mode. If evaluation_mode is set to anything other than EVALUATION_MODE_UNSPECIFIED, this field is ignored. """ - warnings.warn("""This field is deprecated. Leave this unset and instead configure BinaryAuthorization using evaluation_mode. If evaluation_mode is set to anything other than EVALUATION_MODE_UNSPECIFIED, this field is ignored.""", DeprecationWarning) - pulumi.log.warn("""enabled is deprecated: This field is deprecated. Leave this unset and instead configure BinaryAuthorization using evaluation_mode. If evaluation_mode is set to anything other than EVALUATION_MODE_UNSPECIFIED, this field is ignored.""") - return pulumi.get(self, "enabled") @enabled.setter @@ -1907,13 +1903,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="clusterIpv4Cidr") + @_utilities.deprecated("""This field is deprecated, use cluster_ipv4_cidr_block.""") def cluster_ipv4_cidr(self) -> Optional[pulumi.Input[str]]: """ This field is deprecated, use cluster_ipv4_cidr_block. """ - warnings.warn("""This field is deprecated, use cluster_ipv4_cidr_block.""", DeprecationWarning) - pulumi.log.warn("""cluster_ipv4_cidr is deprecated: This field is deprecated, use cluster_ipv4_cidr_block.""") - return pulumi.get(self, "cluster_ipv4_cidr") @cluster_ipv4_cidr.setter @@ -1970,13 +1964,11 @@ def ipv6_access_type(self, value: Optional[pulumi.Input['IPAllocationPolicyIpv6A @property @pulumi.getter(name="nodeIpv4Cidr") + @_utilities.deprecated("""This field is deprecated, use node_ipv4_cidr_block.""") def node_ipv4_cidr(self) -> Optional[pulumi.Input[str]]: """ This field is deprecated, use node_ipv4_cidr_block. """ - warnings.warn("""This field is deprecated, use node_ipv4_cidr_block.""", DeprecationWarning) - pulumi.log.warn("""node_ipv4_cidr is deprecated: This field is deprecated, use node_ipv4_cidr_block.""") - return pulumi.get(self, "node_ipv4_cidr") @node_ipv4_cidr.setter @@ -2009,13 +2001,11 @@ def pod_cidr_overprovision_config(self, value: Optional[pulumi.Input['PodCIDROve @property @pulumi.getter(name="servicesIpv4Cidr") + @_utilities.deprecated("""This field is deprecated, use services_ipv4_cidr_block.""") def services_ipv4_cidr(self) -> Optional[pulumi.Input[str]]: """ This field is deprecated, use services_ipv4_cidr_block. """ - warnings.warn("""This field is deprecated, use services_ipv4_cidr_block.""", DeprecationWarning) - pulumi.log.warn("""services_ipv4_cidr is deprecated: This field is deprecated, use services_ipv4_cidr_block.""") - return pulumi.get(self, "services_ipv4_cidr") @services_ipv4_cidr.setter @@ -5335,13 +5325,11 @@ def canonical_code(self, value: Optional[pulumi.Input['StatusConditionCanonicalC @property @pulumi.getter + @_utilities.deprecated("""Machine-friendly representation of the condition Deprecated. Use canonical_code instead.""") def code(self) -> Optional[pulumi.Input['StatusConditionCode']]: """ Machine-friendly representation of the condition Deprecated. Use canonical_code instead. """ - warnings.warn("""Machine-friendly representation of the condition Deprecated. Use canonical_code instead.""", DeprecationWarning) - pulumi.log.warn("""code is deprecated: Machine-friendly representation of the condition Deprecated. Use canonical_code instead.""") - return pulumi.get(self, "code") @code.setter diff --git a/sdk/python/pulumi_google_native/container/v1/cluster.py b/sdk/python/pulumi_google_native/container/v1/cluster.py index ed1f771898..eda3c3e55d 100644 --- a/sdk/python/pulumi_google_native/container/v1/cluster.py +++ b/sdk/python/pulumi_google_native/container/v1/cluster.py @@ -501,13 +501,11 @@ def initial_cluster_version(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="initialNodeCount") + @_utilities.deprecated("""The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"node_config\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead.""") def initial_node_count(self) -> Optional[pulumi.Input[int]]: """ The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a "node_pool" object, since this configuration (along with the "node_config") will be used to create a "NodePool" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead. """ - warnings.warn("""The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"node_config\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead.""", DeprecationWarning) - pulumi.log.warn("""initial_node_count is deprecated: The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"node_config\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead.""") - return pulumi.get(self, "initial_node_count") @initial_node_count.setter @@ -516,13 +514,11 @@ def initial_node_count(self, value: Optional[pulumi.Input[int]]): @property @pulumi.getter(name="instanceGroupUrls") + @_utilities.deprecated("""Deprecated. Use node_pools.instance_group_urls.""") def instance_group_urls(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]: """ Deprecated. Use node_pools.instance_group_urls. """ - warnings.warn("""Deprecated. Use node_pools.instance_group_urls.""", DeprecationWarning) - pulumi.log.warn("""instance_group_urls is deprecated: Deprecated. Use node_pools.instance_group_urls.""") - return pulumi.get(self, "instance_group_urls") @instance_group_urls.setter @@ -720,13 +716,11 @@ def network_policy(self, value: Optional[pulumi.Input['NetworkPolicyArgs']]): @property @pulumi.getter(name="nodeConfig") + @_utilities.deprecated("""Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"initial_node_count\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead.""") def node_config(self) -> Optional[pulumi.Input['NodeConfigArgs']]: """ Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a "node_pool" object, since this configuration (along with the "initial_node_count") will be used to create a "NodePool" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead. """ - warnings.warn("""Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"initial_node_count\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead.""", DeprecationWarning) - pulumi.log.warn("""node_config is deprecated: Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"initial_node_count\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead.""") - return pulumi.get(self, "node_config") @node_config.setter @@ -819,13 +813,11 @@ def private_cluster_config(self, value: Optional[pulumi.Input['PrivateClusterCon @property @pulumi.getter + @_utilities.deprecated("""Deprecated. The Google Developers Console [project ID or project number](https://cloud.google.com/resource-manager/docs/creating-managing-projects). This field has been deprecated and replaced by the parent field.""") def project(self) -> Optional[pulumi.Input[str]]: """ Deprecated. The Google Developers Console [project ID or project number](https://cloud.google.com/resource-manager/docs/creating-managing-projects). This field has been deprecated and replaced by the parent field. """ - warnings.warn("""Deprecated. The Google Developers Console [project ID or project number](https://cloud.google.com/resource-manager/docs/creating-managing-projects). This field has been deprecated and replaced by the parent field.""", DeprecationWarning) - pulumi.log.warn("""project is deprecated: Deprecated. The Google Developers Console [project ID or project number](https://cloud.google.com/resource-manager/docs/creating-managing-projects). This field has been deprecated and replaced by the parent field.""") - return pulumi.get(self, "project") @project.setter @@ -930,13 +922,11 @@ def workload_identity_config(self, value: Optional[pulumi.Input['WorkloadIdentit @property @pulumi.getter + @_utilities.deprecated("""Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the parent field.""") def zone(self) -> Optional[pulumi.Input[str]]: """ Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the parent field. """ - warnings.warn("""Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the parent field.""", DeprecationWarning) - pulumi.log.warn("""zone is deprecated: Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the parent field.""") - return pulumi.get(self, "zone") @zone.setter @@ -1409,13 +1399,11 @@ def current_master_version(self) -> pulumi.Output[str]: @property @pulumi.getter(name="currentNodeCount") + @_utilities.deprecated("""[Output only] The number of nodes currently in the cluster. Deprecated. Call Kubernetes API directly to retrieve node information.""") def current_node_count(self) -> pulumi.Output[int]: """ [Output only] The number of nodes currently in the cluster. Deprecated. Call Kubernetes API directly to retrieve node information. """ - warnings.warn("""[Output only] The number of nodes currently in the cluster. Deprecated. Call Kubernetes API directly to retrieve node information.""", DeprecationWarning) - pulumi.log.warn("""current_node_count is deprecated: [Output only] The number of nodes currently in the cluster. Deprecated. Call Kubernetes API directly to retrieve node information.""") - return pulumi.get(self, "current_node_count") @property @@ -1532,24 +1520,20 @@ def initial_cluster_version(self) -> pulumi.Output[str]: @property @pulumi.getter(name="initialNodeCount") + @_utilities.deprecated("""The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"node_config\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead.""") def initial_node_count(self) -> pulumi.Output[int]: """ The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a "node_pool" object, since this configuration (along with the "node_config") will be used to create a "NodePool" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead. """ - warnings.warn("""The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"node_config\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead.""", DeprecationWarning) - pulumi.log.warn("""initial_node_count is deprecated: The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"node_config\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead.""") - return pulumi.get(self, "initial_node_count") @property @pulumi.getter(name="instanceGroupUrls") + @_utilities.deprecated("""Deprecated. Use node_pools.instance_group_urls.""") def instance_group_urls(self) -> pulumi.Output[Sequence[str]]: """ Deprecated. Use node_pools.instance_group_urls. """ - warnings.warn("""Deprecated. Use node_pools.instance_group_urls.""", DeprecationWarning) - pulumi.log.warn("""instance_group_urls is deprecated: Deprecated. Use node_pools.instance_group_urls.""") - return pulumi.get(self, "instance_group_urls") @property @@ -1687,13 +1671,11 @@ def network_policy(self) -> pulumi.Output['outputs.NetworkPolicyResponse']: @property @pulumi.getter(name="nodeConfig") + @_utilities.deprecated("""Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"initial_node_count\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead.""") def node_config(self) -> pulumi.Output['outputs.NodeConfigResponse']: """ Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a "node_pool" object, since this configuration (along with the "initial_node_count") will be used to create a "NodePool" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead. """ - warnings.warn("""Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"initial_node_count\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead.""", DeprecationWarning) - pulumi.log.warn("""node_config is deprecated: Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"initial_node_count\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead.""") - return pulumi.get(self, "node_config") @property @@ -1823,13 +1805,11 @@ def status(self) -> pulumi.Output[str]: @property @pulumi.getter(name="statusMessage") + @_utilities.deprecated("""[Output only] Deprecated. Use conditions instead. Additional information about the current status of this cluster, if available.""") def status_message(self) -> pulumi.Output[str]: """ [Output only] Deprecated. Use conditions instead. Additional information about the current status of this cluster, if available. """ - warnings.warn("""[Output only] Deprecated. Use conditions instead. Additional information about the current status of this cluster, if available.""", DeprecationWarning) - pulumi.log.warn("""status_message is deprecated: [Output only] Deprecated. Use conditions instead. Additional information about the current status of this cluster, if available.""") - return pulumi.get(self, "status_message") @property @@ -1866,13 +1846,11 @@ def workload_identity_config(self) -> pulumi.Output['outputs.WorkloadIdentityCon @property @pulumi.getter + @_utilities.deprecated("""[Output only] The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field is deprecated, use location instead.""") def zone(self) -> pulumi.Output[str]: """ [Output only] The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field is deprecated, use location instead. """ - warnings.warn("""[Output only] The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field is deprecated, use location instead.""", DeprecationWarning) - pulumi.log.warn("""zone is deprecated: [Output only] The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field is deprecated, use location instead.""") - return pulumi.get(self, "zone") @pulumi.output_type diff --git a/sdk/python/pulumi_google_native/container/v1/get_cluster.py b/sdk/python/pulumi_google_native/container/v1/get_cluster.py index cbfd7eac7a..348b7b780c 100644 --- a/sdk/python/pulumi_google_native/container/v1/get_cluster.py +++ b/sdk/python/pulumi_google_native/container/v1/get_cluster.py @@ -312,13 +312,11 @@ def current_master_version(self) -> str: @property @pulumi.getter(name="currentNodeCount") + @_utilities.deprecated("""[Output only] The number of nodes currently in the cluster. Deprecated. Call Kubernetes API directly to retrieve node information.""") def current_node_count(self) -> int: """ [Output only] The number of nodes currently in the cluster. Deprecated. Call Kubernetes API directly to retrieve node information. """ - warnings.warn("""[Output only] The number of nodes currently in the cluster. Deprecated. Call Kubernetes API directly to retrieve node information.""", DeprecationWarning) - pulumi.log.warn("""current_node_count is deprecated: [Output only] The number of nodes currently in the cluster. Deprecated. Call Kubernetes API directly to retrieve node information.""") - return pulumi.get(self, "current_node_count") @property @@ -435,24 +433,20 @@ def initial_cluster_version(self) -> str: @property @pulumi.getter(name="initialNodeCount") + @_utilities.deprecated("""The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"node_config\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead.""") def initial_node_count(self) -> int: """ The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a "node_pool" object, since this configuration (along with the "node_config") will be used to create a "NodePool" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead. """ - warnings.warn("""The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"node_config\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead.""", DeprecationWarning) - pulumi.log.warn("""initial_node_count is deprecated: The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"node_config\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead.""") - return pulumi.get(self, "initial_node_count") @property @pulumi.getter(name="instanceGroupUrls") + @_utilities.deprecated("""Deprecated. Use node_pools.instance_group_urls.""") def instance_group_urls(self) -> Sequence[str]: """ Deprecated. Use node_pools.instance_group_urls. """ - warnings.warn("""Deprecated. Use node_pools.instance_group_urls.""", DeprecationWarning) - pulumi.log.warn("""instance_group_urls is deprecated: Deprecated. Use node_pools.instance_group_urls.""") - return pulumi.get(self, "instance_group_urls") @property @@ -593,13 +587,11 @@ def network_policy(self) -> 'outputs.NetworkPolicyResponse': @property @pulumi.getter(name="nodeConfig") + @_utilities.deprecated("""Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"initial_node_count\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead.""") def node_config(self) -> 'outputs.NodeConfigResponse': """ Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a "node_pool" object, since this configuration (along with the "initial_node_count") will be used to create a "NodePool" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead. """ - warnings.warn("""Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"initial_node_count\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead.""", DeprecationWarning) - pulumi.log.warn("""node_config is deprecated: Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"initial_node_count\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead.""") - return pulumi.get(self, "node_config") @property @@ -724,13 +716,11 @@ def status(self) -> str: @property @pulumi.getter(name="statusMessage") + @_utilities.deprecated("""[Output only] Deprecated. Use conditions instead. Additional information about the current status of this cluster, if available.""") def status_message(self) -> str: """ [Output only] Deprecated. Use conditions instead. Additional information about the current status of this cluster, if available. """ - warnings.warn("""[Output only] Deprecated. Use conditions instead. Additional information about the current status of this cluster, if available.""", DeprecationWarning) - pulumi.log.warn("""status_message is deprecated: [Output only] Deprecated. Use conditions instead. Additional information about the current status of this cluster, if available.""") - return pulumi.get(self, "status_message") @property @@ -767,13 +757,11 @@ def workload_identity_config(self) -> 'outputs.WorkloadIdentityConfigResponse': @property @pulumi.getter + @_utilities.deprecated("""[Output only] The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field is deprecated, use location instead.""") def zone(self) -> str: """ [Output only] The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field is deprecated, use location instead. """ - warnings.warn("""[Output only] The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field is deprecated, use location instead.""", DeprecationWarning) - pulumi.log.warn("""zone is deprecated: [Output only] The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field is deprecated, use location instead.""") - return pulumi.get(self, "zone") diff --git a/sdk/python/pulumi_google_native/container/v1/get_node_pool.py b/sdk/python/pulumi_google_native/container/v1/get_node_pool.py index fe1c939a9b..f2693760ac 100644 --- a/sdk/python/pulumi_google_native/container/v1/get_node_pool.py +++ b/sdk/python/pulumi_google_native/container/v1/get_node_pool.py @@ -222,13 +222,11 @@ def status(self) -> str: @property @pulumi.getter(name="statusMessage") + @_utilities.deprecated("""[Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available.""") def status_message(self) -> str: """ [Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available. """ - warnings.warn("""[Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available.""", DeprecationWarning) - pulumi.log.warn("""status_message is deprecated: [Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available.""") - return pulumi.get(self, "status_message") @property diff --git a/sdk/python/pulumi_google_native/container/v1/node_pool.py b/sdk/python/pulumi_google_native/container/v1/node_pool.py index 66ddc2bf7c..35918941cc 100644 --- a/sdk/python/pulumi_google_native/container/v1/node_pool.py +++ b/sdk/python/pulumi_google_native/container/v1/node_pool.py @@ -110,13 +110,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="clusterId") + @_utilities.deprecated("""Deprecated. The name of the cluster. This field has been deprecated and replaced by the parent field.""") def cluster_id(self) -> pulumi.Input[str]: """ Deprecated. The name of the cluster. This field has been deprecated and replaced by the parent field. """ - warnings.warn("""Deprecated. The name of the cluster. This field has been deprecated and replaced by the parent field.""", DeprecationWarning) - pulumi.log.warn("""cluster_id is deprecated: Deprecated. The name of the cluster. This field has been deprecated and replaced by the parent field.""") - return pulumi.get(self, "cluster_id") @cluster_id.setter @@ -290,13 +288,11 @@ def placement_policy(self, value: Optional[pulumi.Input['PlacementPolicyArgs']]) @property @pulumi.getter + @_utilities.deprecated("""Deprecated. The Google Developers Console [project ID or project number](https://cloud.google.com/resource-manager/docs/creating-managing-projects). This field has been deprecated and replaced by the parent field.""") def project(self) -> Optional[pulumi.Input[str]]: """ Deprecated. The Google Developers Console [project ID or project number](https://cloud.google.com/resource-manager/docs/creating-managing-projects). This field has been deprecated and replaced by the parent field. """ - warnings.warn("""Deprecated. The Google Developers Console [project ID or project number](https://cloud.google.com/resource-manager/docs/creating-managing-projects). This field has been deprecated and replaced by the parent field.""", DeprecationWarning) - pulumi.log.warn("""project is deprecated: Deprecated. The Google Developers Console [project ID or project number](https://cloud.google.com/resource-manager/docs/creating-managing-projects). This field has been deprecated and replaced by the parent field.""") - return pulumi.get(self, "project") @project.setter @@ -341,13 +337,11 @@ def version(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the parent field.""") def zone(self) -> Optional[pulumi.Input[str]]: """ Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the parent field. """ - warnings.warn("""Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the parent field.""", DeprecationWarning) - pulumi.log.warn("""zone is deprecated: Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the parent field.""") - return pulumi.get(self, "zone") @zone.setter @@ -487,7 +481,7 @@ def _internal_init(__self__, __props__.__dict__["status"] = None __props__.__dict__["status_message"] = None __props__.__dict__["update_info"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cluster_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clusterId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(NodePool, __self__).__init__( 'google-native:container/v1:NodePool', @@ -690,13 +684,11 @@ def status(self) -> pulumi.Output[str]: @property @pulumi.getter(name="statusMessage") + @_utilities.deprecated("""[Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available.""") def status_message(self) -> pulumi.Output[str]: """ [Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available. """ - warnings.warn("""[Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available.""", DeprecationWarning) - pulumi.log.warn("""status_message is deprecated: [Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available.""") - return pulumi.get(self, "status_message") @property diff --git a/sdk/python/pulumi_google_native/container/v1/outputs.py b/sdk/python/pulumi_google_native/container/v1/outputs.py index c931db4a7d..5d38a43bdb 100644 --- a/sdk/python/pulumi_google_native/container/v1/outputs.py +++ b/sdk/python/pulumi_google_native/container/v1/outputs.py @@ -906,13 +906,11 @@ def management(self) -> 'outputs.NodeManagementResponse': @property @pulumi.getter(name="minCpuPlatform") + @_utilities.deprecated("""Deprecated. Minimum CPU platform to be used for NAP created node pools. The instance may be scheduled on the specified or newer CPU platform. Applicable values are the friendly names of CPU platforms, such as minCpuPlatform: Intel Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how to specify min CPU platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform). This field is deprecated, min_cpu_platform should be specified using `cloud.google.com/requested-min-cpu-platform` label selector on the pod. To unset the min cpu platform field pass \"automatic\" as field value.""") def min_cpu_platform(self) -> str: """ Deprecated. Minimum CPU platform to be used for NAP created node pools. The instance may be scheduled on the specified or newer CPU platform. Applicable values are the friendly names of CPU platforms, such as minCpuPlatform: Intel Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how to specify min CPU platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform). This field is deprecated, min_cpu_platform should be specified using `cloud.google.com/requested-min-cpu-platform` label selector on the pod. To unset the min cpu platform field pass "automatic" as field value. """ - warnings.warn("""Deprecated. Minimum CPU platform to be used for NAP created node pools. The instance may be scheduled on the specified or newer CPU platform. Applicable values are the friendly names of CPU platforms, such as minCpuPlatform: Intel Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how to specify min CPU platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform). This field is deprecated, min_cpu_platform should be specified using `cloud.google.com/requested-min-cpu-platform` label selector on the pod. To unset the min cpu platform field pass \"automatic\" as field value.""", DeprecationWarning) - pulumi.log.warn("""min_cpu_platform is deprecated: Deprecated. Minimum CPU platform to be used for NAP created node pools. The instance may be scheduled on the specified or newer CPU platform. Applicable values are the friendly names of CPU platforms, such as minCpuPlatform: Intel Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how to specify min CPU platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform). This field is deprecated, min_cpu_platform should be specified using `cloud.google.com/requested-min-cpu-platform` label selector on the pod. To unset the min cpu platform field pass \"automatic\" as field value.""") - return pulumi.get(self, "min_cpu_platform") @property @@ -1072,13 +1070,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""This field is deprecated. Leave this unset and instead configure BinaryAuthorization using evaluation_mode. If evaluation_mode is set to anything other than EVALUATION_MODE_UNSPECIFIED, this field is ignored.""") def enabled(self) -> bool: """ This field is deprecated. Leave this unset and instead configure BinaryAuthorization using evaluation_mode. If evaluation_mode is set to anything other than EVALUATION_MODE_UNSPECIFIED, this field is ignored. """ - warnings.warn("""This field is deprecated. Leave this unset and instead configure BinaryAuthorization using evaluation_mode. If evaluation_mode is set to anything other than EVALUATION_MODE_UNSPECIFIED, this field is ignored.""", DeprecationWarning) - pulumi.log.warn("""enabled is deprecated: This field is deprecated. Leave this unset and instead configure BinaryAuthorization using evaluation_mode. If evaluation_mode is set to anything other than EVALUATION_MODE_UNSPECIFIED, this field is ignored.""") - return pulumi.get(self, "enabled") @property @@ -2401,13 +2397,11 @@ def additional_pod_ranges_config(self) -> 'outputs.AdditionalPodRangesConfigResp @property @pulumi.getter(name="clusterIpv4Cidr") + @_utilities.deprecated("""This field is deprecated, use cluster_ipv4_cidr_block.""") def cluster_ipv4_cidr(self) -> str: """ This field is deprecated, use cluster_ipv4_cidr_block. """ - warnings.warn("""This field is deprecated, use cluster_ipv4_cidr_block.""", DeprecationWarning) - pulumi.log.warn("""cluster_ipv4_cidr is deprecated: This field is deprecated, use cluster_ipv4_cidr_block.""") - return pulumi.get(self, "cluster_ipv4_cidr") @property @@ -2452,13 +2446,11 @@ def ipv6_access_type(self) -> str: @property @pulumi.getter(name="nodeIpv4Cidr") + @_utilities.deprecated("""This field is deprecated, use node_ipv4_cidr_block.""") def node_ipv4_cidr(self) -> str: """ This field is deprecated, use node_ipv4_cidr_block. """ - warnings.warn("""This field is deprecated, use node_ipv4_cidr_block.""", DeprecationWarning) - pulumi.log.warn("""node_ipv4_cidr is deprecated: This field is deprecated, use node_ipv4_cidr_block.""") - return pulumi.get(self, "node_ipv4_cidr") @property @@ -2479,13 +2471,11 @@ def pod_cidr_overprovision_config(self) -> 'outputs.PodCIDROverprovisionConfigRe @property @pulumi.getter(name="servicesIpv4Cidr") + @_utilities.deprecated("""This field is deprecated, use services_ipv4_cidr_block.""") def services_ipv4_cidr(self) -> str: """ This field is deprecated, use services_ipv4_cidr_block. """ - warnings.warn("""This field is deprecated, use services_ipv4_cidr_block.""", DeprecationWarning) - pulumi.log.warn("""services_ipv4_cidr is deprecated: This field is deprecated, use services_ipv4_cidr_block.""") - return pulumi.get(self, "services_ipv4_cidr") @property @@ -5019,13 +5009,11 @@ def status(self) -> str: @property @pulumi.getter(name="statusMessage") + @_utilities.deprecated("""[Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available.""") def status_message(self) -> str: """ [Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available. """ - warnings.warn("""[Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available.""", DeprecationWarning) - pulumi.log.warn("""status_message is deprecated: [Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available.""") - return pulumi.get(self, "status_message") @property @@ -6148,13 +6136,11 @@ def canonical_code(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""Machine-friendly representation of the condition Deprecated. Use canonical_code instead.""") def code(self) -> str: """ Machine-friendly representation of the condition Deprecated. Use canonical_code instead. """ - warnings.warn("""Machine-friendly representation of the condition Deprecated. Use canonical_code instead.""", DeprecationWarning) - pulumi.log.warn("""code is deprecated: Machine-friendly representation of the condition Deprecated. Use canonical_code instead.""") - return pulumi.get(self, "code") @property diff --git a/sdk/python/pulumi_google_native/container/v1beta1/_inputs.py b/sdk/python/pulumi_google_native/container/v1beta1/_inputs.py index fb1319e6d2..d45382949f 100644 --- a/sdk/python/pulumi_google_native/container/v1beta1/_inputs.py +++ b/sdk/python/pulumi_google_native/container/v1beta1/_inputs.py @@ -860,13 +860,11 @@ def management(self, value: Optional[pulumi.Input['NodeManagementArgs']]): @property @pulumi.getter(name="minCpuPlatform") + @_utilities.deprecated("""Deprecated. Minimum CPU platform to be used for NAP created node pools. The instance may be scheduled on the specified or newer CPU platform. Applicable values are the friendly names of CPU platforms, such as minCpuPlatform: Intel Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how to specify min CPU platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform). This field is deprecated, min_cpu_platform should be specified using `cloud.google.com/requested-min-cpu-platform` label selector on the pod. To unset the min cpu platform field pass \"automatic\" as field value.""") def min_cpu_platform(self) -> Optional[pulumi.Input[str]]: """ Deprecated. Minimum CPU platform to be used for NAP created node pools. The instance may be scheduled on the specified or newer CPU platform. Applicable values are the friendly names of CPU platforms, such as minCpuPlatform: Intel Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how to specify min CPU platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform). This field is deprecated, min_cpu_platform should be specified using `cloud.google.com/requested-min-cpu-platform` label selector on the pod. To unset the min cpu platform field pass "automatic" as field value. """ - warnings.warn("""Deprecated. Minimum CPU platform to be used for NAP created node pools. The instance may be scheduled on the specified or newer CPU platform. Applicable values are the friendly names of CPU platforms, such as minCpuPlatform: Intel Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how to specify min CPU platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform). This field is deprecated, min_cpu_platform should be specified using `cloud.google.com/requested-min-cpu-platform` label selector on the pod. To unset the min cpu platform field pass \"automatic\" as field value.""", DeprecationWarning) - pulumi.log.warn("""min_cpu_platform is deprecated: Deprecated. Minimum CPU platform to be used for NAP created node pools. The instance may be scheduled on the specified or newer CPU platform. Applicable values are the friendly names of CPU platforms, such as minCpuPlatform: Intel Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how to specify min CPU platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform). This field is deprecated, min_cpu_platform should be specified using `cloud.google.com/requested-min-cpu-platform` label selector on the pod. To unset the min cpu platform field pass \"automatic\" as field value.""") - return pulumi.get(self, "min_cpu_platform") @min_cpu_platform.setter @@ -1010,13 +1008,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""This field is deprecated. Leave this unset and instead configure BinaryAuthorization using evaluation_mode. If evaluation_mode is set to anything other than EVALUATION_MODE_UNSPECIFIED, this field is ignored.""") def enabled(self) -> Optional[pulumi.Input[bool]]: """ This field is deprecated. Leave this unset and instead configure BinaryAuthorization using evaluation_mode. If evaluation_mode is set to anything other than EVALUATION_MODE_UNSPECIFIED, this field is ignored. """ - warnings.warn("""This field is deprecated. Leave this unset and instead configure BinaryAuthorization using evaluation_mode. If evaluation_mode is set to anything other than EVALUATION_MODE_UNSPECIFIED, this field is ignored.""", DeprecationWarning) - pulumi.log.warn("""enabled is deprecated: This field is deprecated. Leave this unset and instead configure BinaryAuthorization using evaluation_mode. If evaluation_mode is set to anything other than EVALUATION_MODE_UNSPECIFIED, this field is ignored.""") - return pulumi.get(self, "enabled") @enabled.setter @@ -2118,13 +2114,11 @@ def allow_route_overlap(self, value: Optional[pulumi.Input[bool]]): @property @pulumi.getter(name="clusterIpv4Cidr") + @_utilities.deprecated("""This field is deprecated, use cluster_ipv4_cidr_block.""") def cluster_ipv4_cidr(self) -> Optional[pulumi.Input[str]]: """ This field is deprecated, use cluster_ipv4_cidr_block. """ - warnings.warn("""This field is deprecated, use cluster_ipv4_cidr_block.""", DeprecationWarning) - pulumi.log.warn("""cluster_ipv4_cidr is deprecated: This field is deprecated, use cluster_ipv4_cidr_block.""") - return pulumi.get(self, "cluster_ipv4_cidr") @cluster_ipv4_cidr.setter @@ -2181,13 +2175,11 @@ def ipv6_access_type(self, value: Optional[pulumi.Input['IPAllocationPolicyIpv6A @property @pulumi.getter(name="nodeIpv4Cidr") + @_utilities.deprecated("""This field is deprecated, use node_ipv4_cidr_block.""") def node_ipv4_cidr(self) -> Optional[pulumi.Input[str]]: """ This field is deprecated, use node_ipv4_cidr_block. """ - warnings.warn("""This field is deprecated, use node_ipv4_cidr_block.""", DeprecationWarning) - pulumi.log.warn("""node_ipv4_cidr is deprecated: This field is deprecated, use node_ipv4_cidr_block.""") - return pulumi.get(self, "node_ipv4_cidr") @node_ipv4_cidr.setter @@ -2220,13 +2212,11 @@ def pod_cidr_overprovision_config(self, value: Optional[pulumi.Input['PodCIDROve @property @pulumi.getter(name="servicesIpv4Cidr") + @_utilities.deprecated("""This field is deprecated, use services_ipv4_cidr_block.""") def services_ipv4_cidr(self) -> Optional[pulumi.Input[str]]: """ This field is deprecated, use services_ipv4_cidr_block. """ - warnings.warn("""This field is deprecated, use services_ipv4_cidr_block.""", DeprecationWarning) - pulumi.log.warn("""services_ipv4_cidr is deprecated: This field is deprecated, use services_ipv4_cidr_block.""") - return pulumi.get(self, "services_ipv4_cidr") @services_ipv4_cidr.setter @@ -2283,13 +2273,11 @@ def subnetwork_name(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="tpuIpv4CidrBlock") + @_utilities.deprecated("""The IP address range of the Cloud TPUs in this cluster. If unspecified, a range will be automatically chosen with the default size. This field is only applicable when `use_ip_aliases` is true. If unspecified, the range will use the default size. Set to /netmask (e.g. `/14`) to have a range chosen with a specific netmask. Set to a [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific range to use. This field is deprecated, use cluster.tpu_config.ipv4_cidr_block instead.""") def tpu_ipv4_cidr_block(self) -> Optional[pulumi.Input[str]]: """ The IP address range of the Cloud TPUs in this cluster. If unspecified, a range will be automatically chosen with the default size. This field is only applicable when `use_ip_aliases` is true. If unspecified, the range will use the default size. Set to /netmask (e.g. `/14`) to have a range chosen with a specific netmask. Set to a [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific range to use. This field is deprecated, use cluster.tpu_config.ipv4_cidr_block instead. """ - warnings.warn("""The IP address range of the Cloud TPUs in this cluster. If unspecified, a range will be automatically chosen with the default size. This field is only applicable when `use_ip_aliases` is true. If unspecified, the range will use the default size. Set to /netmask (e.g. `/14`) to have a range chosen with a specific netmask. Set to a [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific range to use. This field is deprecated, use cluster.tpu_config.ipv4_cidr_block instead.""", DeprecationWarning) - pulumi.log.warn("""tpu_ipv4_cidr_block is deprecated: The IP address range of the Cloud TPUs in this cluster. If unspecified, a range will be automatically chosen with the default size. This field is only applicable when `use_ip_aliases` is true. If unspecified, the range will use the default size. Set to /netmask (e.g. `/14`) to have a range chosen with a specific netmask. Set to a [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific range to use. This field is deprecated, use cluster.tpu_config.ipv4_cidr_block instead.""") - return pulumi.get(self, "tpu_ipv4_cidr_block") @tpu_ipv4_cidr_block.setter @@ -5890,13 +5878,11 @@ def canonical_code(self, value: Optional[pulumi.Input['StatusConditionCanonicalC @property @pulumi.getter + @_utilities.deprecated("""Machine-friendly representation of the condition Deprecated. Use canonical_code instead.""") def code(self) -> Optional[pulumi.Input['StatusConditionCode']]: """ Machine-friendly representation of the condition Deprecated. Use canonical_code instead. """ - warnings.warn("""Machine-friendly representation of the condition Deprecated. Use canonical_code instead.""", DeprecationWarning) - pulumi.log.warn("""code is deprecated: Machine-friendly representation of the condition Deprecated. Use canonical_code instead.""") - return pulumi.get(self, "code") @code.setter diff --git a/sdk/python/pulumi_google_native/container/v1beta1/cluster.py b/sdk/python/pulumi_google_native/container/v1beta1/cluster.py index dad8f56dd0..1bd9624581 100644 --- a/sdk/python/pulumi_google_native/container/v1beta1/cluster.py +++ b/sdk/python/pulumi_google_native/container/v1beta1/cluster.py @@ -489,13 +489,11 @@ def enable_kubernetes_alpha(self, value: Optional[pulumi.Input[bool]]): @property @pulumi.getter(name="enableTpu") + @_utilities.deprecated("""Enable the ability to use Cloud TPUs in this cluster. This field is deprecated, use tpu_config.enabled instead.""") def enable_tpu(self) -> Optional[pulumi.Input[bool]]: """ Enable the ability to use Cloud TPUs in this cluster. This field is deprecated, use tpu_config.enabled instead. """ - warnings.warn("""Enable the ability to use Cloud TPUs in this cluster. This field is deprecated, use tpu_config.enabled instead.""", DeprecationWarning) - pulumi.log.warn("""enable_tpu is deprecated: Enable the ability to use Cloud TPUs in this cluster. This field is deprecated, use tpu_config.enabled instead.""") - return pulumi.get(self, "enable_tpu") @enable_tpu.setter @@ -564,13 +562,11 @@ def initial_cluster_version(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="initialNodeCount") + @_utilities.deprecated("""The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"node_config\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead.""") def initial_node_count(self) -> Optional[pulumi.Input[int]]: """ The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a "node_pool" object, since this configuration (along with the "node_config") will be used to create a "NodePool" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead. """ - warnings.warn("""The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"node_config\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead.""", DeprecationWarning) - pulumi.log.warn("""initial_node_count is deprecated: The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"node_config\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead.""") - return pulumi.get(self, "initial_node_count") @initial_node_count.setter @@ -579,13 +575,11 @@ def initial_node_count(self, value: Optional[pulumi.Input[int]]): @property @pulumi.getter(name="instanceGroupUrls") + @_utilities.deprecated("""Deprecated. Use node_pools.instance_group_urls.""") def instance_group_urls(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]: """ Deprecated. Use node_pools.instance_group_urls. """ - warnings.warn("""Deprecated. Use node_pools.instance_group_urls.""", DeprecationWarning) - pulumi.log.warn("""instance_group_urls is deprecated: Deprecated. Use node_pools.instance_group_urls.""") - return pulumi.get(self, "instance_group_urls") @instance_group_urls.setter @@ -711,13 +705,11 @@ def master_authorized_networks_config(self, value: Optional[pulumi.Input['Master @property @pulumi.getter(name="masterIpv4CidrBlock") + @_utilities.deprecated("""The IP prefix in CIDR notation to use for the hosted master network. This prefix will be used for assigning private IP addresses to the master or set of masters, as well as the ILB VIP. This field is deprecated, use private_cluster_config.master_ipv4_cidr_block instead.""") def master_ipv4_cidr_block(self) -> Optional[pulumi.Input[str]]: """ The IP prefix in CIDR notation to use for the hosted master network. This prefix will be used for assigning private IP addresses to the master or set of masters, as well as the ILB VIP. This field is deprecated, use private_cluster_config.master_ipv4_cidr_block instead. """ - warnings.warn("""The IP prefix in CIDR notation to use for the hosted master network. This prefix will be used for assigning private IP addresses to the master or set of masters, as well as the ILB VIP. This field is deprecated, use private_cluster_config.master_ipv4_cidr_block instead.""", DeprecationWarning) - pulumi.log.warn("""master_ipv4_cidr_block is deprecated: The IP prefix in CIDR notation to use for the hosted master network. This prefix will be used for assigning private IP addresses to the master or set of masters, as well as the ILB VIP. This field is deprecated, use private_cluster_config.master_ipv4_cidr_block instead.""") - return pulumi.get(self, "master_ipv4_cidr_block") @master_ipv4_cidr_block.setter @@ -810,13 +802,11 @@ def network_policy(self, value: Optional[pulumi.Input['NetworkPolicyArgs']]): @property @pulumi.getter(name="nodeConfig") + @_utilities.deprecated("""Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"initial_node_count\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead.""") def node_config(self) -> Optional[pulumi.Input['NodeConfigArgs']]: """ Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a "node_pool" object, since this configuration (along with the "initial_node_count") will be used to create a "NodePool" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead. """ - warnings.warn("""Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"initial_node_count\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead.""", DeprecationWarning) - pulumi.log.warn("""node_config is deprecated: Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"initial_node_count\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead.""") - return pulumi.get(self, "node_config") @node_config.setter @@ -909,13 +899,11 @@ def pod_security_policy_config(self, value: Optional[pulumi.Input['PodSecurityPo @property @pulumi.getter(name="privateCluster") + @_utilities.deprecated("""If this is a private cluster setup. Private clusters are clusters that, by default have no external IP addresses on the nodes and where nodes and the master communicate over private IP addresses. This field is deprecated, use private_cluster_config.enable_private_nodes instead.""") def private_cluster(self) -> Optional[pulumi.Input[bool]]: """ If this is a private cluster setup. Private clusters are clusters that, by default have no external IP addresses on the nodes and where nodes and the master communicate over private IP addresses. This field is deprecated, use private_cluster_config.enable_private_nodes instead. """ - warnings.warn("""If this is a private cluster setup. Private clusters are clusters that, by default have no external IP addresses on the nodes and where nodes and the master communicate over private IP addresses. This field is deprecated, use private_cluster_config.enable_private_nodes instead.""", DeprecationWarning) - pulumi.log.warn("""private_cluster is deprecated: If this is a private cluster setup. Private clusters are clusters that, by default have no external IP addresses on the nodes and where nodes and the master communicate over private IP addresses. This field is deprecated, use private_cluster_config.enable_private_nodes instead.""") - return pulumi.get(self, "private_cluster") @private_cluster.setter @@ -936,13 +924,11 @@ def private_cluster_config(self, value: Optional[pulumi.Input['PrivateClusterCon @property @pulumi.getter + @_utilities.deprecated("""Required. Deprecated. The Google Developers Console [project ID or project number](https://cloud.google.com/resource-manager/docs/creating-managing-projects). This field has been deprecated and replaced by the parent field.""") def project(self) -> Optional[pulumi.Input[str]]: """ Deprecated. The Google Developers Console [project ID or project number](https://cloud.google.com/resource-manager/docs/creating-managing-projects). This field has been deprecated and replaced by the parent field. """ - warnings.warn("""Required. Deprecated. The Google Developers Console [project ID or project number](https://cloud.google.com/resource-manager/docs/creating-managing-projects). This field has been deprecated and replaced by the parent field.""", DeprecationWarning) - pulumi.log.warn("""project is deprecated: Required. Deprecated. The Google Developers Console [project ID or project number](https://cloud.google.com/resource-manager/docs/creating-managing-projects). This field has been deprecated and replaced by the parent field.""") - return pulumi.get(self, "project") @project.setter @@ -951,13 +937,11 @@ def project(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="protectConfig") + @_utilities.deprecated("""Deprecated: Use SecurityPostureConfig instead. Enable/Disable Protect API features for the cluster.""") def protect_config(self) -> Optional[pulumi.Input['ProtectConfigArgs']]: """ Deprecated: Use SecurityPostureConfig instead. Enable/Disable Protect API features for the cluster. """ - warnings.warn("""Deprecated: Use SecurityPostureConfig instead. Enable/Disable Protect API features for the cluster.""", DeprecationWarning) - pulumi.log.warn("""protect_config is deprecated: Deprecated: Use SecurityPostureConfig instead. Enable/Disable Protect API features for the cluster.""") - return pulumi.get(self, "protect_config") @protect_config.setter @@ -1098,13 +1082,11 @@ def workload_identity_config(self, value: Optional[pulumi.Input['WorkloadIdentit @property @pulumi.getter + @_utilities.deprecated("""Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the parent field.""") def zone(self) -> Optional[pulumi.Input[str]]: """ Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the parent field. """ - warnings.warn("""Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the parent field.""", DeprecationWarning) - pulumi.log.warn("""zone is deprecated: Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the parent field.""") - return pulumi.get(self, "zone") @zone.setter @@ -1630,13 +1612,11 @@ def current_master_version(self) -> pulumi.Output[str]: @property @pulumi.getter(name="currentNodeCount") + @_utilities.deprecated("""[Output only] The number of nodes currently in the cluster. Deprecated. Call Kubernetes API directly to retrieve node information.""") def current_node_count(self) -> pulumi.Output[int]: """ [Output only] The number of nodes currently in the cluster. Deprecated. Call Kubernetes API directly to retrieve node information. """ - warnings.warn("""[Output only] The number of nodes currently in the cluster. Deprecated. Call Kubernetes API directly to retrieve node information.""", DeprecationWarning) - pulumi.log.warn("""current_node_count is deprecated: [Output only] The number of nodes currently in the cluster. Deprecated. Call Kubernetes API directly to retrieve node information.""") - return pulumi.get(self, "current_node_count") @property @@ -1689,13 +1669,11 @@ def enable_kubernetes_alpha(self) -> pulumi.Output[bool]: @property @pulumi.getter(name="enableTpu") + @_utilities.deprecated("""Enable the ability to use Cloud TPUs in this cluster. This field is deprecated, use tpu_config.enabled instead.""") def enable_tpu(self) -> pulumi.Output[bool]: """ Enable the ability to use Cloud TPUs in this cluster. This field is deprecated, use tpu_config.enabled instead. """ - warnings.warn("""Enable the ability to use Cloud TPUs in this cluster. This field is deprecated, use tpu_config.enabled instead.""", DeprecationWarning) - pulumi.log.warn("""enable_tpu is deprecated: Enable the ability to use Cloud TPUs in this cluster. This field is deprecated, use tpu_config.enabled instead.""") - return pulumi.get(self, "enable_tpu") @property @@ -1756,24 +1734,20 @@ def initial_cluster_version(self) -> pulumi.Output[str]: @property @pulumi.getter(name="initialNodeCount") + @_utilities.deprecated("""The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"node_config\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead.""") def initial_node_count(self) -> pulumi.Output[int]: """ The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a "node_pool" object, since this configuration (along with the "node_config") will be used to create a "NodePool" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead. """ - warnings.warn("""The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"node_config\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead.""", DeprecationWarning) - pulumi.log.warn("""initial_node_count is deprecated: The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"node_config\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead.""") - return pulumi.get(self, "initial_node_count") @property @pulumi.getter(name="instanceGroupUrls") + @_utilities.deprecated("""Deprecated. Use node_pools.instance_group_urls.""") def instance_group_urls(self) -> pulumi.Output[Sequence[str]]: """ Deprecated. Use node_pools.instance_group_urls. """ - warnings.warn("""Deprecated. Use node_pools.instance_group_urls.""", DeprecationWarning) - pulumi.log.warn("""instance_group_urls is deprecated: Deprecated. Use node_pools.instance_group_urls.""") - return pulumi.get(self, "instance_group_urls") @property @@ -1863,13 +1837,11 @@ def master_authorized_networks_config(self) -> pulumi.Output['outputs.MasterAuth @property @pulumi.getter(name="masterIpv4CidrBlock") + @_utilities.deprecated("""The IP prefix in CIDR notation to use for the hosted master network. This prefix will be used for assigning private IP addresses to the master or set of masters, as well as the ILB VIP. This field is deprecated, use private_cluster_config.master_ipv4_cidr_block instead.""") def master_ipv4_cidr_block(self) -> pulumi.Output[str]: """ The IP prefix in CIDR notation to use for the hosted master network. This prefix will be used for assigning private IP addresses to the master or set of masters, as well as the ILB VIP. This field is deprecated, use private_cluster_config.master_ipv4_cidr_block instead. """ - warnings.warn("""The IP prefix in CIDR notation to use for the hosted master network. This prefix will be used for assigning private IP addresses to the master or set of masters, as well as the ILB VIP. This field is deprecated, use private_cluster_config.master_ipv4_cidr_block instead.""", DeprecationWarning) - pulumi.log.warn("""master_ipv4_cidr_block is deprecated: The IP prefix in CIDR notation to use for the hosted master network. This prefix will be used for assigning private IP addresses to the master or set of masters, as well as the ILB VIP. This field is deprecated, use private_cluster_config.master_ipv4_cidr_block instead.""") - return pulumi.get(self, "master_ipv4_cidr_block") @property @@ -1930,13 +1902,11 @@ def network_policy(self) -> pulumi.Output['outputs.NetworkPolicyResponse']: @property @pulumi.getter(name="nodeConfig") + @_utilities.deprecated("""Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"initial_node_count\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead.""") def node_config(self) -> pulumi.Output['outputs.NodeConfigResponse']: """ Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a "node_pool" object, since this configuration (along with the "initial_node_count") will be used to create a "NodePool" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead. """ - warnings.warn("""Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"initial_node_count\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead.""", DeprecationWarning) - pulumi.log.warn("""node_config is deprecated: Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"initial_node_count\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead.""") - return pulumi.get(self, "node_config") @property @@ -1997,13 +1967,11 @@ def pod_security_policy_config(self) -> pulumi.Output['outputs.PodSecurityPolicy @property @pulumi.getter(name="privateCluster") + @_utilities.deprecated("""If this is a private cluster setup. Private clusters are clusters that, by default have no external IP addresses on the nodes and where nodes and the master communicate over private IP addresses. This field is deprecated, use private_cluster_config.enable_private_nodes instead.""") def private_cluster(self) -> pulumi.Output[bool]: """ If this is a private cluster setup. Private clusters are clusters that, by default have no external IP addresses on the nodes and where nodes and the master communicate over private IP addresses. This field is deprecated, use private_cluster_config.enable_private_nodes instead. """ - warnings.warn("""If this is a private cluster setup. Private clusters are clusters that, by default have no external IP addresses on the nodes and where nodes and the master communicate over private IP addresses. This field is deprecated, use private_cluster_config.enable_private_nodes instead.""", DeprecationWarning) - pulumi.log.warn("""private_cluster is deprecated: If this is a private cluster setup. Private clusters are clusters that, by default have no external IP addresses on the nodes and where nodes and the master communicate over private IP addresses. This field is deprecated, use private_cluster_config.enable_private_nodes instead.""") - return pulumi.get(self, "private_cluster") @property @@ -2021,13 +1989,11 @@ def project(self) -> pulumi.Output[str]: @property @pulumi.getter(name="protectConfig") + @_utilities.deprecated("""Deprecated: Use SecurityPostureConfig instead. Enable/Disable Protect API features for the cluster.""") def protect_config(self) -> pulumi.Output['outputs.ProtectConfigResponse']: """ Deprecated: Use SecurityPostureConfig instead. Enable/Disable Protect API features for the cluster. """ - warnings.warn("""Deprecated: Use SecurityPostureConfig instead. Enable/Disable Protect API features for the cluster.""", DeprecationWarning) - pulumi.log.warn("""protect_config is deprecated: Deprecated: Use SecurityPostureConfig instead. Enable/Disable Protect API features for the cluster.""") - return pulumi.get(self, "protect_config") @property @@ -2096,13 +2062,11 @@ def status(self) -> pulumi.Output[str]: @property @pulumi.getter(name="statusMessage") + @_utilities.deprecated("""[Output only] Deprecated. Use conditions instead. Additional information about the current status of this cluster, if available.""") def status_message(self) -> pulumi.Output[str]: """ [Output only] Deprecated. Use conditions instead. Additional information about the current status of this cluster, if available. """ - warnings.warn("""[Output only] Deprecated. Use conditions instead. Additional information about the current status of this cluster, if available.""", DeprecationWarning) - pulumi.log.warn("""status_message is deprecated: [Output only] Deprecated. Use conditions instead. Additional information about the current status of this cluster, if available.""") - return pulumi.get(self, "status_message") @property @@ -2163,13 +2127,11 @@ def workload_identity_config(self) -> pulumi.Output['outputs.WorkloadIdentityCon @property @pulumi.getter + @_utilities.deprecated("""[Output only] The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field is deprecated, use location instead.""") def zone(self) -> pulumi.Output[str]: """ [Output only] The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field is deprecated, use location instead. """ - warnings.warn("""[Output only] The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field is deprecated, use location instead.""", DeprecationWarning) - pulumi.log.warn("""zone is deprecated: [Output only] The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field is deprecated, use location instead.""") - return pulumi.get(self, "zone") @pulumi.output_type diff --git a/sdk/python/pulumi_google_native/container/v1beta1/get_cluster.py b/sdk/python/pulumi_google_native/container/v1beta1/get_cluster.py index ab3e554e10..cd128f4cbe 100644 --- a/sdk/python/pulumi_google_native/container/v1beta1/get_cluster.py +++ b/sdk/python/pulumi_google_native/container/v1beta1/get_cluster.py @@ -347,13 +347,11 @@ def current_master_version(self) -> str: @property @pulumi.getter(name="currentNodeCount") + @_utilities.deprecated("""[Output only] The number of nodes currently in the cluster. Deprecated. Call Kubernetes API directly to retrieve node information.""") def current_node_count(self) -> int: """ [Output only] The number of nodes currently in the cluster. Deprecated. Call Kubernetes API directly to retrieve node information. """ - warnings.warn("""[Output only] The number of nodes currently in the cluster. Deprecated. Call Kubernetes API directly to retrieve node information.""", DeprecationWarning) - pulumi.log.warn("""current_node_count is deprecated: [Output only] The number of nodes currently in the cluster. Deprecated. Call Kubernetes API directly to retrieve node information.""") - return pulumi.get(self, "current_node_count") @property @@ -406,13 +404,11 @@ def enable_kubernetes_alpha(self) -> bool: @property @pulumi.getter(name="enableTpu") + @_utilities.deprecated("""Enable the ability to use Cloud TPUs in this cluster. This field is deprecated, use tpu_config.enabled instead.""") def enable_tpu(self) -> bool: """ Enable the ability to use Cloud TPUs in this cluster. This field is deprecated, use tpu_config.enabled instead. """ - warnings.warn("""Enable the ability to use Cloud TPUs in this cluster. This field is deprecated, use tpu_config.enabled instead.""", DeprecationWarning) - pulumi.log.warn("""enable_tpu is deprecated: Enable the ability to use Cloud TPUs in this cluster. This field is deprecated, use tpu_config.enabled instead.""") - return pulumi.get(self, "enable_tpu") @property @@ -473,24 +469,20 @@ def initial_cluster_version(self) -> str: @property @pulumi.getter(name="initialNodeCount") + @_utilities.deprecated("""The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"node_config\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead.""") def initial_node_count(self) -> int: """ The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a "node_pool" object, since this configuration (along with the "node_config") will be used to create a "NodePool" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead. """ - warnings.warn("""The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"node_config\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead.""", DeprecationWarning) - pulumi.log.warn("""initial_node_count is deprecated: The number of nodes to create in this cluster. You must ensure that your Compute Engine [resource quota](https://cloud.google.com/compute/quotas) is sufficient for this number of instances. You must also have available firewall and routes quota. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"node_config\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. This field is deprecated, use node_pool.initial_node_count instead.""") - return pulumi.get(self, "initial_node_count") @property @pulumi.getter(name="instanceGroupUrls") + @_utilities.deprecated("""Deprecated. Use node_pools.instance_group_urls.""") def instance_group_urls(self) -> Sequence[str]: """ Deprecated. Use node_pools.instance_group_urls. """ - warnings.warn("""Deprecated. Use node_pools.instance_group_urls.""", DeprecationWarning) - pulumi.log.warn("""instance_group_urls is deprecated: Deprecated. Use node_pools.instance_group_urls.""") - return pulumi.get(self, "instance_group_urls") @property @@ -583,13 +575,11 @@ def master_authorized_networks_config(self) -> 'outputs.MasterAuthorizedNetworks @property @pulumi.getter(name="masterIpv4CidrBlock") + @_utilities.deprecated("""The IP prefix in CIDR notation to use for the hosted master network. This prefix will be used for assigning private IP addresses to the master or set of masters, as well as the ILB VIP. This field is deprecated, use private_cluster_config.master_ipv4_cidr_block instead.""") def master_ipv4_cidr_block(self) -> str: """ The IP prefix in CIDR notation to use for the hosted master network. This prefix will be used for assigning private IP addresses to the master or set of masters, as well as the ILB VIP. This field is deprecated, use private_cluster_config.master_ipv4_cidr_block instead. """ - warnings.warn("""The IP prefix in CIDR notation to use for the hosted master network. This prefix will be used for assigning private IP addresses to the master or set of masters, as well as the ILB VIP. This field is deprecated, use private_cluster_config.master_ipv4_cidr_block instead.""", DeprecationWarning) - pulumi.log.warn("""master_ipv4_cidr_block is deprecated: The IP prefix in CIDR notation to use for the hosted master network. This prefix will be used for assigning private IP addresses to the master or set of masters, as well as the ILB VIP. This field is deprecated, use private_cluster_config.master_ipv4_cidr_block instead.""") - return pulumi.get(self, "master_ipv4_cidr_block") @property @@ -650,13 +640,11 @@ def network_policy(self) -> 'outputs.NetworkPolicyResponse': @property @pulumi.getter(name="nodeConfig") + @_utilities.deprecated("""Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"initial_node_count\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead.""") def node_config(self) -> 'outputs.NodeConfigResponse': """ Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a "node_pool" object, since this configuration (along with the "initial_node_count") will be used to create a "NodePool" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead. """ - warnings.warn("""Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"initial_node_count\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead.""", DeprecationWarning) - pulumi.log.warn("""node_config is deprecated: Parameters used in creating the cluster's nodes. For requests, this field should only be used in lieu of a \"node_pool\" object, since this configuration (along with the \"initial_node_count\") will be used to create a \"NodePool\" object with an auto-generated name. Do not use this and a node_pool at the same time. For responses, this field will be populated with the node configuration of the first node pool. (For configuration of each node pool, see `node_pool.config`) If unspecified, the defaults are used. This field is deprecated, use node_pool.config instead.""") - return pulumi.get(self, "node_config") @property @@ -717,13 +705,11 @@ def pod_security_policy_config(self) -> 'outputs.PodSecurityPolicyConfigResponse @property @pulumi.getter(name="privateCluster") + @_utilities.deprecated("""If this is a private cluster setup. Private clusters are clusters that, by default have no external IP addresses on the nodes and where nodes and the master communicate over private IP addresses. This field is deprecated, use private_cluster_config.enable_private_nodes instead.""") def private_cluster(self) -> bool: """ If this is a private cluster setup. Private clusters are clusters that, by default have no external IP addresses on the nodes and where nodes and the master communicate over private IP addresses. This field is deprecated, use private_cluster_config.enable_private_nodes instead. """ - warnings.warn("""If this is a private cluster setup. Private clusters are clusters that, by default have no external IP addresses on the nodes and where nodes and the master communicate over private IP addresses. This field is deprecated, use private_cluster_config.enable_private_nodes instead.""", DeprecationWarning) - pulumi.log.warn("""private_cluster is deprecated: If this is a private cluster setup. Private clusters are clusters that, by default have no external IP addresses on the nodes and where nodes and the master communicate over private IP addresses. This field is deprecated, use private_cluster_config.enable_private_nodes instead.""") - return pulumi.get(self, "private_cluster") @property @@ -736,13 +722,11 @@ def private_cluster_config(self) -> 'outputs.PrivateClusterConfigResponse': @property @pulumi.getter(name="protectConfig") + @_utilities.deprecated("""Deprecated: Use SecurityPostureConfig instead. Enable/Disable Protect API features for the cluster.""") def protect_config(self) -> 'outputs.ProtectConfigResponse': """ Deprecated: Use SecurityPostureConfig instead. Enable/Disable Protect API features for the cluster. """ - warnings.warn("""Deprecated: Use SecurityPostureConfig instead. Enable/Disable Protect API features for the cluster.""", DeprecationWarning) - pulumi.log.warn("""protect_config is deprecated: Deprecated: Use SecurityPostureConfig instead. Enable/Disable Protect API features for the cluster.""") - return pulumi.get(self, "protect_config") @property @@ -811,13 +795,11 @@ def status(self) -> str: @property @pulumi.getter(name="statusMessage") + @_utilities.deprecated("""[Output only] Deprecated. Use conditions instead. Additional information about the current status of this cluster, if available.""") def status_message(self) -> str: """ [Output only] Deprecated. Use conditions instead. Additional information about the current status of this cluster, if available. """ - warnings.warn("""[Output only] Deprecated. Use conditions instead. Additional information about the current status of this cluster, if available.""", DeprecationWarning) - pulumi.log.warn("""status_message is deprecated: [Output only] Deprecated. Use conditions instead. Additional information about the current status of this cluster, if available.""") - return pulumi.get(self, "status_message") @property @@ -878,13 +860,11 @@ def workload_identity_config(self) -> 'outputs.WorkloadIdentityConfigResponse': @property @pulumi.getter + @_utilities.deprecated("""[Output only] The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field is deprecated, use location instead.""") def zone(self) -> str: """ [Output only] The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field is deprecated, use location instead. """ - warnings.warn("""[Output only] The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field is deprecated, use location instead.""", DeprecationWarning) - pulumi.log.warn("""zone is deprecated: [Output only] The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field is deprecated, use location instead.""") - return pulumi.get(self, "zone") diff --git a/sdk/python/pulumi_google_native/container/v1beta1/get_node_pool.py b/sdk/python/pulumi_google_native/container/v1beta1/get_node_pool.py index c9f24eba6d..be80a0715d 100644 --- a/sdk/python/pulumi_google_native/container/v1beta1/get_node_pool.py +++ b/sdk/python/pulumi_google_native/container/v1beta1/get_node_pool.py @@ -222,13 +222,11 @@ def status(self) -> str: @property @pulumi.getter(name="statusMessage") + @_utilities.deprecated("""[Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available.""") def status_message(self) -> str: """ [Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available. """ - warnings.warn("""[Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available.""", DeprecationWarning) - pulumi.log.warn("""status_message is deprecated: [Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available.""") - return pulumi.get(self, "status_message") @property diff --git a/sdk/python/pulumi_google_native/container/v1beta1/node_pool.py b/sdk/python/pulumi_google_native/container/v1beta1/node_pool.py index 39542896d6..3bc3e82182 100644 --- a/sdk/python/pulumi_google_native/container/v1beta1/node_pool.py +++ b/sdk/python/pulumi_google_native/container/v1beta1/node_pool.py @@ -110,13 +110,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="clusterId") + @_utilities.deprecated("""Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the parent field.""") def cluster_id(self) -> pulumi.Input[str]: """ Deprecated. The name of the cluster. This field has been deprecated and replaced by the parent field. """ - warnings.warn("""Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the parent field.""", DeprecationWarning) - pulumi.log.warn("""cluster_id is deprecated: Required. Deprecated. The name of the cluster. This field has been deprecated and replaced by the parent field.""") - return pulumi.get(self, "cluster_id") @cluster_id.setter @@ -290,13 +288,11 @@ def placement_policy(self, value: Optional[pulumi.Input['PlacementPolicyArgs']]) @property @pulumi.getter + @_utilities.deprecated("""Required. Deprecated. The Google Developers Console [project ID or project number](https://cloud.google.com/resource-manager/docs/creating-managing-projects). This field has been deprecated and replaced by the parent field.""") def project(self) -> Optional[pulumi.Input[str]]: """ Deprecated. The Google Developers Console [project ID or project number](https://cloud.google.com/resource-manager/docs/creating-managing-projects). This field has been deprecated and replaced by the parent field. """ - warnings.warn("""Required. Deprecated. The Google Developers Console [project ID or project number](https://cloud.google.com/resource-manager/docs/creating-managing-projects). This field has been deprecated and replaced by the parent field.""", DeprecationWarning) - pulumi.log.warn("""project is deprecated: Required. Deprecated. The Google Developers Console [project ID or project number](https://cloud.google.com/resource-manager/docs/creating-managing-projects). This field has been deprecated and replaced by the parent field.""") - return pulumi.get(self, "project") @project.setter @@ -341,13 +337,11 @@ def version(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the parent field.""") def zone(self) -> Optional[pulumi.Input[str]]: """ Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the parent field. """ - warnings.warn("""Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the parent field.""", DeprecationWarning) - pulumi.log.warn("""zone is deprecated: Required. Deprecated. The name of the Google Compute Engine [zone](https://cloud.google.com/compute/docs/zones#available) in which the cluster resides. This field has been deprecated and replaced by the parent field.""") - return pulumi.get(self, "zone") @zone.setter @@ -487,7 +481,7 @@ def _internal_init(__self__, __props__.__dict__["status"] = None __props__.__dict__["status_message"] = None __props__.__dict__["update_info"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cluster_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clusterId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(NodePool, __self__).__init__( 'google-native:container/v1beta1:NodePool', @@ -690,13 +684,11 @@ def status(self) -> pulumi.Output[str]: @property @pulumi.getter(name="statusMessage") + @_utilities.deprecated("""[Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available.""") def status_message(self) -> pulumi.Output[str]: """ [Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available. """ - warnings.warn("""[Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available.""", DeprecationWarning) - pulumi.log.warn("""status_message is deprecated: [Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available.""") - return pulumi.get(self, "status_message") @property diff --git a/sdk/python/pulumi_google_native/container/v1beta1/outputs.py b/sdk/python/pulumi_google_native/container/v1beta1/outputs.py index 63db40c7ec..5e3dbed171 100644 --- a/sdk/python/pulumi_google_native/container/v1beta1/outputs.py +++ b/sdk/python/pulumi_google_native/container/v1beta1/outputs.py @@ -996,13 +996,11 @@ def management(self) -> 'outputs.NodeManagementResponse': @property @pulumi.getter(name="minCpuPlatform") + @_utilities.deprecated("""Deprecated. Minimum CPU platform to be used for NAP created node pools. The instance may be scheduled on the specified or newer CPU platform. Applicable values are the friendly names of CPU platforms, such as minCpuPlatform: Intel Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how to specify min CPU platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform). This field is deprecated, min_cpu_platform should be specified using `cloud.google.com/requested-min-cpu-platform` label selector on the pod. To unset the min cpu platform field pass \"automatic\" as field value.""") def min_cpu_platform(self) -> str: """ Deprecated. Minimum CPU platform to be used for NAP created node pools. The instance may be scheduled on the specified or newer CPU platform. Applicable values are the friendly names of CPU platforms, such as minCpuPlatform: Intel Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how to specify min CPU platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform). This field is deprecated, min_cpu_platform should be specified using `cloud.google.com/requested-min-cpu-platform` label selector on the pod. To unset the min cpu platform field pass "automatic" as field value. """ - warnings.warn("""Deprecated. Minimum CPU platform to be used for NAP created node pools. The instance may be scheduled on the specified or newer CPU platform. Applicable values are the friendly names of CPU platforms, such as minCpuPlatform: Intel Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how to specify min CPU platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform). This field is deprecated, min_cpu_platform should be specified using `cloud.google.com/requested-min-cpu-platform` label selector on the pod. To unset the min cpu platform field pass \"automatic\" as field value.""", DeprecationWarning) - pulumi.log.warn("""min_cpu_platform is deprecated: Deprecated. Minimum CPU platform to be used for NAP created node pools. The instance may be scheduled on the specified or newer CPU platform. Applicable values are the friendly names of CPU platforms, such as minCpuPlatform: Intel Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how to specify min CPU platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform). This field is deprecated, min_cpu_platform should be specified using `cloud.google.com/requested-min-cpu-platform` label selector on the pod. To unset the min cpu platform field pass \"automatic\" as field value.""") - return pulumi.get(self, "min_cpu_platform") @property @@ -1200,13 +1198,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""This field is deprecated. Leave this unset and instead configure BinaryAuthorization using evaluation_mode. If evaluation_mode is set to anything other than EVALUATION_MODE_UNSPECIFIED, this field is ignored.""") def enabled(self) -> bool: """ This field is deprecated. Leave this unset and instead configure BinaryAuthorization using evaluation_mode. If evaluation_mode is set to anything other than EVALUATION_MODE_UNSPECIFIED, this field is ignored. """ - warnings.warn("""This field is deprecated. Leave this unset and instead configure BinaryAuthorization using evaluation_mode. If evaluation_mode is set to anything other than EVALUATION_MODE_UNSPECIFIED, this field is ignored.""", DeprecationWarning) - pulumi.log.warn("""enabled is deprecated: This field is deprecated. Leave this unset and instead configure BinaryAuthorization using evaluation_mode. If evaluation_mode is set to anything other than EVALUATION_MODE_UNSPECIFIED, this field is ignored.""") - return pulumi.get(self, "enabled") @property @@ -2663,13 +2659,11 @@ def allow_route_overlap(self) -> bool: @property @pulumi.getter(name="clusterIpv4Cidr") + @_utilities.deprecated("""This field is deprecated, use cluster_ipv4_cidr_block.""") def cluster_ipv4_cidr(self) -> str: """ This field is deprecated, use cluster_ipv4_cidr_block. """ - warnings.warn("""This field is deprecated, use cluster_ipv4_cidr_block.""", DeprecationWarning) - pulumi.log.warn("""cluster_ipv4_cidr is deprecated: This field is deprecated, use cluster_ipv4_cidr_block.""") - return pulumi.get(self, "cluster_ipv4_cidr") @property @@ -2714,13 +2708,11 @@ def ipv6_access_type(self) -> str: @property @pulumi.getter(name="nodeIpv4Cidr") + @_utilities.deprecated("""This field is deprecated, use node_ipv4_cidr_block.""") def node_ipv4_cidr(self) -> str: """ This field is deprecated, use node_ipv4_cidr_block. """ - warnings.warn("""This field is deprecated, use node_ipv4_cidr_block.""", DeprecationWarning) - pulumi.log.warn("""node_ipv4_cidr is deprecated: This field is deprecated, use node_ipv4_cidr_block.""") - return pulumi.get(self, "node_ipv4_cidr") @property @@ -2741,13 +2733,11 @@ def pod_cidr_overprovision_config(self) -> 'outputs.PodCIDROverprovisionConfigRe @property @pulumi.getter(name="servicesIpv4Cidr") + @_utilities.deprecated("""This field is deprecated, use services_ipv4_cidr_block.""") def services_ipv4_cidr(self) -> str: """ This field is deprecated, use services_ipv4_cidr_block. """ - warnings.warn("""This field is deprecated, use services_ipv4_cidr_block.""", DeprecationWarning) - pulumi.log.warn("""services_ipv4_cidr is deprecated: This field is deprecated, use services_ipv4_cidr_block.""") - return pulumi.get(self, "services_ipv4_cidr") @property @@ -2800,13 +2790,11 @@ def subnetwork_name(self) -> str: @property @pulumi.getter(name="tpuIpv4CidrBlock") + @_utilities.deprecated("""The IP address range of the Cloud TPUs in this cluster. If unspecified, a range will be automatically chosen with the default size. This field is only applicable when `use_ip_aliases` is true. If unspecified, the range will use the default size. Set to /netmask (e.g. `/14`) to have a range chosen with a specific netmask. Set to a [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific range to use. This field is deprecated, use cluster.tpu_config.ipv4_cidr_block instead.""") def tpu_ipv4_cidr_block(self) -> str: """ The IP address range of the Cloud TPUs in this cluster. If unspecified, a range will be automatically chosen with the default size. This field is only applicable when `use_ip_aliases` is true. If unspecified, the range will use the default size. Set to /netmask (e.g. `/14`) to have a range chosen with a specific netmask. Set to a [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific range to use. This field is deprecated, use cluster.tpu_config.ipv4_cidr_block instead. """ - warnings.warn("""The IP address range of the Cloud TPUs in this cluster. If unspecified, a range will be automatically chosen with the default size. This field is only applicable when `use_ip_aliases` is true. If unspecified, the range will use the default size. Set to /netmask (e.g. `/14`) to have a range chosen with a specific netmask. Set to a [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific range to use. This field is deprecated, use cluster.tpu_config.ipv4_cidr_block instead.""", DeprecationWarning) - pulumi.log.warn("""tpu_ipv4_cidr_block is deprecated: The IP address range of the Cloud TPUs in this cluster. If unspecified, a range will be automatically chosen with the default size. This field is only applicable when `use_ip_aliases` is true. If unspecified, the range will use the default size. Set to /netmask (e.g. `/14`) to have a range chosen with a specific netmask. Set to a [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/14`) from the RFC-1918 private networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a specific range to use. This field is deprecated, use cluster.tpu_config.ipv4_cidr_block instead.""") - return pulumi.get(self, "tpu_ipv4_cidr_block") @property @@ -5425,13 +5413,11 @@ def status(self) -> str: @property @pulumi.getter(name="statusMessage") + @_utilities.deprecated("""[Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available.""") def status_message(self) -> str: """ [Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available. """ - warnings.warn("""[Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available.""", DeprecationWarning) - pulumi.log.warn("""status_message is deprecated: [Output only] Deprecated. Use conditions instead. Additional information about the current status of this node pool instance, if available.""") - return pulumi.get(self, "status_message") @property @@ -6146,13 +6132,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="availableVersions") + @_utilities.deprecated("""Deprecated. This field has been deprecated and replaced with the valid_versions field.""") def available_versions(self) -> Sequence['outputs.AvailableVersionResponse']: """ Deprecated. This field has been deprecated and replaced with the valid_versions field. """ - warnings.warn("""Deprecated. This field has been deprecated and replaced with the valid_versions field.""", DeprecationWarning) - pulumi.log.warn("""available_versions is deprecated: Deprecated. This field has been deprecated and replaced with the valid_versions field.""") - return pulumi.get(self, "available_versions") @property @@ -6757,13 +6741,11 @@ def canonical_code(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""Machine-friendly representation of the condition Deprecated. Use canonical_code instead.""") def code(self) -> str: """ Machine-friendly representation of the condition Deprecated. Use canonical_code instead. """ - warnings.warn("""Machine-friendly representation of the condition Deprecated. Use canonical_code instead.""", DeprecationWarning) - pulumi.log.warn("""code is deprecated: Machine-friendly representation of the condition Deprecated. Use canonical_code instead.""") - return pulumi.get(self, "code") @property diff --git a/sdk/python/pulumi_google_native/containeranalysis/v1/_inputs.py b/sdk/python/pulumi_google_native/containeranalysis/v1/_inputs.py index 9bcc277118..8f2e8d8d2d 100644 --- a/sdk/python/pulumi_google_native/containeranalysis/v1/_inputs.py +++ b/sdk/python/pulumi_google_native/containeranalysis/v1/_inputs.py @@ -279,13 +279,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""") def cve(self) -> Optional[pulumi.Input[str]]: """ Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs. """ - warnings.warn("""Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""", DeprecationWarning) - pulumi.log.warn("""cve is deprecated: Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""") - return pulumi.get(self, "cve") @cve.setter @@ -685,13 +683,11 @@ def in_toto_slsa_provenance_v1(self, value: Optional[pulumi.Input['InTotoSlsaPro @property @pulumi.getter(name="intotoProvenance") + @_utilities.deprecated("""Deprecated. See InTotoStatement for the replacement. In-toto Provenance representation as defined in spec.""") def intoto_provenance(self) -> Optional[pulumi.Input['InTotoProvenanceArgs']]: """ Deprecated. See InTotoStatement for the replacement. In-toto Provenance representation as defined in spec. """ - warnings.warn("""Deprecated. See InTotoStatement for the replacement. In-toto Provenance representation as defined in spec.""", DeprecationWarning) - pulumi.log.warn("""intoto_provenance is deprecated: Deprecated. See InTotoStatement for the replacement. In-toto Provenance representation as defined in spec.""") - return pulumi.get(self, "intoto_provenance") @intoto_provenance.setter @@ -3634,13 +3630,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="cpeUri") + @_utilities.deprecated("""Deprecated. The CPE URI in [CPE format](https://cpe.mitre.org/specification/)""") def cpe_uri(self) -> Optional[pulumi.Input[str]]: """ Deprecated. The CPE URI in [CPE format](https://cpe.mitre.org/specification/) """ - warnings.warn("""Deprecated. The CPE URI in [CPE format](https://cpe.mitre.org/specification/)""", DeprecationWarning) - pulumi.log.warn("""cpe_uri is deprecated: Deprecated. The CPE URI in [CPE format](https://cpe.mitre.org/specification/)""") - return pulumi.get(self, "cpe_uri") @cpe_uri.setter @@ -3661,13 +3655,11 @@ def path(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""Deprecated. The version installed at this location.""") def version(self) -> Optional[pulumi.Input['VersionArgs']]: """ Deprecated. The version installed at this location. """ - warnings.warn("""Deprecated. The version installed at this location.""", DeprecationWarning) - pulumi.log.warn("""version is deprecated: Deprecated. The version installed at this location.""") - return pulumi.get(self, "version") @version.setter @@ -4095,13 +4087,11 @@ def digest(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DigestArgs' @property @pulumi.getter + @_utilities.deprecated("""Deprecated. The various channels by which a package is distributed.""") def distribution(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DistributionArgs']]]]: """ Deprecated. The various channels by which a package is distributed. """ - warnings.warn("""Deprecated. The various channels by which a package is distributed.""", DeprecationWarning) - pulumi.log.warn("""distribution is deprecated: Deprecated. The various channels by which a package is distributed.""") - return pulumi.get(self, "distribution") @distribution.setter @@ -6102,13 +6092,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""") def cve(self) -> Optional[pulumi.Input[str]]: """ Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs. """ - warnings.warn("""Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""", DeprecationWarning) - pulumi.log.warn("""cve is deprecated: Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""") - return pulumi.get(self, "cve") @cve.setter diff --git a/sdk/python/pulumi_google_native/containeranalysis/v1/note.py b/sdk/python/pulumi_google_native/containeranalysis/v1/note.py index a2660b7653..73fe5eb0f3 100644 --- a/sdk/python/pulumi_google_native/containeranalysis/v1/note.py +++ b/sdk/python/pulumi_google_native/containeranalysis/v1/note.py @@ -449,7 +449,7 @@ def _internal_init(__self__, __props__.__dict__["kind"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["note_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["noteId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Note, __self__).__init__( 'google-native:containeranalysis/v1:Note', diff --git a/sdk/python/pulumi_google_native/containeranalysis/v1/note_iam_policy.py b/sdk/python/pulumi_google_native/containeranalysis/v1/note_iam_policy.py index 484dfb6286..93667d8756 100644 --- a/sdk/python/pulumi_google_native/containeranalysis/v1/note_iam_policy.py +++ b/sdk/python/pulumi_google_native/containeranalysis/v1/note_iam_policy.py @@ -161,7 +161,7 @@ def _internal_init(__self__, __props__.__dict__["note_id"] = note_id __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["note_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["noteId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(NoteIamPolicy, __self__).__init__( 'google-native:containeranalysis/v1:NoteIamPolicy', diff --git a/sdk/python/pulumi_google_native/containeranalysis/v1/occurrence_iam_policy.py b/sdk/python/pulumi_google_native/containeranalysis/v1/occurrence_iam_policy.py index 786f6aef06..795e23c24d 100644 --- a/sdk/python/pulumi_google_native/containeranalysis/v1/occurrence_iam_policy.py +++ b/sdk/python/pulumi_google_native/containeranalysis/v1/occurrence_iam_policy.py @@ -161,7 +161,7 @@ def _internal_init(__self__, __props__.__dict__["occurrence_id"] = occurrence_id __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["occurrence_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["occurrenceId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OccurrenceIamPolicy, __self__).__init__( 'google-native:containeranalysis/v1:OccurrenceIamPolicy', diff --git a/sdk/python/pulumi_google_native/containeranalysis/v1/outputs.py b/sdk/python/pulumi_google_native/containeranalysis/v1/outputs.py index a93fffaef9..080ed6c01f 100644 --- a/sdk/python/pulumi_google_native/containeranalysis/v1/outputs.py +++ b/sdk/python/pulumi_google_native/containeranalysis/v1/outputs.py @@ -279,13 +279,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""") def cve(self) -> str: """ Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs. """ - warnings.warn("""Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""", DeprecationWarning) - pulumi.log.warn("""cve is deprecated: Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""") - return pulumi.get(self, "cve") @property @@ -680,13 +678,11 @@ def in_toto_slsa_provenance_v1(self) -> 'outputs.InTotoSlsaProvenanceV1Response' @property @pulumi.getter(name="intotoProvenance") + @_utilities.deprecated("""Deprecated. See InTotoStatement for the replacement. In-toto Provenance representation as defined in spec.""") def intoto_provenance(self) -> 'outputs.InTotoProvenanceResponse': """ Deprecated. See InTotoStatement for the replacement. In-toto Provenance representation as defined in spec. """ - warnings.warn("""Deprecated. See InTotoStatement for the replacement. In-toto Provenance representation as defined in spec.""", DeprecationWarning) - pulumi.log.warn("""intoto_provenance is deprecated: Deprecated. See InTotoStatement for the replacement. In-toto Provenance representation as defined in spec.""") - return pulumi.get(self, "intoto_provenance") @property @@ -3637,13 +3633,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="cpeUri") + @_utilities.deprecated("""Deprecated. The CPE URI in [CPE format](https://cpe.mitre.org/specification/)""") def cpe_uri(self) -> str: """ Deprecated. The CPE URI in [CPE format](https://cpe.mitre.org/specification/) """ - warnings.warn("""Deprecated. The CPE URI in [CPE format](https://cpe.mitre.org/specification/)""", DeprecationWarning) - pulumi.log.warn("""cpe_uri is deprecated: Deprecated. The CPE URI in [CPE format](https://cpe.mitre.org/specification/)""") - return pulumi.get(self, "cpe_uri") @property @@ -3656,13 +3650,11 @@ def path(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""Deprecated. The version installed at this location.""") def version(self) -> 'outputs.VersionResponse': """ Deprecated. The version installed at this location. """ - warnings.warn("""Deprecated. The version installed at this location.""", DeprecationWarning) - pulumi.log.warn("""version is deprecated: Deprecated. The version installed at this location.""") - return pulumi.get(self, "version") @@ -4085,13 +4077,11 @@ def digest(self) -> Sequence['outputs.DigestResponse']: @property @pulumi.getter + @_utilities.deprecated("""Deprecated. The various channels by which a package is distributed.""") def distribution(self) -> Sequence['outputs.DistributionResponse']: """ Deprecated. The various channels by which a package is distributed. """ - warnings.warn("""Deprecated. The various channels by which a package is distributed.""", DeprecationWarning) - pulumi.log.warn("""distribution is deprecated: Deprecated. The various channels by which a package is distributed.""") - return pulumi.get(self, "distribution") @property @@ -6090,13 +6080,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""") def cve(self) -> str: """ Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs. """ - warnings.warn("""Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""", DeprecationWarning) - pulumi.log.warn("""cve is deprecated: Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""") - return pulumi.get(self, "cve") @property diff --git a/sdk/python/pulumi_google_native/containeranalysis/v1alpha1/_inputs.py b/sdk/python/pulumi_google_native/containeranalysis/v1alpha1/_inputs.py index e24206d45c..920bc07b5e 100644 --- a/sdk/python/pulumi_google_native/containeranalysis/v1alpha1/_inputs.py +++ b/sdk/python/pulumi_google_native/containeranalysis/v1alpha1/_inputs.py @@ -200,13 +200,11 @@ def id(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""Name of the artifact. This may be the path to a binary or jar file, or in the case of a container build, the name used to push the container image to Google Container Registry, as presented to `docker push`. This field is deprecated in favor of the plural `names` field; it continues to exist here to allow existing BuildProvenance serialized to json in google.devtools.containeranalysis.v1alpha1.BuildDetails.provenance_bytes to deserialize back into proto.""") def name(self) -> Optional[pulumi.Input[str]]: """ Name of the artifact. This may be the path to a binary or jar file, or in the case of a container build, the name used to push the container image to Google Container Registry, as presented to `docker push`. This field is deprecated in favor of the plural `names` field; it continues to exist here to allow existing BuildProvenance serialized to json in google.devtools.containeranalysis.v1alpha1.BuildDetails.provenance_bytes to deserialize back into proto. """ - warnings.warn("""Name of the artifact. This may be the path to a binary or jar file, or in the case of a container build, the name used to push the container image to Google Container Registry, as presented to `docker push`. This field is deprecated in favor of the plural `names` field; it continues to exist here to allow existing BuildProvenance serialized to json in google.devtools.containeranalysis.v1alpha1.BuildDetails.provenance_bytes to deserialize back into proto.""", DeprecationWarning) - pulumi.log.warn("""name is deprecated: Name of the artifact. This may be the path to a binary or jar file, or in the case of a container build, the name used to push the container image to Google Container Registry, as presented to `docker push`. This field is deprecated in favor of the plural `names` field; it continues to exist here to allow existing BuildProvenance serialized to json in google.devtools.containeranalysis.v1alpha1.BuildDetails.provenance_bytes to deserialize back into proto.""") - return pulumi.get(self, "name") @name.setter @@ -635,13 +633,11 @@ def in_toto_slsa_provenance_v1(self, value: Optional[pulumi.Input['InTotoSlsaPro @property @pulumi.getter(name="intotoProvenance") + @_utilities.deprecated("""Deprecated. See InTotoStatement for the replacement. In-toto Provenance representation as defined in spec.""") def intoto_provenance(self) -> Optional[pulumi.Input['InTotoProvenanceArgs']]: """ Deprecated. See InTotoStatement for the replacement. In-toto Provenance representation as defined in spec. """ - warnings.warn("""Deprecated. See InTotoStatement for the replacement. In-toto Provenance representation as defined in spec.""", DeprecationWarning) - pulumi.log.warn("""intoto_provenance is deprecated: Deprecated. See InTotoStatement for the replacement. In-toto Provenance representation as defined in spec.""") - return pulumi.get(self, "intoto_provenance") @intoto_provenance.setter @@ -4298,13 +4294,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="cpeUri") + @_utilities.deprecated("""Deprecated. The cpe_uri in [cpe format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package.""") def cpe_uri(self) -> Optional[pulumi.Input[str]]: """ Deprecated. The cpe_uri in [cpe format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package. """ - warnings.warn("""Deprecated. The cpe_uri in [cpe format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package.""", DeprecationWarning) - pulumi.log.warn("""cpe_uri is deprecated: Deprecated. The cpe_uri in [cpe format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package.""") - return pulumi.get(self, "cpe_uri") @cpe_uri.setter @@ -4325,13 +4319,11 @@ def path(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""Deprecated. The version installed at this location.""") def version(self) -> Optional[pulumi.Input['VersionArgs']]: """ Deprecated. The version installed at this location. """ - warnings.warn("""Deprecated. The version installed at this location.""", DeprecationWarning) - pulumi.log.warn("""version is deprecated: Deprecated. The version installed at this location.""") - return pulumi.get(self, "version") @version.setter diff --git a/sdk/python/pulumi_google_native/containeranalysis/v1alpha1/note_iam_policy.py b/sdk/python/pulumi_google_native/containeranalysis/v1alpha1/note_iam_policy.py index e793598973..173ae5941f 100644 --- a/sdk/python/pulumi_google_native/containeranalysis/v1alpha1/note_iam_policy.py +++ b/sdk/python/pulumi_google_native/containeranalysis/v1alpha1/note_iam_policy.py @@ -161,7 +161,7 @@ def _internal_init(__self__, __props__.__dict__["note_id"] = note_id __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["note_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["noteId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(NoteIamPolicy, __self__).__init__( 'google-native:containeranalysis/v1alpha1:NoteIamPolicy', diff --git a/sdk/python/pulumi_google_native/containeranalysis/v1alpha1/occurrence_iam_policy.py b/sdk/python/pulumi_google_native/containeranalysis/v1alpha1/occurrence_iam_policy.py index 49ce25da77..1819320cb0 100644 --- a/sdk/python/pulumi_google_native/containeranalysis/v1alpha1/occurrence_iam_policy.py +++ b/sdk/python/pulumi_google_native/containeranalysis/v1alpha1/occurrence_iam_policy.py @@ -161,7 +161,7 @@ def _internal_init(__self__, __props__.__dict__["occurrence_id"] = occurrence_id __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["occurrence_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["occurrenceId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OccurrenceIamPolicy, __self__).__init__( 'google-native:containeranalysis/v1alpha1:OccurrenceIamPolicy', diff --git a/sdk/python/pulumi_google_native/containeranalysis/v1alpha1/outputs.py b/sdk/python/pulumi_google_native/containeranalysis/v1alpha1/outputs.py index cfcb55b2fc..aec959ecda 100644 --- a/sdk/python/pulumi_google_native/containeranalysis/v1alpha1/outputs.py +++ b/sdk/python/pulumi_google_native/containeranalysis/v1alpha1/outputs.py @@ -195,13 +195,11 @@ def checksum(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""Name of the artifact. This may be the path to a binary or jar file, or in the case of a container build, the name used to push the container image to Google Container Registry, as presented to `docker push`. This field is deprecated in favor of the plural `names` field; it continues to exist here to allow existing BuildProvenance serialized to json in google.devtools.containeranalysis.v1alpha1.BuildDetails.provenance_bytes to deserialize back into proto.""") def name(self) -> str: """ Name of the artifact. This may be the path to a binary or jar file, or in the case of a container build, the name used to push the container image to Google Container Registry, as presented to `docker push`. This field is deprecated in favor of the plural `names` field; it continues to exist here to allow existing BuildProvenance serialized to json in google.devtools.containeranalysis.v1alpha1.BuildDetails.provenance_bytes to deserialize back into proto. """ - warnings.warn("""Name of the artifact. This may be the path to a binary or jar file, or in the case of a container build, the name used to push the container image to Google Container Registry, as presented to `docker push`. This field is deprecated in favor of the plural `names` field; it continues to exist here to allow existing BuildProvenance serialized to json in google.devtools.containeranalysis.v1alpha1.BuildDetails.provenance_bytes to deserialize back into proto.""", DeprecationWarning) - pulumi.log.warn("""name is deprecated: Name of the artifact. This may be the path to a binary or jar file, or in the case of a container build, the name used to push the container image to Google Container Registry, as presented to `docker push`. This field is deprecated in favor of the plural `names` field; it continues to exist here to allow existing BuildProvenance serialized to json in google.devtools.containeranalysis.v1alpha1.BuildDetails.provenance_bytes to deserialize back into proto.""") - return pulumi.get(self, "name") @property @@ -646,13 +644,11 @@ def in_toto_slsa_provenance_v1(self) -> 'outputs.InTotoSlsaProvenanceV1Response' @property @pulumi.getter(name="intotoProvenance") + @_utilities.deprecated("""Deprecated. See InTotoStatement for the replacement. In-toto Provenance representation as defined in spec.""") def intoto_provenance(self) -> 'outputs.InTotoProvenanceResponse': """ Deprecated. See InTotoStatement for the replacement. In-toto Provenance representation as defined in spec. """ - warnings.warn("""Deprecated. See InTotoStatement for the replacement. In-toto Provenance representation as defined in spec.""", DeprecationWarning) - pulumi.log.warn("""intoto_provenance is deprecated: Deprecated. See InTotoStatement for the replacement. In-toto Provenance representation as defined in spec.""") - return pulumi.get(self, "intoto_provenance") @property @@ -2266,13 +2262,11 @@ def last_scan_time(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""Output only. An operation that indicates the status of the current scan. This field is deprecated, do not use.""") def operation(self) -> 'outputs.OperationResponse': """ An operation that indicates the status of the current scan. This field is deprecated, do not use. """ - warnings.warn("""Output only. An operation that indicates the status of the current scan. This field is deprecated, do not use.""", DeprecationWarning) - pulumi.log.warn("""operation is deprecated: Output only. An operation that indicates the status of the current scan. This field is deprecated, do not use.""") - return pulumi.get(self, "operation") @property @@ -4329,13 +4323,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="cpeUri") + @_utilities.deprecated("""Deprecated. The cpe_uri in [cpe format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package.""") def cpe_uri(self) -> str: """ Deprecated. The cpe_uri in [cpe format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package. """ - warnings.warn("""Deprecated. The cpe_uri in [cpe format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package.""", DeprecationWarning) - pulumi.log.warn("""cpe_uri is deprecated: Deprecated. The cpe_uri in [cpe format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package.""") - return pulumi.get(self, "cpe_uri") @property @@ -4348,13 +4340,11 @@ def path(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""Deprecated. The version installed at this location.""") def version(self) -> 'outputs.VersionResponse': """ Deprecated. The version installed at this location. """ - warnings.warn("""Deprecated. The version installed at this location.""", DeprecationWarning) - pulumi.log.warn("""version is deprecated: Deprecated. The version installed at this location.""") - return pulumi.get(self, "version") diff --git a/sdk/python/pulumi_google_native/containeranalysis/v1alpha1/provider_note_iam_policy.py b/sdk/python/pulumi_google_native/containeranalysis/v1alpha1/provider_note_iam_policy.py index 9405714e5c..48697dae9a 100644 --- a/sdk/python/pulumi_google_native/containeranalysis/v1alpha1/provider_note_iam_policy.py +++ b/sdk/python/pulumi_google_native/containeranalysis/v1alpha1/provider_note_iam_policy.py @@ -162,7 +162,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'provider_id'") __props__.__dict__["provider_id"] = provider_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["note_id", "provider_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["noteId", "providerId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ProviderNoteIamPolicy, __self__).__init__( 'google-native:containeranalysis/v1alpha1:ProviderNoteIamPolicy', diff --git a/sdk/python/pulumi_google_native/containeranalysis/v1beta1/_inputs.py b/sdk/python/pulumi_google_native/containeranalysis/v1beta1/_inputs.py index 1b1f6b1e1b..35e267f269 100644 --- a/sdk/python/pulumi_google_native/containeranalysis/v1beta1/_inputs.py +++ b/sdk/python/pulumi_google_native/containeranalysis/v1beta1/_inputs.py @@ -314,13 +314,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""") def cve(self) -> Optional[pulumi.Input[str]]: """ Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs. """ - warnings.warn("""Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""", DeprecationWarning) - pulumi.log.warn("""cve is deprecated: Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""") - return pulumi.get(self, "cve") @cve.setter @@ -2042,13 +2040,11 @@ def continuous_analysis(self, value: Optional[pulumi.Input['DiscoveredContinuous @property @pulumi.getter(name="lastAnalysisTime") + @_utilities.deprecated("""The last time continuous analysis was done for this resource. Deprecated, do not use.""") def last_analysis_time(self) -> Optional[pulumi.Input[str]]: """ The last time continuous analysis was done for this resource. Deprecated, do not use. """ - warnings.warn("""The last time continuous analysis was done for this resource. Deprecated, do not use.""", DeprecationWarning) - pulumi.log.warn("""last_analysis_time is deprecated: The last time continuous analysis was done for this resource. Deprecated, do not use.""") - return pulumi.get(self, "last_analysis_time") @last_analysis_time.setter @@ -3917,13 +3913,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="cpeUri") + @_utilities.deprecated("""Deprecated. The CPE URI in [CPE format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package.""") def cpe_uri(self) -> Optional[pulumi.Input[str]]: """ Deprecated. The CPE URI in [CPE format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package. """ - warnings.warn("""Deprecated. The CPE URI in [CPE format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package.""", DeprecationWarning) - pulumi.log.warn("""cpe_uri is deprecated: Deprecated. The CPE URI in [CPE format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package.""") - return pulumi.get(self, "cpe_uri") @cpe_uri.setter @@ -3944,13 +3938,11 @@ def path(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""Deprecated. The version installed at this location.""") def version(self) -> Optional[pulumi.Input['VersionArgs']]: """ Deprecated. The version installed at this location. """ - warnings.warn("""Deprecated. The version installed at this location.""", DeprecationWarning) - pulumi.log.warn("""version is deprecated: Deprecated. The version installed at this location.""") - return pulumi.get(self, "version") @version.setter @@ -4389,13 +4381,11 @@ def package_type(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="severityName") + @_utilities.deprecated("""Deprecated, use Details.effective_severity instead The severity (e.g., distro assigned severity) for this vulnerability.""") def severity_name(self) -> Optional[pulumi.Input[str]]: """ Deprecated, use Details.effective_severity instead The severity (e.g., distro assigned severity) for this vulnerability. """ - warnings.warn("""Deprecated, use Details.effective_severity instead The severity (e.g., distro assigned severity) for this vulnerability.""", DeprecationWarning) - pulumi.log.warn("""severity_name is deprecated: Deprecated, use Details.effective_severity instead The severity (e.g., distro assigned severity) for this vulnerability.""") - return pulumi.get(self, "severity_name") @severity_name.setter @@ -5177,13 +5167,11 @@ def uri(self, value: pulumi.Input[str]): @property @pulumi.getter(name="contentHash") + @_utilities.deprecated("""Deprecated, do not use. Use uri instead. The hash of the resource content. For example, the Docker digest.""") def content_hash(self) -> Optional[pulumi.Input['HashArgs']]: """ Deprecated, do not use. Use uri instead. The hash of the resource content. For example, the Docker digest. """ - warnings.warn("""Deprecated, do not use. Use uri instead. The hash of the resource content. For example, the Docker digest.""", DeprecationWarning) - pulumi.log.warn("""content_hash is deprecated: Deprecated, do not use. Use uri instead. The hash of the resource content. For example, the Docker digest.""") - return pulumi.get(self, "content_hash") @content_hash.setter @@ -5192,13 +5180,11 @@ def content_hash(self, value: Optional[pulumi.Input['HashArgs']]): @property @pulumi.getter + @_utilities.deprecated("""Deprecated, do not use. Use uri instead. The name of the resource. For example, the name of a Docker image - \"Debian\".""") def name(self) -> Optional[pulumi.Input[str]]: """ Deprecated, do not use. Use uri instead. The name of the resource. For example, the name of a Docker image - "Debian". """ - warnings.warn("""Deprecated, do not use. Use uri instead. The name of the resource. For example, the name of a Docker image - \"Debian\".""", DeprecationWarning) - pulumi.log.warn("""name is deprecated: Deprecated, do not use. Use uri instead. The name of the resource. For example, the name of a Docker image - \"Debian\".""") - return pulumi.get(self, "name") @name.setter @@ -6042,13 +6028,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""") def cve(self) -> Optional[pulumi.Input[str]]: """ Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs. """ - warnings.warn("""Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""", DeprecationWarning) - pulumi.log.warn("""cve is deprecated: Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""") - return pulumi.get(self, "cve") @cve.setter diff --git a/sdk/python/pulumi_google_native/containeranalysis/v1beta1/note.py b/sdk/python/pulumi_google_native/containeranalysis/v1beta1/note.py index 9fc30ed9ef..b7e70b7cef 100644 --- a/sdk/python/pulumi_google_native/containeranalysis/v1beta1/note.py +++ b/sdk/python/pulumi_google_native/containeranalysis/v1beta1/note.py @@ -489,7 +489,7 @@ def _internal_init(__self__, __props__.__dict__["kind"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["note_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["noteId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Note, __self__).__init__( 'google-native:containeranalysis/v1beta1:Note', diff --git a/sdk/python/pulumi_google_native/containeranalysis/v1beta1/note_iam_policy.py b/sdk/python/pulumi_google_native/containeranalysis/v1beta1/note_iam_policy.py index 85f8408d26..efc704664b 100644 --- a/sdk/python/pulumi_google_native/containeranalysis/v1beta1/note_iam_policy.py +++ b/sdk/python/pulumi_google_native/containeranalysis/v1beta1/note_iam_policy.py @@ -161,7 +161,7 @@ def _internal_init(__self__, __props__.__dict__["note_id"] = note_id __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["note_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["noteId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(NoteIamPolicy, __self__).__init__( 'google-native:containeranalysis/v1beta1:NoteIamPolicy', diff --git a/sdk/python/pulumi_google_native/containeranalysis/v1beta1/occurrence_iam_policy.py b/sdk/python/pulumi_google_native/containeranalysis/v1beta1/occurrence_iam_policy.py index 2ba396e88c..e297fc3753 100644 --- a/sdk/python/pulumi_google_native/containeranalysis/v1beta1/occurrence_iam_policy.py +++ b/sdk/python/pulumi_google_native/containeranalysis/v1beta1/occurrence_iam_policy.py @@ -161,7 +161,7 @@ def _internal_init(__self__, __props__.__dict__["occurrence_id"] = occurrence_id __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["occurrence_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["occurrenceId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OccurrenceIamPolicy, __self__).__init__( 'google-native:containeranalysis/v1beta1:OccurrenceIamPolicy', diff --git a/sdk/python/pulumi_google_native/containeranalysis/v1beta1/outputs.py b/sdk/python/pulumi_google_native/containeranalysis/v1beta1/outputs.py index 51a060221e..d048a862f5 100644 --- a/sdk/python/pulumi_google_native/containeranalysis/v1beta1/outputs.py +++ b/sdk/python/pulumi_google_native/containeranalysis/v1beta1/outputs.py @@ -327,13 +327,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""") def cve(self) -> str: """ Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs. """ - warnings.warn("""Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""", DeprecationWarning) - pulumi.log.warn("""cve is deprecated: Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""") - return pulumi.get(self, "cve") @property @@ -2027,13 +2025,11 @@ def continuous_analysis(self) -> str: @property @pulumi.getter(name="lastAnalysisTime") + @_utilities.deprecated("""The last time continuous analysis was done for this resource. Deprecated, do not use.""") def last_analysis_time(self) -> str: """ The last time continuous analysis was done for this resource. Deprecated, do not use. """ - warnings.warn("""The last time continuous analysis was done for this resource. Deprecated, do not use.""", DeprecationWarning) - pulumi.log.warn("""last_analysis_time is deprecated: The last time continuous analysis was done for this resource. Deprecated, do not use.""") - return pulumi.get(self, "last_analysis_time") @property @@ -4020,13 +4016,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="cpeUri") + @_utilities.deprecated("""Deprecated. The CPE URI in [CPE format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package.""") def cpe_uri(self) -> str: """ Deprecated. The CPE URI in [CPE format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package. """ - warnings.warn("""Deprecated. The CPE URI in [CPE format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package.""", DeprecationWarning) - pulumi.log.warn("""cpe_uri is deprecated: Deprecated. The CPE URI in [CPE format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package.""") - return pulumi.get(self, "cpe_uri") @property @@ -4039,13 +4033,11 @@ def path(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""Deprecated. The version installed at this location.""") def version(self) -> 'outputs.VersionResponse': """ Deprecated. The version installed at this location. """ - warnings.warn("""Deprecated. The version installed at this location.""", DeprecationWarning) - pulumi.log.warn("""version is deprecated: Deprecated. The version installed at this location.""") - return pulumi.get(self, "version") @@ -4499,13 +4491,11 @@ def package_type(self) -> str: @property @pulumi.getter(name="severityName") + @_utilities.deprecated("""Deprecated, use Details.effective_severity instead The severity (e.g., distro assigned severity) for this vulnerability.""") def severity_name(self) -> str: """ Deprecated, use Details.effective_severity instead The severity (e.g., distro assigned severity) for this vulnerability. """ - warnings.warn("""Deprecated, use Details.effective_severity instead The severity (e.g., distro assigned severity) for this vulnerability.""", DeprecationWarning) - pulumi.log.warn("""severity_name is deprecated: Deprecated, use Details.effective_severity instead The severity (e.g., distro assigned severity) for this vulnerability.""") - return pulumi.get(self, "severity_name") @@ -5256,24 +5246,20 @@ def __init__(__self__, *, @property @pulumi.getter(name="contentHash") + @_utilities.deprecated("""Deprecated, do not use. Use uri instead. The hash of the resource content. For example, the Docker digest.""") def content_hash(self) -> 'outputs.HashResponse': """ Deprecated, do not use. Use uri instead. The hash of the resource content. For example, the Docker digest. """ - warnings.warn("""Deprecated, do not use. Use uri instead. The hash of the resource content. For example, the Docker digest.""", DeprecationWarning) - pulumi.log.warn("""content_hash is deprecated: Deprecated, do not use. Use uri instead. The hash of the resource content. For example, the Docker digest.""") - return pulumi.get(self, "content_hash") @property @pulumi.getter + @_utilities.deprecated("""Deprecated, do not use. Use uri instead. The name of the resource. For example, the name of a Docker image - \"Debian\".""") def name(self) -> str: """ Deprecated, do not use. Use uri instead. The name of the resource. For example, the name of a Docker image - "Debian". """ - warnings.warn("""Deprecated, do not use. Use uri instead. The name of the resource. For example, the name of a Docker image - \"Debian\".""", DeprecationWarning) - pulumi.log.warn("""name is deprecated: Deprecated, do not use. Use uri instead. The name of the resource. For example, the name of a Docker image - \"Debian\".""") - return pulumi.get(self, "name") @property @@ -6121,13 +6107,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""") def cve(self) -> str: """ Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs. """ - warnings.warn("""Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""", DeprecationWarning) - pulumi.log.warn("""cve is deprecated: Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. Deprecated: Use vulnerability_id instead to denote CVEs.""") - return pulumi.get(self, "cve") @property diff --git a/sdk/python/pulumi_google_native/contentwarehouse/v1/_inputs.py b/sdk/python/pulumi_google_native/contentwarehouse/v1/_inputs.py index 05fdfcaf7d..5308cec592 100644 --- a/sdk/python/pulumi_google_native/contentwarehouse/v1/_inputs.py +++ b/sdk/python/pulumi_google_native/contentwarehouse/v1/_inputs.py @@ -1864,13 +1864,11 @@ def id(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="mentionId") + @_utilities.deprecated("""Optional. Deprecated. Use `id` field instead.""") def mention_id(self) -> Optional[pulumi.Input[str]]: """ Optional. Deprecated. Use `id` field instead. """ - warnings.warn("""Optional. Deprecated. Use `id` field instead.""", DeprecationWarning) - pulumi.log.warn("""mention_id is deprecated: Optional. Deprecated. Use `id` field instead.""") - return pulumi.get(self, "mention_id") @mention_id.setter @@ -2029,13 +2027,11 @@ def confidence(self, value: Optional[pulumi.Input[float]]): @property @pulumi.getter(name="layoutId") + @_utilities.deprecated("""Optional. Deprecated. Use PageRef.bounding_poly instead.""") def layout_id(self) -> Optional[pulumi.Input[str]]: """ Optional. Deprecated. Use PageRef.bounding_poly instead. """ - warnings.warn("""Optional. Deprecated. Use PageRef.bounding_poly instead.""", DeprecationWarning) - pulumi.log.warn("""layout_id is deprecated: Optional. Deprecated. Use PageRef.bounding_poly instead.""") - return pulumi.get(self, "layout_id") @layout_id.setter diff --git a/sdk/python/pulumi_google_native/contentwarehouse/v1/outputs.py b/sdk/python/pulumi_google_native/contentwarehouse/v1/outputs.py index 00028c4c28..d992623ff4 100644 --- a/sdk/python/pulumi_google_native/contentwarehouse/v1/outputs.py +++ b/sdk/python/pulumi_google_native/contentwarehouse/v1/outputs.py @@ -1778,13 +1778,11 @@ def confidence(self) -> float: @property @pulumi.getter(name="mentionId") + @_utilities.deprecated("""Optional. Deprecated. Use `id` field instead.""") def mention_id(self) -> str: """ Optional. Deprecated. Use `id` field instead. """ - warnings.warn("""Optional. Deprecated. Use `id` field instead.""", DeprecationWarning) - pulumi.log.warn("""mention_id is deprecated: Optional. Deprecated. Use `id` field instead.""") - return pulumi.get(self, "mention_id") @property @@ -1916,13 +1914,11 @@ def confidence(self) -> float: @property @pulumi.getter(name="layoutId") + @_utilities.deprecated("""Optional. Deprecated. Use PageRef.bounding_poly instead.""") def layout_id(self) -> str: """ Optional. Deprecated. Use PageRef.bounding_poly instead. """ - warnings.warn("""Optional. Deprecated. Use PageRef.bounding_poly instead.""", DeprecationWarning) - pulumi.log.warn("""layout_id is deprecated: Optional. Deprecated. Use PageRef.bounding_poly instead.""") - return pulumi.get(self, "layout_id") @property diff --git a/sdk/python/pulumi_google_native/datacatalog/v1/entry.py b/sdk/python/pulumi_google_native/datacatalog/v1/entry.py index 6db9c34b1e..f7d574ca39 100644 --- a/sdk/python/pulumi_google_native/datacatalog/v1/entry.py +++ b/sdk/python/pulumi_google_native/datacatalog/v1/entry.py @@ -602,7 +602,7 @@ def _internal_init(__self__, __props__.__dict__["integrated_system"] = None __props__.__dict__["name"] = None __props__.__dict__["personal_details"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entry_group_id", "entry_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entryGroupId", "entryId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Entry, __self__).__init__( 'google-native:datacatalog/v1:Entry', diff --git a/sdk/python/pulumi_google_native/datacatalog/v1/entry_group.py b/sdk/python/pulumi_google_native/datacatalog/v1/entry_group.py index 8a7e3f33d8..5e9e7c5e5a 100644 --- a/sdk/python/pulumi_google_native/datacatalog/v1/entry_group.py +++ b/sdk/python/pulumi_google_native/datacatalog/v1/entry_group.py @@ -177,7 +177,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = name __props__.__dict__["project"] = project __props__.__dict__["data_catalog_timestamps"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entry_group_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entryGroupId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EntryGroup, __self__).__init__( 'google-native:datacatalog/v1:EntryGroup', diff --git a/sdk/python/pulumi_google_native/datacatalog/v1/entry_group_iam_policy.py b/sdk/python/pulumi_google_native/datacatalog/v1/entry_group_iam_policy.py index 01c4b08355..76ad9c47e0 100644 --- a/sdk/python/pulumi_google_native/datacatalog/v1/entry_group_iam_policy.py +++ b/sdk/python/pulumi_google_native/datacatalog/v1/entry_group_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entry_group_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entryGroupId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EntryGroupIamPolicy, __self__).__init__( 'google-native:datacatalog/v1:EntryGroupIamPolicy', diff --git a/sdk/python/pulumi_google_native/datacatalog/v1/policy_tag.py b/sdk/python/pulumi_google_native/datacatalog/v1/policy_tag.py index 18b2282d21..eb576cc91c 100644 --- a/sdk/python/pulumi_google_native/datacatalog/v1/policy_tag.py +++ b/sdk/python/pulumi_google_native/datacatalog/v1/policy_tag.py @@ -175,7 +175,7 @@ def _internal_init(__self__, __props__.__dict__["taxonomy_id"] = taxonomy_id __props__.__dict__["child_policy_tags"] = None __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "taxonomy_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "taxonomyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(PolicyTag, __self__).__init__( 'google-native:datacatalog/v1:PolicyTag', diff --git a/sdk/python/pulumi_google_native/datacatalog/v1/tag_template.py b/sdk/python/pulumi_google_native/datacatalog/v1/tag_template.py index 1b78907238..fc05272c57 100644 --- a/sdk/python/pulumi_google_native/datacatalog/v1/tag_template.py +++ b/sdk/python/pulumi_google_native/datacatalog/v1/tag_template.py @@ -196,7 +196,7 @@ def _internal_init(__self__, if tag_template_id is None and not opts.urn: raise TypeError("Missing required property 'tag_template_id'") __props__.__dict__["tag_template_id"] = tag_template_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tag_template_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tagTemplateId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TagTemplate, __self__).__init__( 'google-native:datacatalog/v1:TagTemplate', diff --git a/sdk/python/pulumi_google_native/datacatalog/v1/tag_template_iam_policy.py b/sdk/python/pulumi_google_native/datacatalog/v1/tag_template_iam_policy.py index 33dfc2bb08..404a340887 100644 --- a/sdk/python/pulumi_google_native/datacatalog/v1/tag_template_iam_policy.py +++ b/sdk/python/pulumi_google_native/datacatalog/v1/tag_template_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'tag_template_id'") __props__.__dict__["tag_template_id"] = tag_template_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tag_template_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tagTemplateId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TagTemplateIamPolicy, __self__).__init__( 'google-native:datacatalog/v1:TagTemplateIamPolicy', diff --git a/sdk/python/pulumi_google_native/datacatalog/v1/taxonomy_iam_policy.py b/sdk/python/pulumi_google_native/datacatalog/v1/taxonomy_iam_policy.py index 3df14cfe75..4b8d1b3d8d 100644 --- a/sdk/python/pulumi_google_native/datacatalog/v1/taxonomy_iam_policy.py +++ b/sdk/python/pulumi_google_native/datacatalog/v1/taxonomy_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'taxonomy_id'") __props__.__dict__["taxonomy_id"] = taxonomy_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "taxonomy_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "taxonomyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TaxonomyIamPolicy, __self__).__init__( 'google-native:datacatalog/v1:TaxonomyIamPolicy', diff --git a/sdk/python/pulumi_google_native/datacatalog/v1/taxonomy_policy_tag_iam_policy.py b/sdk/python/pulumi_google_native/datacatalog/v1/taxonomy_policy_tag_iam_policy.py index be4c9e01cf..d604991ec8 100644 --- a/sdk/python/pulumi_google_native/datacatalog/v1/taxonomy_policy_tag_iam_policy.py +++ b/sdk/python/pulumi_google_native/datacatalog/v1/taxonomy_policy_tag_iam_policy.py @@ -192,7 +192,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'taxonomy_id'") __props__.__dict__["taxonomy_id"] = taxonomy_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "policy_tag_id", "project", "taxonomy_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "policyTagId", "project", "taxonomyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TaxonomyPolicyTagIamPolicy, __self__).__init__( 'google-native:datacatalog/v1:TaxonomyPolicyTagIamPolicy', diff --git a/sdk/python/pulumi_google_native/datacatalog/v1beta1/entry.py b/sdk/python/pulumi_google_native/datacatalog/v1beta1/entry.py index 8935354aba..c6dd00d679 100644 --- a/sdk/python/pulumi_google_native/datacatalog/v1beta1/entry.py +++ b/sdk/python/pulumi_google_native/datacatalog/v1beta1/entry.py @@ -340,7 +340,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["source_system_timestamps"] = None __props__.__dict__["usage_signal"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entry_group_id", "entry_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entryGroupId", "entryId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Entry, __self__).__init__( 'google-native:datacatalog/v1beta1:Entry', diff --git a/sdk/python/pulumi_google_native/datacatalog/v1beta1/entry_group.py b/sdk/python/pulumi_google_native/datacatalog/v1beta1/entry_group.py index 667066305d..6705399aa9 100644 --- a/sdk/python/pulumi_google_native/datacatalog/v1beta1/entry_group.py +++ b/sdk/python/pulumi_google_native/datacatalog/v1beta1/entry_group.py @@ -177,7 +177,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = name __props__.__dict__["project"] = project __props__.__dict__["data_catalog_timestamps"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entry_group_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entryGroupId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EntryGroup, __self__).__init__( 'google-native:datacatalog/v1beta1:EntryGroup', diff --git a/sdk/python/pulumi_google_native/datacatalog/v1beta1/entry_group_iam_policy.py b/sdk/python/pulumi_google_native/datacatalog/v1beta1/entry_group_iam_policy.py index d53a472b0d..4699d205c4 100644 --- a/sdk/python/pulumi_google_native/datacatalog/v1beta1/entry_group_iam_policy.py +++ b/sdk/python/pulumi_google_native/datacatalog/v1beta1/entry_group_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entry_group_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entryGroupId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EntryGroupIamPolicy, __self__).__init__( 'google-native:datacatalog/v1beta1:EntryGroupIamPolicy', diff --git a/sdk/python/pulumi_google_native/datacatalog/v1beta1/policy_tag.py b/sdk/python/pulumi_google_native/datacatalog/v1beta1/policy_tag.py index 7e585e2572..00f4f10539 100644 --- a/sdk/python/pulumi_google_native/datacatalog/v1beta1/policy_tag.py +++ b/sdk/python/pulumi_google_native/datacatalog/v1beta1/policy_tag.py @@ -175,7 +175,7 @@ def _internal_init(__self__, __props__.__dict__["taxonomy_id"] = taxonomy_id __props__.__dict__["child_policy_tags"] = None __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "taxonomy_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "taxonomyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(PolicyTag, __self__).__init__( 'google-native:datacatalog/v1beta1:PolicyTag', diff --git a/sdk/python/pulumi_google_native/datacatalog/v1beta1/tag_template.py b/sdk/python/pulumi_google_native/datacatalog/v1beta1/tag_template.py index 148da525ad..a77f3ed49f 100644 --- a/sdk/python/pulumi_google_native/datacatalog/v1beta1/tag_template.py +++ b/sdk/python/pulumi_google_native/datacatalog/v1beta1/tag_template.py @@ -176,7 +176,7 @@ def _internal_init(__self__, if tag_template_id is None and not opts.urn: raise TypeError("Missing required property 'tag_template_id'") __props__.__dict__["tag_template_id"] = tag_template_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tag_template_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tagTemplateId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TagTemplate, __self__).__init__( 'google-native:datacatalog/v1beta1:TagTemplate', diff --git a/sdk/python/pulumi_google_native/datacatalog/v1beta1/tag_template_iam_policy.py b/sdk/python/pulumi_google_native/datacatalog/v1beta1/tag_template_iam_policy.py index 3a91a7338d..b39a2eef98 100644 --- a/sdk/python/pulumi_google_native/datacatalog/v1beta1/tag_template_iam_policy.py +++ b/sdk/python/pulumi_google_native/datacatalog/v1beta1/tag_template_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'tag_template_id'") __props__.__dict__["tag_template_id"] = tag_template_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tag_template_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tagTemplateId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TagTemplateIamPolicy, __self__).__init__( 'google-native:datacatalog/v1beta1:TagTemplateIamPolicy', diff --git a/sdk/python/pulumi_google_native/datacatalog/v1beta1/taxonomy_iam_policy.py b/sdk/python/pulumi_google_native/datacatalog/v1beta1/taxonomy_iam_policy.py index 52bf5e381e..1d86d85ace 100644 --- a/sdk/python/pulumi_google_native/datacatalog/v1beta1/taxonomy_iam_policy.py +++ b/sdk/python/pulumi_google_native/datacatalog/v1beta1/taxonomy_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'taxonomy_id'") __props__.__dict__["taxonomy_id"] = taxonomy_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "taxonomy_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "taxonomyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TaxonomyIamPolicy, __self__).__init__( 'google-native:datacatalog/v1beta1:TaxonomyIamPolicy', diff --git a/sdk/python/pulumi_google_native/datacatalog/v1beta1/taxonomy_policy_tag_iam_policy.py b/sdk/python/pulumi_google_native/datacatalog/v1beta1/taxonomy_policy_tag_iam_policy.py index c47dd5cfc3..5ae5189268 100644 --- a/sdk/python/pulumi_google_native/datacatalog/v1beta1/taxonomy_policy_tag_iam_policy.py +++ b/sdk/python/pulumi_google_native/datacatalog/v1beta1/taxonomy_policy_tag_iam_policy.py @@ -192,7 +192,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'taxonomy_id'") __props__.__dict__["taxonomy_id"] = taxonomy_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "policy_tag_id", "project", "taxonomy_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "policyTagId", "project", "taxonomyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TaxonomyPolicyTagIamPolicy, __self__).__init__( 'google-native:datacatalog/v1beta1:TaxonomyPolicyTagIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataflow/v1b3/_inputs.py b/sdk/python/pulumi_google_native/dataflow/v1b3/_inputs.py index e59b687daf..99a93d2e8f 100644 --- a/sdk/python/pulumi_google_native/dataflow/v1b3/_inputs.py +++ b/sdk/python/pulumi_google_native/dataflow/v1b3/_inputs.py @@ -2636,13 +2636,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="workerHarnessContainerImage") + @_utilities.deprecated("""Required. Docker container image that executes the Cloud Dataflow worker harness, residing in Google Container Registry. Deprecated for the Fn API path. Use sdk_harness_container_images instead.""") def worker_harness_container_image(self) -> pulumi.Input[str]: """ Docker container image that executes the Cloud Dataflow worker harness, residing in Google Container Registry. Deprecated for the Fn API path. Use sdk_harness_container_images instead. """ - warnings.warn("""Required. Docker container image that executes the Cloud Dataflow worker harness, residing in Google Container Registry. Deprecated for the Fn API path. Use sdk_harness_container_images instead.""", DeprecationWarning) - pulumi.log.warn("""worker_harness_container_image is deprecated: Required. Docker container image that executes the Cloud Dataflow worker harness, residing in Google Container Registry. Deprecated for the Fn API path. Use sdk_harness_container_images instead.""") - return pulumi.get(self, "worker_harness_container_image") @worker_harness_container_image.setter diff --git a/sdk/python/pulumi_google_native/dataflow/v1b3/get_job.py b/sdk/python/pulumi_google_native/dataflow/v1b3/get_job.py index 3ef8ae381b..51f1f41809 100644 --- a/sdk/python/pulumi_google_native/dataflow/v1b3/get_job.py +++ b/sdk/python/pulumi_google_native/dataflow/v1b3/get_job.py @@ -149,13 +149,11 @@ def environment(self) -> 'outputs.EnvironmentResponse': @property @pulumi.getter(name="executionInfo") + @_utilities.deprecated("""Deprecated.""") def execution_info(self) -> 'outputs.JobExecutionInfoResponse': """ Deprecated. """ - warnings.warn("""Deprecated.""", DeprecationWarning) - pulumi.log.warn("""execution_info is deprecated: Deprecated.""") - return pulumi.get(self, "execution_info") @property diff --git a/sdk/python/pulumi_google_native/dataflow/v1b3/job.py b/sdk/python/pulumi_google_native/dataflow/v1b3/job.py index 7dfefc9163..89dbc85d9a 100644 --- a/sdk/python/pulumi_google_native/dataflow/v1b3/job.py +++ b/sdk/python/pulumi_google_native/dataflow/v1b3/job.py @@ -206,13 +206,11 @@ def environment(self, value: Optional[pulumi.Input['EnvironmentArgs']]): @property @pulumi.getter(name="executionInfo") + @_utilities.deprecated("""Deprecated.""") def execution_info(self) -> Optional[pulumi.Input['JobExecutionInfoArgs']]: """ Deprecated. """ - warnings.warn("""Deprecated.""", DeprecationWarning) - pulumi.log.warn("""execution_info is deprecated: Deprecated.""") - return pulumi.get(self, "execution_info") @execution_info.setter @@ -721,13 +719,11 @@ def environment(self) -> pulumi.Output['outputs.EnvironmentResponse']: @property @pulumi.getter(name="executionInfo") + @_utilities.deprecated("""Deprecated.""") def execution_info(self) -> pulumi.Output['outputs.JobExecutionInfoResponse']: """ Deprecated. """ - warnings.warn("""Deprecated.""", DeprecationWarning) - pulumi.log.warn("""execution_info is deprecated: Deprecated.""") - return pulumi.get(self, "execution_info") @property diff --git a/sdk/python/pulumi_google_native/dataflow/v1b3/outputs.py b/sdk/python/pulumi_google_native/dataflow/v1b3/outputs.py index 931e330b40..be9112847c 100644 --- a/sdk/python/pulumi_google_native/dataflow/v1b3/outputs.py +++ b/sdk/python/pulumi_google_native/dataflow/v1b3/outputs.py @@ -2933,13 +2933,11 @@ def teardown_policy(self) -> str: @property @pulumi.getter(name="workerHarnessContainerImage") + @_utilities.deprecated("""Required. Docker container image that executes the Cloud Dataflow worker harness, residing in Google Container Registry. Deprecated for the Fn API path. Use sdk_harness_container_images instead.""") def worker_harness_container_image(self) -> str: """ Docker container image that executes the Cloud Dataflow worker harness, residing in Google Container Registry. Deprecated for the Fn API path. Use sdk_harness_container_images instead. """ - warnings.warn("""Required. Docker container image that executes the Cloud Dataflow worker harness, residing in Google Container Registry. Deprecated for the Fn API path. Use sdk_harness_container_images instead.""", DeprecationWarning) - pulumi.log.warn("""worker_harness_container_image is deprecated: Required. Docker container image that executes the Cloud Dataflow worker harness, residing in Google Container Registry. Deprecated for the Fn API path. Use sdk_harness_container_images instead.""") - return pulumi.get(self, "worker_harness_container_image") @property diff --git a/sdk/python/pulumi_google_native/dataform/v1beta1/collection_iam_policy.py b/sdk/python/pulumi_google_native/dataform/v1beta1/collection_iam_policy.py index aee41b0a7d..ef752d3051 100644 --- a/sdk/python/pulumi_google_native/dataform/v1beta1/collection_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataform/v1beta1/collection_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["collection_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["collectionId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CollectionIamPolicy, __self__).__init__( 'google-native:dataform/v1beta1:CollectionIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataform/v1beta1/compilation_result.py b/sdk/python/pulumi_google_native/dataform/v1beta1/compilation_result.py index 226c2a1184..4d9e407a23 100644 --- a/sdk/python/pulumi_google_native/dataform/v1beta1/compilation_result.py +++ b/sdk/python/pulumi_google_native/dataform/v1beta1/compilation_result.py @@ -202,7 +202,7 @@ def _internal_init(__self__, __props__.__dict__["dataform_core_version"] = None __props__.__dict__["name"] = None __props__.__dict__["resolved_git_commit_sha"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repository_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repositoryId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CompilationResult, __self__).__init__( 'google-native:dataform/v1beta1:CompilationResult', diff --git a/sdk/python/pulumi_google_native/dataform/v1beta1/outputs.py b/sdk/python/pulumi_google_native/dataform/v1beta1/outputs.py index cb0d784c8f..63729b031c 100644 --- a/sdk/python/pulumi_google_native/dataform/v1beta1/outputs.py +++ b/sdk/python/pulumi_google_native/dataform/v1beta1/outputs.py @@ -399,13 +399,11 @@ def ssh_authentication_config(self) -> 'outputs.SshAuthenticationConfigResponse' @property @pulumi.getter(name="tokenStatus") + @_utilities.deprecated("""Output only. Deprecated: The field does not contain any token status information. Instead use https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories/computeAccessTokenStatus""") def token_status(self) -> str: """ Deprecated: The field does not contain any token status information. Instead use https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories/computeAccessTokenStatus """ - warnings.warn("""Output only. Deprecated: The field does not contain any token status information. Instead use https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories/computeAccessTokenStatus""", DeprecationWarning) - pulumi.log.warn("""token_status is deprecated: Output only. Deprecated: The field does not contain any token status information. Instead use https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories/computeAccessTokenStatus""") - return pulumi.get(self, "token_status") @property diff --git a/sdk/python/pulumi_google_native/dataform/v1beta1/release_config.py b/sdk/python/pulumi_google_native/dataform/v1beta1/release_config.py index e57d9eb304..7ad38ab2bf 100644 --- a/sdk/python/pulumi_google_native/dataform/v1beta1/release_config.py +++ b/sdk/python/pulumi_google_native/dataform/v1beta1/release_config.py @@ -238,7 +238,7 @@ def _internal_init(__self__, __props__.__dict__["time_zone"] = time_zone __props__.__dict__["name"] = None __props__.__dict__["recent_scheduled_release_records"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "release_config_id", "repository_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "releaseConfigId", "repositoryId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ReleaseConfig, __self__).__init__( 'google-native:dataform/v1beta1:ReleaseConfig', diff --git a/sdk/python/pulumi_google_native/dataform/v1beta1/repository.py b/sdk/python/pulumi_google_native/dataform/v1beta1/repository.py index 0dc3ff0b2b..e63fd4be88 100644 --- a/sdk/python/pulumi_google_native/dataform/v1beta1/repository.py +++ b/sdk/python/pulumi_google_native/dataform/v1beta1/repository.py @@ -260,7 +260,7 @@ def _internal_init(__self__, __props__.__dict__["set_authenticated_user_admin"] = set_authenticated_user_admin __props__.__dict__["workspace_compilation_overrides"] = workspace_compilation_overrides __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repository_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repositoryId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Repository, __self__).__init__( 'google-native:dataform/v1beta1:Repository', diff --git a/sdk/python/pulumi_google_native/dataform/v1beta1/repository_iam_policy.py b/sdk/python/pulumi_google_native/dataform/v1beta1/repository_iam_policy.py index d17a982092..56fed73a97 100644 --- a/sdk/python/pulumi_google_native/dataform/v1beta1/repository_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataform/v1beta1/repository_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'repository_id'") __props__.__dict__["repository_id"] = repository_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repository_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repositoryId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RepositoryIamPolicy, __self__).__init__( 'google-native:dataform/v1beta1:RepositoryIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataform/v1beta1/repository_workspace_iam_policy.py b/sdk/python/pulumi_google_native/dataform/v1beta1/repository_workspace_iam_policy.py index 23f9504383..c8c20fe1f7 100644 --- a/sdk/python/pulumi_google_native/dataform/v1beta1/repository_workspace_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataform/v1beta1/repository_workspace_iam_policy.py @@ -192,7 +192,7 @@ def _internal_init(__self__, if workspace_id is None and not opts.urn: raise TypeError("Missing required property 'workspace_id'") __props__.__dict__["workspace_id"] = workspace_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repository_id", "workspace_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repositoryId", "workspaceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RepositoryWorkspaceIamPolicy, __self__).__init__( 'google-native:dataform/v1beta1:RepositoryWorkspaceIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataform/v1beta1/workflow_config.py b/sdk/python/pulumi_google_native/dataform/v1beta1/workflow_config.py index 04e2fea9f6..0b723d3975 100644 --- a/sdk/python/pulumi_google_native/dataform/v1beta1/workflow_config.py +++ b/sdk/python/pulumi_google_native/dataform/v1beta1/workflow_config.py @@ -218,7 +218,7 @@ def _internal_init(__self__, __props__.__dict__["workflow_config_id"] = workflow_config_id __props__.__dict__["name"] = None __props__.__dict__["recent_scheduled_execution_records"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repository_id", "workflow_config_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repositoryId", "workflowConfigId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(WorkflowConfig, __self__).__init__( 'google-native:dataform/v1beta1:WorkflowConfig', diff --git a/sdk/python/pulumi_google_native/dataform/v1beta1/workflow_invocation.py b/sdk/python/pulumi_google_native/dataform/v1beta1/workflow_invocation.py index 8482f32f57..ef7721cd43 100644 --- a/sdk/python/pulumi_google_native/dataform/v1beta1/workflow_invocation.py +++ b/sdk/python/pulumi_google_native/dataform/v1beta1/workflow_invocation.py @@ -178,7 +178,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["resolved_compilation_result"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repository_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repositoryId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(WorkflowInvocation, __self__).__init__( 'google-native:dataform/v1beta1:WorkflowInvocation', diff --git a/sdk/python/pulumi_google_native/dataform/v1beta1/workspace.py b/sdk/python/pulumi_google_native/dataform/v1beta1/workspace.py index 8f15d16dda..63c455c4ab 100644 --- a/sdk/python/pulumi_google_native/dataform/v1beta1/workspace.py +++ b/sdk/python/pulumi_google_native/dataform/v1beta1/workspace.py @@ -134,7 +134,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'workspace_id'") __props__.__dict__["workspace_id"] = workspace_id __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repository_id", "workspace_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "repositoryId", "workspaceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Workspace, __self__).__init__( 'google-native:dataform/v1beta1:Workspace', diff --git a/sdk/python/pulumi_google_native/datafusion/v1/get_instance.py b/sdk/python/pulumi_google_native/datafusion/v1/get_instance.py index 5344d8f004..1c5c2e1e8b 100644 --- a/sdk/python/pulumi_google_native/datafusion/v1/get_instance.py +++ b/sdk/python/pulumi_google_native/datafusion/v1/get_instance.py @@ -317,13 +317,11 @@ def satisfies_pzs(self) -> bool: @property @pulumi.getter(name="serviceAccount") + @_utilities.deprecated("""Output only. Deprecated. Use tenant_project_id instead to extract the tenant project ID.""") def service_account(self) -> str: """ Deprecated. Use tenant_project_id instead to extract the tenant project ID. """ - warnings.warn("""Output only. Deprecated. Use tenant_project_id instead to extract the tenant project ID.""", DeprecationWarning) - pulumi.log.warn("""service_account is deprecated: Output only. Deprecated. Use tenant_project_id instead to extract the tenant project ID.""") - return pulumi.get(self, "service_account") @property diff --git a/sdk/python/pulumi_google_native/datafusion/v1/instance.py b/sdk/python/pulumi_google_native/datafusion/v1/instance.py index ee1be8912b..6088fe6a81 100644 --- a/sdk/python/pulumi_google_native/datafusion/v1/instance.py +++ b/sdk/python/pulumi_google_native/datafusion/v1/instance.py @@ -497,7 +497,7 @@ def _internal_init(__self__, __props__.__dict__["tenant_project_id"] = None __props__.__dict__["update_time"] = None __props__.__dict__["workforce_identity_service_endpoint"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Instance, __self__).__init__( 'google-native:datafusion/v1:Instance', @@ -772,13 +772,11 @@ def satisfies_pzs(self) -> pulumi.Output[bool]: @property @pulumi.getter(name="serviceAccount") + @_utilities.deprecated("""Output only. Deprecated. Use tenant_project_id instead to extract the tenant project ID.""") def service_account(self) -> pulumi.Output[str]: """ Deprecated. Use tenant_project_id instead to extract the tenant project ID. """ - warnings.warn("""Output only. Deprecated. Use tenant_project_id instead to extract the tenant project ID.""", DeprecationWarning) - pulumi.log.warn("""service_account is deprecated: Output only. Deprecated. Use tenant_project_id instead to extract the tenant project ID.""") - return pulumi.get(self, "service_account") @property diff --git a/sdk/python/pulumi_google_native/datafusion/v1/instance_iam_policy.py b/sdk/python/pulumi_google_native/datafusion/v1/instance_iam_policy.py index c0b5903966..ae5f2a93b5 100644 --- a/sdk/python/pulumi_google_native/datafusion/v1/instance_iam_policy.py +++ b/sdk/python/pulumi_google_native/datafusion/v1/instance_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(InstanceIamPolicy, __self__).__init__( 'google-native:datafusion/v1:InstanceIamPolicy', diff --git a/sdk/python/pulumi_google_native/datafusion/v1beta1/get_instance.py b/sdk/python/pulumi_google_native/datafusion/v1beta1/get_instance.py index 696f83f1f3..ebf577bb7a 100644 --- a/sdk/python/pulumi_google_native/datafusion/v1beta1/get_instance.py +++ b/sdk/python/pulumi_google_native/datafusion/v1beta1/get_instance.py @@ -317,13 +317,11 @@ def satisfies_pzs(self) -> bool: @property @pulumi.getter(name="serviceAccount") + @_utilities.deprecated("""Output only. Deprecated. Use tenant_project_id instead to extract the tenant project ID.""") def service_account(self) -> str: """ Deprecated. Use tenant_project_id instead to extract the tenant project ID. """ - warnings.warn("""Output only. Deprecated. Use tenant_project_id instead to extract the tenant project ID.""", DeprecationWarning) - pulumi.log.warn("""service_account is deprecated: Output only. Deprecated. Use tenant_project_id instead to extract the tenant project ID.""") - return pulumi.get(self, "service_account") @property diff --git a/sdk/python/pulumi_google_native/datafusion/v1beta1/instance.py b/sdk/python/pulumi_google_native/datafusion/v1beta1/instance.py index 421e3ba1ee..e07b068806 100644 --- a/sdk/python/pulumi_google_native/datafusion/v1beta1/instance.py +++ b/sdk/python/pulumi_google_native/datafusion/v1beta1/instance.py @@ -497,7 +497,7 @@ def _internal_init(__self__, __props__.__dict__["tenant_project_id"] = None __props__.__dict__["update_time"] = None __props__.__dict__["workforce_identity_service_endpoint"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Instance, __self__).__init__( 'google-native:datafusion/v1beta1:Instance', @@ -772,13 +772,11 @@ def satisfies_pzs(self) -> pulumi.Output[bool]: @property @pulumi.getter(name="serviceAccount") + @_utilities.deprecated("""Output only. Deprecated. Use tenant_project_id instead to extract the tenant project ID.""") def service_account(self) -> pulumi.Output[str]: """ Deprecated. Use tenant_project_id instead to extract the tenant project ID. """ - warnings.warn("""Output only. Deprecated. Use tenant_project_id instead to extract the tenant project ID.""", DeprecationWarning) - pulumi.log.warn("""service_account is deprecated: Output only. Deprecated. Use tenant_project_id instead to extract the tenant project ID.""") - return pulumi.get(self, "service_account") @property diff --git a/sdk/python/pulumi_google_native/datafusion/v1beta1/instance_iam_policy.py b/sdk/python/pulumi_google_native/datafusion/v1beta1/instance_iam_policy.py index d6988fd229..c1bb9ad9f3 100644 --- a/sdk/python/pulumi_google_native/datafusion/v1beta1/instance_iam_policy.py +++ b/sdk/python/pulumi_google_native/datafusion/v1beta1/instance_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(InstanceIamPolicy, __self__).__init__( 'google-native:datafusion/v1beta1:InstanceIamPolicy', diff --git a/sdk/python/pulumi_google_native/datafusion/v1beta1/instance_namespace_iam_policy.py b/sdk/python/pulumi_google_native/datafusion/v1beta1/instance_namespace_iam_policy.py index 11149884b6..1e26ecd7bf 100644 --- a/sdk/python/pulumi_google_native/datafusion/v1beta1/instance_namespace_iam_policy.py +++ b/sdk/python/pulumi_google_native/datafusion/v1beta1/instance_namespace_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "location", "namespace_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "location", "namespaceId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(InstanceNamespaceIamPolicy, __self__).__init__( 'google-native:datafusion/v1beta1:InstanceNamespaceIamPolicy', diff --git a/sdk/python/pulumi_google_native/datalabeling/v1beta1/feedback_message.py b/sdk/python/pulumi_google_native/datalabeling/v1beta1/feedback_message.py index cdc1d82edf..a088619922 100644 --- a/sdk/python/pulumi_google_native/datalabeling/v1beta1/feedback_message.py +++ b/sdk/python/pulumi_google_native/datalabeling/v1beta1/feedback_message.py @@ -239,7 +239,7 @@ def _internal_init(__self__, __props__.__dict__["operator_feedback_metadata"] = operator_feedback_metadata __props__.__dict__["project"] = project __props__.__dict__["requester_feedback_metadata"] = requester_feedback_metadata - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["annotated_dataset_id", "dataset_id", "feedback_thread_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["annotatedDatasetId", "datasetId", "feedbackThreadId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FeedbackMessage, __self__).__init__( 'google-native:datalabeling/v1beta1:FeedbackMessage', diff --git a/sdk/python/pulumi_google_native/datalabeling/v1beta1/get_instruction.py b/sdk/python/pulumi_google_native/datalabeling/v1beta1/get_instruction.py index 6e34c9311c..4056af61d7 100644 --- a/sdk/python/pulumi_google_native/datalabeling/v1beta1/get_instruction.py +++ b/sdk/python/pulumi_google_native/datalabeling/v1beta1/get_instruction.py @@ -66,13 +66,11 @@ def create_time(self) -> str: @property @pulumi.getter(name="csvInstruction") + @_utilities.deprecated("""Deprecated: this instruction format is not supported any more. Instruction from a CSV file, such as for classification task. The CSV file should have exact two columns, in the following format: * The first column is labeled data, such as an image reference, text. * The second column is comma separated labels associated with data.""") def csv_instruction(self) -> 'outputs.GoogleCloudDatalabelingV1beta1CsvInstructionResponse': """ Deprecated: this instruction format is not supported any more. Instruction from a CSV file, such as for classification task. The CSV file should have exact two columns, in the following format: * The first column is labeled data, such as an image reference, text. * The second column is comma separated labels associated with data. """ - warnings.warn("""Deprecated: this instruction format is not supported any more. Instruction from a CSV file, such as for classification task. The CSV file should have exact two columns, in the following format: * The first column is labeled data, such as an image reference, text. * The second column is comma separated labels associated with data.""", DeprecationWarning) - pulumi.log.warn("""csv_instruction is deprecated: Deprecated: this instruction format is not supported any more. Instruction from a CSV file, such as for classification task. The CSV file should have exact two columns, in the following format: * The first column is labeled data, such as an image reference, text. * The second column is comma separated labels associated with data.""") - return pulumi.get(self, "csv_instruction") @property diff --git a/sdk/python/pulumi_google_native/datalabeling/v1beta1/instruction.py b/sdk/python/pulumi_google_native/datalabeling/v1beta1/instruction.py index 7a7b683808..498b49b102 100644 --- a/sdk/python/pulumi_google_native/datalabeling/v1beta1/instruction.py +++ b/sdk/python/pulumi_google_native/datalabeling/v1beta1/instruction.py @@ -71,13 +71,11 @@ def display_name(self, value: pulumi.Input[str]): @property @pulumi.getter(name="csvInstruction") + @_utilities.deprecated("""Deprecated: this instruction format is not supported any more. Instruction from a CSV file, such as for classification task. The CSV file should have exact two columns, in the following format: * The first column is labeled data, such as an image reference, text. * The second column is comma separated labels associated with data.""") def csv_instruction(self) -> Optional[pulumi.Input['GoogleCloudDatalabelingV1beta1CsvInstructionArgs']]: """ Deprecated: this instruction format is not supported any more. Instruction from a CSV file, such as for classification task. The CSV file should have exact two columns, in the following format: * The first column is labeled data, such as an image reference, text. * The second column is comma separated labels associated with data. """ - warnings.warn("""Deprecated: this instruction format is not supported any more. Instruction from a CSV file, such as for classification task. The CSV file should have exact two columns, in the following format: * The first column is labeled data, such as an image reference, text. * The second column is comma separated labels associated with data.""", DeprecationWarning) - pulumi.log.warn("""csv_instruction is deprecated: Deprecated: this instruction format is not supported any more. Instruction from a CSV file, such as for classification task. The CSV file should have exact two columns, in the following format: * The first column is labeled data, such as an image reference, text. * The second column is comma separated labels associated with data.""") - return pulumi.get(self, "csv_instruction") @csv_instruction.setter @@ -250,13 +248,11 @@ def create_time(self) -> pulumi.Output[str]: @property @pulumi.getter(name="csvInstruction") + @_utilities.deprecated("""Deprecated: this instruction format is not supported any more. Instruction from a CSV file, such as for classification task. The CSV file should have exact two columns, in the following format: * The first column is labeled data, such as an image reference, text. * The second column is comma separated labels associated with data.""") def csv_instruction(self) -> pulumi.Output['outputs.GoogleCloudDatalabelingV1beta1CsvInstructionResponse']: """ Deprecated: this instruction format is not supported any more. Instruction from a CSV file, such as for classification task. The CSV file should have exact two columns, in the following format: * The first column is labeled data, such as an image reference, text. * The second column is comma separated labels associated with data. """ - warnings.warn("""Deprecated: this instruction format is not supported any more. Instruction from a CSV file, such as for classification task. The CSV file should have exact two columns, in the following format: * The first column is labeled data, such as an image reference, text. * The second column is comma separated labels associated with data.""", DeprecationWarning) - pulumi.log.warn("""csv_instruction is deprecated: Deprecated: this instruction format is not supported any more. Instruction from a CSV file, such as for classification task. The CSV file should have exact two columns, in the following format: * The first column is labeled data, such as an image reference, text. * The second column is comma separated labels associated with data.""") - return pulumi.get(self, "csv_instruction") @property diff --git a/sdk/python/pulumi_google_native/datalineage/v1/lineage_event.py b/sdk/python/pulumi_google_native/datalineage/v1/lineage_event.py index a7b0273708..05de8c8a1e 100644 --- a/sdk/python/pulumi_google_native/datalineage/v1/lineage_event.py +++ b/sdk/python/pulumi_google_native/datalineage/v1/lineage_event.py @@ -229,7 +229,7 @@ def _internal_init(__self__, if start_time is None and not opts.urn: raise TypeError("Missing required property 'start_time'") __props__.__dict__["start_time"] = start_time - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "process_id", "project", "run_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "processId", "project", "runId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(LineageEvent, __self__).__init__( 'google-native:datalineage/v1:LineageEvent', diff --git a/sdk/python/pulumi_google_native/datalineage/v1/run.py b/sdk/python/pulumi_google_native/datalineage/v1/run.py index 0d6b5ceb34..9736c2ec8e 100644 --- a/sdk/python/pulumi_google_native/datalineage/v1/run.py +++ b/sdk/python/pulumi_google_native/datalineage/v1/run.py @@ -253,7 +253,7 @@ def _internal_init(__self__, if state is None and not opts.urn: raise TypeError("Missing required property 'state'") __props__.__dict__["state"] = state - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "process_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "processId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Run, __self__).__init__( 'google-native:datalineage/v1:Run', diff --git a/sdk/python/pulumi_google_native/datamigration/v1/connection_profile.py b/sdk/python/pulumi_google_native/datamigration/v1/connection_profile.py index d1280daee2..9547172db8 100644 --- a/sdk/python/pulumi_google_native/datamigration/v1/connection_profile.py +++ b/sdk/python/pulumi_google_native/datamigration/v1/connection_profile.py @@ -361,7 +361,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["error"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connection_profile_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connectionProfileId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ConnectionProfile, __self__).__init__( 'google-native:datamigration/v1:ConnectionProfile', diff --git a/sdk/python/pulumi_google_native/datamigration/v1/connection_profile_iam_policy.py b/sdk/python/pulumi_google_native/datamigration/v1/connection_profile_iam_policy.py index 44607c54bb..0726e93178 100644 --- a/sdk/python/pulumi_google_native/datamigration/v1/connection_profile_iam_policy.py +++ b/sdk/python/pulumi_google_native/datamigration/v1/connection_profile_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connection_profile_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connectionProfileId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ConnectionProfileIamPolicy, __self__).__init__( 'google-native:datamigration/v1:ConnectionProfileIamPolicy', diff --git a/sdk/python/pulumi_google_native/datamigration/v1/conversion_workspace.py b/sdk/python/pulumi_google_native/datamigration/v1/conversion_workspace.py index adf8270f4b..bc23617c2e 100644 --- a/sdk/python/pulumi_google_native/datamigration/v1/conversion_workspace.py +++ b/sdk/python/pulumi_google_native/datamigration/v1/conversion_workspace.py @@ -245,7 +245,7 @@ def _internal_init(__self__, __props__.__dict__["latest_commit_id"] = None __props__.__dict__["latest_commit_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["conversion_workspace_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["conversionWorkspaceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ConversionWorkspace, __self__).__init__( 'google-native:datamigration/v1:ConversionWorkspace', diff --git a/sdk/python/pulumi_google_native/datamigration/v1/conversion_workspace_iam_policy.py b/sdk/python/pulumi_google_native/datamigration/v1/conversion_workspace_iam_policy.py index b5cc1df8a7..e33bd2a410 100644 --- a/sdk/python/pulumi_google_native/datamigration/v1/conversion_workspace_iam_policy.py +++ b/sdk/python/pulumi_google_native/datamigration/v1/conversion_workspace_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["conversion_workspace_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["conversionWorkspaceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ConversionWorkspaceIamPolicy, __self__).__init__( 'google-native:datamigration/v1:ConversionWorkspaceIamPolicy', diff --git a/sdk/python/pulumi_google_native/datamigration/v1/mapping_rule.py b/sdk/python/pulumi_google_native/datamigration/v1/mapping_rule.py index 1279cb607e..4a55e3429b 100644 --- a/sdk/python/pulumi_google_native/datamigration/v1/mapping_rule.py +++ b/sdk/python/pulumi_google_native/datamigration/v1/mapping_rule.py @@ -499,7 +499,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = state __props__.__dict__["revision_create_time"] = None __props__.__dict__["revision_id"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["conversion_workspace_id", "location", "mapping_rule_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["conversionWorkspaceId", "location", "mappingRuleId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MappingRule, __self__).__init__( 'google-native:datamigration/v1:MappingRule', diff --git a/sdk/python/pulumi_google_native/datamigration/v1/migration_job.py b/sdk/python/pulumi_google_native/datamigration/v1/migration_job.py index 3407d619bf..cf82ca5435 100644 --- a/sdk/python/pulumi_google_native/datamigration/v1/migration_job.py +++ b/sdk/python/pulumi_google_native/datamigration/v1/migration_job.py @@ -507,7 +507,7 @@ def _internal_init(__self__, __props__.__dict__["error"] = None __props__.__dict__["phase"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "migration_job_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "migrationJobId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MigrationJob, __self__).__init__( 'google-native:datamigration/v1:MigrationJob', diff --git a/sdk/python/pulumi_google_native/datamigration/v1/migration_job_iam_policy.py b/sdk/python/pulumi_google_native/datamigration/v1/migration_job_iam_policy.py index 02b3d92ac1..21ef84902b 100644 --- a/sdk/python/pulumi_google_native/datamigration/v1/migration_job_iam_policy.py +++ b/sdk/python/pulumi_google_native/datamigration/v1/migration_job_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "migration_job_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "migrationJobId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MigrationJobIamPolicy, __self__).__init__( 'google-native:datamigration/v1:MigrationJobIamPolicy', diff --git a/sdk/python/pulumi_google_native/datamigration/v1/private_connection.py b/sdk/python/pulumi_google_native/datamigration/v1/private_connection.py index e567a39396..5aee92147d 100644 --- a/sdk/python/pulumi_google_native/datamigration/v1/private_connection.py +++ b/sdk/python/pulumi_google_native/datamigration/v1/private_connection.py @@ -241,7 +241,7 @@ def _internal_init(__self__, __props__.__dict__["error"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "private_connection_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "privateConnectionId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(PrivateConnection, __self__).__init__( 'google-native:datamigration/v1:PrivateConnection', diff --git a/sdk/python/pulumi_google_native/datamigration/v1/private_connection_iam_policy.py b/sdk/python/pulumi_google_native/datamigration/v1/private_connection_iam_policy.py index 3a01f5f7eb..d5d503a067 100644 --- a/sdk/python/pulumi_google_native/datamigration/v1/private_connection_iam_policy.py +++ b/sdk/python/pulumi_google_native/datamigration/v1/private_connection_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "private_connection_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "privateConnectionId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(PrivateConnectionIamPolicy, __self__).__init__( 'google-native:datamigration/v1:PrivateConnectionIamPolicy', diff --git a/sdk/python/pulumi_google_native/datamigration/v1beta1/connection_profile.py b/sdk/python/pulumi_google_native/datamigration/v1beta1/connection_profile.py index de36c9e273..3118c79391 100644 --- a/sdk/python/pulumi_google_native/datamigration/v1beta1/connection_profile.py +++ b/sdk/python/pulumi_google_native/datamigration/v1beta1/connection_profile.py @@ -281,7 +281,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["error"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connection_profile_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connectionProfileId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ConnectionProfile, __self__).__init__( 'google-native:datamigration/v1beta1:ConnectionProfile', diff --git a/sdk/python/pulumi_google_native/datamigration/v1beta1/connection_profile_iam_policy.py b/sdk/python/pulumi_google_native/datamigration/v1beta1/connection_profile_iam_policy.py index 5538220daa..ef262754c7 100644 --- a/sdk/python/pulumi_google_native/datamigration/v1beta1/connection_profile_iam_policy.py +++ b/sdk/python/pulumi_google_native/datamigration/v1beta1/connection_profile_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connection_profile_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connectionProfileId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ConnectionProfileIamPolicy, __self__).__init__( 'google-native:datamigration/v1beta1:ConnectionProfileIamPolicy', diff --git a/sdk/python/pulumi_google_native/datamigration/v1beta1/migration_job.py b/sdk/python/pulumi_google_native/datamigration/v1beta1/migration_job.py index f81698da37..19e014f75c 100644 --- a/sdk/python/pulumi_google_native/datamigration/v1beta1/migration_job.py +++ b/sdk/python/pulumi_google_native/datamigration/v1beta1/migration_job.py @@ -407,7 +407,7 @@ def _internal_init(__self__, __props__.__dict__["error"] = None __props__.__dict__["phase"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "migration_job_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "migrationJobId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MigrationJob, __self__).__init__( 'google-native:datamigration/v1beta1:MigrationJob', diff --git a/sdk/python/pulumi_google_native/datamigration/v1beta1/migration_job_iam_policy.py b/sdk/python/pulumi_google_native/datamigration/v1beta1/migration_job_iam_policy.py index ed0693dc5b..8ecb11dc7a 100644 --- a/sdk/python/pulumi_google_native/datamigration/v1beta1/migration_job_iam_policy.py +++ b/sdk/python/pulumi_google_native/datamigration/v1beta1/migration_job_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "migration_job_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "migrationJobId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MigrationJobIamPolicy, __self__).__init__( 'google-native:datamigration/v1beta1:MigrationJobIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/aspect_type_iam_policy.py b/sdk/python/pulumi_google_native/dataplex/v1/aspect_type_iam_policy.py index 66aa64423c..a0f6a328ef 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/aspect_type_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/aspect_type_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["aspect_type_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["aspectTypeId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AspectTypeIamPolicy, __self__).__init__( 'google-native:dataplex/v1:AspectTypeIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/asset.py b/sdk/python/pulumi_google_native/dataplex/v1/asset.py index 016c4ae168..a1b44bb2b0 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/asset.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/asset.py @@ -260,7 +260,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["asset_id", "lake_id", "location", "project", "zone"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["assetId", "lakeId", "location", "project", "zone"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Asset, __self__).__init__( 'google-native:dataplex/v1:Asset', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/attribute.py b/sdk/python/pulumi_google_native/dataplex/v1/attribute.py index 693e844302..902188dd58 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/attribute.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/attribute.py @@ -280,7 +280,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["data_attribute_id", "data_taxonomy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataAttributeId", "dataTaxonomyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Attribute, __self__).__init__( 'google-native:dataplex/v1:Attribute', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/content.py b/sdk/python/pulumi_google_native/dataplex/v1/content.py index 543824e522..366d3225f0 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/content.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/content.py @@ -241,7 +241,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["lake_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["lakeId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Content, __self__).__init__( 'google-native:dataplex/v1:Content', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/contentitem.py b/sdk/python/pulumi_google_native/dataplex/v1/contentitem.py index bfd23d7ef7..233944a722 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/contentitem.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/contentitem.py @@ -241,7 +241,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["lake_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["lakeId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Contentitem, __self__).__init__( 'google-native:dataplex/v1:Contentitem', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/data_attribute_binding.py b/sdk/python/pulumi_google_native/dataplex/v1/data_attribute_binding.py index 6398c3abee..e937fec73b 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/data_attribute_binding.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/data_attribute_binding.py @@ -263,7 +263,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["data_attribute_binding_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataAttributeBindingId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DataAttributeBinding, __self__).__init__( 'google-native:dataplex/v1:DataAttributeBinding', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/data_attribute_binding_iam_policy.py b/sdk/python/pulumi_google_native/dataplex/v1/data_attribute_binding_iam_policy.py index 065e4f0aec..d8262044f5 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/data_attribute_binding_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/data_attribute_binding_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["data_attribute_binding_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataAttributeBindingId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DataAttributeBindingIamPolicy, __self__).__init__( 'google-native:dataplex/v1:DataAttributeBindingIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/data_scan.py b/sdk/python/pulumi_google_native/dataplex/v1/data_scan.py index 8cfe6b8d5e..6af6b19714 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/data_scan.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/data_scan.py @@ -270,7 +270,7 @@ def _internal_init(__self__, __props__.__dict__["type"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["data_scan_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataScanId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DataScan, __self__).__init__( 'google-native:dataplex/v1:DataScan', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/data_scan_iam_policy.py b/sdk/python/pulumi_google_native/dataplex/v1/data_scan_iam_policy.py index 12c5553a24..56d8ec4807 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/data_scan_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/data_scan_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["data_scan_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataScanId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DataScanIamPolicy, __self__).__init__( 'google-native:dataplex/v1:DataScanIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/data_taxonomy.py b/sdk/python/pulumi_google_native/dataplex/v1/data_taxonomy.py index 01d28da14b..6387cf0cbf 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/data_taxonomy.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/data_taxonomy.py @@ -203,7 +203,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["data_taxonomy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataTaxonomyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DataTaxonomy, __self__).__init__( 'google-native:dataplex/v1:DataTaxonomy', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/data_taxonomy_attribute_iam_policy.py b/sdk/python/pulumi_google_native/dataplex/v1/data_taxonomy_attribute_iam_policy.py index 10db651a83..c280038e05 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/data_taxonomy_attribute_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/data_taxonomy_attribute_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["attribute_id", "data_taxonomy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["attributeId", "dataTaxonomyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DataTaxonomyAttributeIamPolicy, __self__).__init__( 'google-native:dataplex/v1:DataTaxonomyAttributeIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/data_taxonomy_iam_policy.py b/sdk/python/pulumi_google_native/dataplex/v1/data_taxonomy_iam_policy.py index 5d08f011d5..e459d54525 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/data_taxonomy_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/data_taxonomy_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["data_taxonomy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataTaxonomyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DataTaxonomyIamPolicy, __self__).__init__( 'google-native:dataplex/v1:DataTaxonomyIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/entity.py b/sdk/python/pulumi_google_native/dataplex/v1/entity.py index b538702923..1763a2c7f2 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/entity.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/entity.py @@ -364,7 +364,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["lake_id", "location", "project", "zone"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["lakeId", "location", "project", "zone"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Entity, __self__).__init__( 'google-native:dataplex/v1:Entity', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/entry_group_iam_policy.py b/sdk/python/pulumi_google_native/dataplex/v1/entry_group_iam_policy.py index 7b63f646e7..87fe148dd0 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/entry_group_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/entry_group_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entry_group_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entryGroupId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EntryGroupIamPolicy, __self__).__init__( 'google-native:dataplex/v1:EntryGroupIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/entry_type_iam_policy.py b/sdk/python/pulumi_google_native/dataplex/v1/entry_type_iam_policy.py index f2cd24b3f6..e7db28b80b 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/entry_type_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/entry_type_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entry_type_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entryTypeId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EntryTypeIamPolicy, __self__).__init__( 'google-native:dataplex/v1:EntryTypeIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/environment.py b/sdk/python/pulumi_google_native/dataplex/v1/environment.py index e2ec0e8ced..5262e2cd0a 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/environment.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/environment.py @@ -243,7 +243,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environment_id", "lake_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environmentId", "lakeId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Environment, __self__).__init__( 'google-native:dataplex/v1:Environment', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/governance_rule_iam_policy.py b/sdk/python/pulumi_google_native/dataplex/v1/governance_rule_iam_policy.py index 8005eb5dbe..47100c5947 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/governance_rule_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/governance_rule_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["governance_rule_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["governanceRuleId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(GovernanceRuleIamPolicy, __self__).__init__( 'google-native:dataplex/v1:GovernanceRuleIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/lake.py b/sdk/python/pulumi_google_native/dataplex/v1/lake.py index d7206896b5..c34ba21369 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/lake.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/lake.py @@ -207,7 +207,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["lake_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["lakeId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Lake, __self__).__init__( 'google-native:dataplex/v1:Lake', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/lake_asset_iam_policy.py b/sdk/python/pulumi_google_native/dataplex/v1/lake_asset_iam_policy.py index cc901403db..f817c7db6d 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/lake_asset_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/lake_asset_iam_policy.py @@ -248,7 +248,7 @@ def _internal_init(__self__, __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version __props__.__dict__["zone"] = zone - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["asset_id", "lake_id", "location", "project", "zone"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["assetId", "lakeId", "location", "project", "zone"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(LakeAssetIamPolicy, __self__).__init__( 'google-native:dataplex/v1:LakeAssetIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/lake_content_iam_policy.py b/sdk/python/pulumi_google_native/dataplex/v1/lake_content_iam_policy.py index 61c9f9363a..a980097774 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/lake_content_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/lake_content_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["content_id", "lake_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["contentId", "lakeId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(LakeContentIamPolicy, __self__).__init__( 'google-native:dataplex/v1:LakeContentIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/lake_contentitem_iam_policy.py b/sdk/python/pulumi_google_native/dataplex/v1/lake_contentitem_iam_policy.py index 9fa12a8f6a..b64719b774 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/lake_contentitem_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/lake_contentitem_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["contentitem_id", "lake_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["contentitemId", "lakeId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(LakeContentitemIamPolicy, __self__).__init__( 'google-native:dataplex/v1:LakeContentitemIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/lake_environment_iam_policy.py b/sdk/python/pulumi_google_native/dataplex/v1/lake_environment_iam_policy.py index e33eb9e11a..0164f77ad5 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/lake_environment_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/lake_environment_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environment_id", "lake_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environmentId", "lakeId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(LakeEnvironmentIamPolicy, __self__).__init__( 'google-native:dataplex/v1:LakeEnvironmentIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/lake_iam_policy.py b/sdk/python/pulumi_google_native/dataplex/v1/lake_iam_policy.py index bcf94ee75f..cbcebe21b5 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/lake_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/lake_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["lake_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["lakeId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(LakeIamPolicy, __self__).__init__( 'google-native:dataplex/v1:LakeIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/lake_task_iam_policy.py b/sdk/python/pulumi_google_native/dataplex/v1/lake_task_iam_policy.py index 0805d4fb11..0c10e8fba7 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/lake_task_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/lake_task_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["task_id"] = task_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["lake_id", "location", "project", "task_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["lakeId", "location", "project", "taskId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(LakeTaskIamPolicy, __self__).__init__( 'google-native:dataplex/v1:LakeTaskIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/lake_zone_iam_policy.py b/sdk/python/pulumi_google_native/dataplex/v1/lake_zone_iam_policy.py index 9b5079c830..22d295ea42 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/lake_zone_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/lake_zone_iam_policy.py @@ -232,7 +232,7 @@ def _internal_init(__self__, __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version __props__.__dict__["zone"] = zone - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["lake_id", "location", "project", "zone"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["lakeId", "location", "project", "zone"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(LakeZoneIamPolicy, __self__).__init__( 'google-native:dataplex/v1:LakeZoneIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/partition.py b/sdk/python/pulumi_google_native/dataplex/v1/partition.py index 57a1d91d5a..8a3c830c30 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/partition.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/partition.py @@ -190,7 +190,7 @@ def _internal_init(__self__, __props__.__dict__["values"] = values __props__.__dict__["zone"] = zone __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entity_id", "lake_id", "location", "project", "zone"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["entityId", "lakeId", "location", "project", "zone"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Partition, __self__).__init__( 'google-native:dataplex/v1:Partition', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/task.py b/sdk/python/pulumi_google_native/dataplex/v1/task.py index 9a4a988c06..7147aad04b 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/task.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/task.py @@ -284,7 +284,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["lake_id", "location", "project", "task_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["lakeId", "location", "project", "taskId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Task, __self__).__init__( 'google-native:dataplex/v1:Task', diff --git a/sdk/python/pulumi_google_native/dataplex/v1/zone.py b/sdk/python/pulumi_google_native/dataplex/v1/zone.py index 07ef8eee76..82981a0c7e 100644 --- a/sdk/python/pulumi_google_native/dataplex/v1/zone.py +++ b/sdk/python/pulumi_google_native/dataplex/v1/zone.py @@ -264,7 +264,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["lake_id", "location", "project", "zone_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["lakeId", "location", "project", "zoneId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Zone, __self__).__init__( 'google-native:dataplex/v1:Zone', diff --git a/sdk/python/pulumi_google_native/dataproc/v1/_inputs.py b/sdk/python/pulumi_google_native/dataproc/v1/_inputs.py index 5f0b04bf0e..b0ce263dae 100644 --- a/sdk/python/pulumi_google_native/dataproc/v1/_inputs.py +++ b/sdk/python/pulumi_google_native/dataproc/v1/_inputs.py @@ -1593,13 +1593,11 @@ def gke_cluster_target(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="namespacedGkeDeploymentTarget") + @_utilities.deprecated("""Optional. Deprecated. Use gkeClusterTarget. Used only for the deprecated beta. A target for the deployment.""") def namespaced_gke_deployment_target(self) -> Optional[pulumi.Input['NamespacedGkeDeploymentTargetArgs']]: """ Optional. Deprecated. Use gkeClusterTarget. Used only for the deprecated beta. A target for the deployment. """ - warnings.warn("""Optional. Deprecated. Use gkeClusterTarget. Used only for the deprecated beta. A target for the deployment.""", DeprecationWarning) - pulumi.log.warn("""namespaced_gke_deployment_target is deprecated: Optional. Deprecated. Use gkeClusterTarget. Used only for the deprecated beta. A target for the deployment.""") - return pulumi.get(self, "namespaced_gke_deployment_target") @namespaced_gke_deployment_target.setter diff --git a/sdk/python/pulumi_google_native/dataproc/v1/autoscaling_policy_iam_policy.py b/sdk/python/pulumi_google_native/dataproc/v1/autoscaling_policy_iam_policy.py index c9a266ec12..00343550d0 100644 --- a/sdk/python/pulumi_google_native/dataproc/v1/autoscaling_policy_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataproc/v1/autoscaling_policy_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["autoscaling_policy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["autoscalingPolicyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AutoscalingPolicyIamPolicy, __self__).__init__( 'google-native:dataproc/v1:AutoscalingPolicyIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataproc/v1/node_group.py b/sdk/python/pulumi_google_native/dataproc/v1/node_group.py index 6586691e0b..913bdb3f97 100644 --- a/sdk/python/pulumi_google_native/dataproc/v1/node_group.py +++ b/sdk/python/pulumi_google_native/dataproc/v1/node_group.py @@ -261,7 +261,7 @@ def _internal_init(__self__, if roles is None and not opts.urn: raise TypeError("Missing required property 'roles'") __props__.__dict__["roles"] = roles - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cluster_id", "project", "region_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clusterId", "project", "regionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(NodeGroup, __self__).__init__( 'google-native:dataproc/v1:NodeGroup', diff --git a/sdk/python/pulumi_google_native/dataproc/v1/outputs.py b/sdk/python/pulumi_google_native/dataproc/v1/outputs.py index 92e243764a..9902826e9f 100644 --- a/sdk/python/pulumi_google_native/dataproc/v1/outputs.py +++ b/sdk/python/pulumi_google_native/dataproc/v1/outputs.py @@ -1804,13 +1804,11 @@ def gke_cluster_target(self) -> str: @property @pulumi.getter(name="namespacedGkeDeploymentTarget") + @_utilities.deprecated("""Optional. Deprecated. Use gkeClusterTarget. Used only for the deprecated beta. A target for the deployment.""") def namespaced_gke_deployment_target(self) -> 'outputs.NamespacedGkeDeploymentTargetResponse': """ Optional. Deprecated. Use gkeClusterTarget. Used only for the deprecated beta. A target for the deployment. """ - warnings.warn("""Optional. Deprecated. Use gkeClusterTarget. Used only for the deprecated beta. A target for the deployment.""", DeprecationWarning) - pulumi.log.warn("""namespaced_gke_deployment_target is deprecated: Optional. Deprecated. Use gkeClusterTarget. Used only for the deprecated beta. A target for the deployment.""") - return pulumi.get(self, "namespaced_gke_deployment_target") @property diff --git a/sdk/python/pulumi_google_native/dataproc/v1/region_autoscaling_policy_iam_policy.py b/sdk/python/pulumi_google_native/dataproc/v1/region_autoscaling_policy_iam_policy.py index a420bc4d36..b916dbdceb 100644 --- a/sdk/python/pulumi_google_native/dataproc/v1/region_autoscaling_policy_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataproc/v1/region_autoscaling_policy_iam_policy.py @@ -177,7 +177,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'region_id'") __props__.__dict__["region_id"] = region_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["autoscaling_policy_id", "project", "region_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["autoscalingPolicyId", "project", "regionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RegionAutoscalingPolicyIamPolicy, __self__).__init__( 'google-native:dataproc/v1:RegionAutoscalingPolicyIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataproc/v1/region_cluster_iam_policy.py b/sdk/python/pulumi_google_native/dataproc/v1/region_cluster_iam_policy.py index 423f47b939..66f79dc39d 100644 --- a/sdk/python/pulumi_google_native/dataproc/v1/region_cluster_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataproc/v1/region_cluster_iam_policy.py @@ -177,7 +177,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'region_id'") __props__.__dict__["region_id"] = region_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cluster_id", "project", "region_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clusterId", "project", "regionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RegionClusterIamPolicy, __self__).__init__( 'google-native:dataproc/v1:RegionClusterIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataproc/v1/region_job_iam_policy.py b/sdk/python/pulumi_google_native/dataproc/v1/region_job_iam_policy.py index 5bdfae03a9..dee51ad837 100644 --- a/sdk/python/pulumi_google_native/dataproc/v1/region_job_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataproc/v1/region_job_iam_policy.py @@ -177,7 +177,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'region_id'") __props__.__dict__["region_id"] = region_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["job_id", "project", "region_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["jobId", "project", "regionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RegionJobIamPolicy, __self__).__init__( 'google-native:dataproc/v1:RegionJobIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataproc/v1/region_operation_iam_policy.py b/sdk/python/pulumi_google_native/dataproc/v1/region_operation_iam_policy.py index 94df5ff5f3..755897efd0 100644 --- a/sdk/python/pulumi_google_native/dataproc/v1/region_operation_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataproc/v1/region_operation_iam_policy.py @@ -177,7 +177,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'region_id'") __props__.__dict__["region_id"] = region_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["operation_id", "project", "region_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["operationId", "project", "regionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RegionOperationIamPolicy, __self__).__init__( 'google-native:dataproc/v1:RegionOperationIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataproc/v1/region_workflow_template_iam_policy.py b/sdk/python/pulumi_google_native/dataproc/v1/region_workflow_template_iam_policy.py index c4d093acca..8df15749ed 100644 --- a/sdk/python/pulumi_google_native/dataproc/v1/region_workflow_template_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataproc/v1/region_workflow_template_iam_policy.py @@ -177,7 +177,7 @@ def _internal_init(__self__, if workflow_template_id is None and not opts.urn: raise TypeError("Missing required property 'workflow_template_id'") __props__.__dict__["workflow_template_id"] = workflow_template_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "region_id", "workflow_template_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "regionId", "workflowTemplateId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RegionWorkflowTemplateIamPolicy, __self__).__init__( 'google-native:dataproc/v1:RegionWorkflowTemplateIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataproc/v1/session.py b/sdk/python/pulumi_google_native/dataproc/v1/session.py index 2e560e2cc3..dc1cfd8dd6 100644 --- a/sdk/python/pulumi_google_native/dataproc/v1/session.py +++ b/sdk/python/pulumi_google_native/dataproc/v1/session.py @@ -286,7 +286,7 @@ def _internal_init(__self__, __props__.__dict__["state_message"] = None __props__.__dict__["state_time"] = None __props__.__dict__["uuid"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "session_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "sessionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Session, __self__).__init__( 'google-native:dataproc/v1:Session', diff --git a/sdk/python/pulumi_google_native/dataproc/v1/workflow_template_iam_policy.py b/sdk/python/pulumi_google_native/dataproc/v1/workflow_template_iam_policy.py index f1892c7939..5a344ae757 100644 --- a/sdk/python/pulumi_google_native/dataproc/v1/workflow_template_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataproc/v1/workflow_template_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, if workflow_template_id is None and not opts.urn: raise TypeError("Missing required property 'workflow_template_id'") __props__.__dict__["workflow_template_id"] = workflow_template_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workflow_template_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workflowTemplateId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(WorkflowTemplateIamPolicy, __self__).__init__( 'google-native:dataproc/v1:WorkflowTemplateIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataproc/v1beta2/autoscaling_policy_iam_policy.py b/sdk/python/pulumi_google_native/dataproc/v1beta2/autoscaling_policy_iam_policy.py index 05aaaf3bef..214a02fa7b 100644 --- a/sdk/python/pulumi_google_native/dataproc/v1beta2/autoscaling_policy_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataproc/v1beta2/autoscaling_policy_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["autoscaling_policy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["autoscalingPolicyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AutoscalingPolicyIamPolicy, __self__).__init__( 'google-native:dataproc/v1beta2:AutoscalingPolicyIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataproc/v1beta2/region_autoscaling_policy_iam_policy.py b/sdk/python/pulumi_google_native/dataproc/v1beta2/region_autoscaling_policy_iam_policy.py index 029a2f62f5..12d066544f 100644 --- a/sdk/python/pulumi_google_native/dataproc/v1beta2/region_autoscaling_policy_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataproc/v1beta2/region_autoscaling_policy_iam_policy.py @@ -177,7 +177,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'region_id'") __props__.__dict__["region_id"] = region_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["autoscaling_policy_id", "project", "region_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["autoscalingPolicyId", "project", "regionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RegionAutoscalingPolicyIamPolicy, __self__).__init__( 'google-native:dataproc/v1beta2:RegionAutoscalingPolicyIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataproc/v1beta2/region_cluster_iam_policy.py b/sdk/python/pulumi_google_native/dataproc/v1beta2/region_cluster_iam_policy.py index 194a371bde..f849c1ed13 100644 --- a/sdk/python/pulumi_google_native/dataproc/v1beta2/region_cluster_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataproc/v1beta2/region_cluster_iam_policy.py @@ -177,7 +177,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'region_id'") __props__.__dict__["region_id"] = region_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cluster_id", "project", "region_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clusterId", "project", "regionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RegionClusterIamPolicy, __self__).__init__( 'google-native:dataproc/v1beta2:RegionClusterIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataproc/v1beta2/region_job_iam_policy.py b/sdk/python/pulumi_google_native/dataproc/v1beta2/region_job_iam_policy.py index f1869a7450..0e57711bce 100644 --- a/sdk/python/pulumi_google_native/dataproc/v1beta2/region_job_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataproc/v1beta2/region_job_iam_policy.py @@ -177,7 +177,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'region_id'") __props__.__dict__["region_id"] = region_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["job_id", "project", "region_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["jobId", "project", "regionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RegionJobIamPolicy, __self__).__init__( 'google-native:dataproc/v1beta2:RegionJobIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataproc/v1beta2/region_operation_iam_policy.py b/sdk/python/pulumi_google_native/dataproc/v1beta2/region_operation_iam_policy.py index fa97e3070d..d6bbfbfe06 100644 --- a/sdk/python/pulumi_google_native/dataproc/v1beta2/region_operation_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataproc/v1beta2/region_operation_iam_policy.py @@ -177,7 +177,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'region_id'") __props__.__dict__["region_id"] = region_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["operation_id", "project", "region_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["operationId", "project", "regionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RegionOperationIamPolicy, __self__).__init__( 'google-native:dataproc/v1beta2:RegionOperationIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataproc/v1beta2/region_workflow_template_iam_policy.py b/sdk/python/pulumi_google_native/dataproc/v1beta2/region_workflow_template_iam_policy.py index 441bbaef1d..a1ef1d7444 100644 --- a/sdk/python/pulumi_google_native/dataproc/v1beta2/region_workflow_template_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataproc/v1beta2/region_workflow_template_iam_policy.py @@ -177,7 +177,7 @@ def _internal_init(__self__, if workflow_template_id is None and not opts.urn: raise TypeError("Missing required property 'workflow_template_id'") __props__.__dict__["workflow_template_id"] = workflow_template_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "region_id", "workflow_template_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "regionId", "workflowTemplateId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RegionWorkflowTemplateIamPolicy, __self__).__init__( 'google-native:dataproc/v1beta2:RegionWorkflowTemplateIamPolicy', diff --git a/sdk/python/pulumi_google_native/dataproc/v1beta2/workflow_template_iam_policy.py b/sdk/python/pulumi_google_native/dataproc/v1beta2/workflow_template_iam_policy.py index 5874924c71..17544db981 100644 --- a/sdk/python/pulumi_google_native/dataproc/v1beta2/workflow_template_iam_policy.py +++ b/sdk/python/pulumi_google_native/dataproc/v1beta2/workflow_template_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, if workflow_template_id is None and not opts.urn: raise TypeError("Missing required property 'workflow_template_id'") __props__.__dict__["workflow_template_id"] = workflow_template_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workflow_template_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workflowTemplateId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(WorkflowTemplateIamPolicy, __self__).__init__( 'google-native:dataproc/v1beta2:WorkflowTemplateIamPolicy', diff --git a/sdk/python/pulumi_google_native/datastream/v1/connection_profile.py b/sdk/python/pulumi_google_native/datastream/v1/connection_profile.py index a7e9d133c7..a3f2289e3a 100644 --- a/sdk/python/pulumi_google_native/datastream/v1/connection_profile.py +++ b/sdk/python/pulumi_google_native/datastream/v1/connection_profile.py @@ -363,7 +363,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connection_profile_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connectionProfileId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ConnectionProfile, __self__).__init__( 'google-native:datastream/v1:ConnectionProfile', diff --git a/sdk/python/pulumi_google_native/datastream/v1/private_connection.py b/sdk/python/pulumi_google_native/datastream/v1/private_connection.py index 1602464705..e102d00cc0 100644 --- a/sdk/python/pulumi_google_native/datastream/v1/private_connection.py +++ b/sdk/python/pulumi_google_native/datastream/v1/private_connection.py @@ -225,7 +225,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "private_connection_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "privateConnectionId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(PrivateConnection, __self__).__init__( 'google-native:datastream/v1:PrivateConnection', diff --git a/sdk/python/pulumi_google_native/datastream/v1/route.py b/sdk/python/pulumi_google_native/datastream/v1/route.py index c1c1da292a..2e6e353120 100644 --- a/sdk/python/pulumi_google_native/datastream/v1/route.py +++ b/sdk/python/pulumi_google_native/datastream/v1/route.py @@ -238,7 +238,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "private_connection_id", "project", "route_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "privateConnectionId", "project", "routeId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Route, __self__).__init__( 'google-native:datastream/v1:Route', diff --git a/sdk/python/pulumi_google_native/datastream/v1/stream.py b/sdk/python/pulumi_google_native/datastream/v1/stream.py index ba21f1ad52..f9b925bd4d 100644 --- a/sdk/python/pulumi_google_native/datastream/v1/stream.py +++ b/sdk/python/pulumi_google_native/datastream/v1/stream.py @@ -328,7 +328,7 @@ def _internal_init(__self__, __props__.__dict__["last_recovery_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "stream_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "streamId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Stream, __self__).__init__( 'google-native:datastream/v1:Stream', diff --git a/sdk/python/pulumi_google_native/datastream/v1alpha1/_inputs.py b/sdk/python/pulumi_google_native/datastream/v1alpha1/_inputs.py index 7ac9cf3f8e..bd4b1d6bfb 100644 --- a/sdk/python/pulumi_google_native/datastream/v1alpha1/_inputs.py +++ b/sdk/python/pulumi_google_native/datastream/v1alpha1/_inputs.py @@ -304,13 +304,11 @@ def file_rotation_mb(self, value: Optional[pulumi.Input[int]]): @property @pulumi.getter(name="gcsFileFormat") + @_utilities.deprecated("""File format that data should be written in. Deprecated field (b/169501737) - use file_format instead.""") def gcs_file_format(self) -> Optional[pulumi.Input['GcsDestinationConfigGcsFileFormat']]: """ File format that data should be written in. Deprecated field (b/169501737) - use file_format instead. """ - warnings.warn("""File format that data should be written in. Deprecated field (b/169501737) - use file_format instead.""", DeprecationWarning) - pulumi.log.warn("""gcs_file_format is deprecated: File format that data should be written in. Deprecated field (b/169501737) - use file_format instead.""") - return pulumi.get(self, "gcs_file_format") @gcs_file_format.setter diff --git a/sdk/python/pulumi_google_native/datastream/v1alpha1/connection_profile.py b/sdk/python/pulumi_google_native/datastream/v1alpha1/connection_profile.py index 599ae2220b..926edf7979 100644 --- a/sdk/python/pulumi_google_native/datastream/v1alpha1/connection_profile.py +++ b/sdk/python/pulumi_google_native/datastream/v1alpha1/connection_profile.py @@ -323,7 +323,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connection_profile_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connectionProfileId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ConnectionProfile, __self__).__init__( 'google-native:datastream/v1alpha1:ConnectionProfile', diff --git a/sdk/python/pulumi_google_native/datastream/v1alpha1/outputs.py b/sdk/python/pulumi_google_native/datastream/v1alpha1/outputs.py index 59f34e0099..d31304f74b 100644 --- a/sdk/python/pulumi_google_native/datastream/v1alpha1/outputs.py +++ b/sdk/python/pulumi_google_native/datastream/v1alpha1/outputs.py @@ -429,13 +429,11 @@ def file_rotation_mb(self) -> int: @property @pulumi.getter(name="gcsFileFormat") + @_utilities.deprecated("""File format that data should be written in. Deprecated field (b/169501737) - use file_format instead.""") def gcs_file_format(self) -> str: """ File format that data should be written in. Deprecated field (b/169501737) - use file_format instead. """ - warnings.warn("""File format that data should be written in. Deprecated field (b/169501737) - use file_format instead.""", DeprecationWarning) - pulumi.log.warn("""gcs_file_format is deprecated: File format that data should be written in. Deprecated field (b/169501737) - use file_format instead.""") - return pulumi.get(self, "gcs_file_format") @property diff --git a/sdk/python/pulumi_google_native/datastream/v1alpha1/private_connection.py b/sdk/python/pulumi_google_native/datastream/v1alpha1/private_connection.py index e7b354be30..4d563d4a9a 100644 --- a/sdk/python/pulumi_google_native/datastream/v1alpha1/private_connection.py +++ b/sdk/python/pulumi_google_native/datastream/v1alpha1/private_connection.py @@ -205,7 +205,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "private_connection_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "privateConnectionId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(PrivateConnection, __self__).__init__( 'google-native:datastream/v1alpha1:PrivateConnection', diff --git a/sdk/python/pulumi_google_native/datastream/v1alpha1/route.py b/sdk/python/pulumi_google_native/datastream/v1alpha1/route.py index 10ebb5cbd4..3143511417 100644 --- a/sdk/python/pulumi_google_native/datastream/v1alpha1/route.py +++ b/sdk/python/pulumi_google_native/datastream/v1alpha1/route.py @@ -238,7 +238,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "private_connection_id", "project", "route_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "privateConnectionId", "project", "routeId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Route, __self__).__init__( 'google-native:datastream/v1alpha1:Route', diff --git a/sdk/python/pulumi_google_native/datastream/v1alpha1/stream.py b/sdk/python/pulumi_google_native/datastream/v1alpha1/stream.py index ba3bf797b3..318866fd21 100644 --- a/sdk/python/pulumi_google_native/datastream/v1alpha1/stream.py +++ b/sdk/python/pulumi_google_native/datastream/v1alpha1/stream.py @@ -327,7 +327,7 @@ def _internal_init(__self__, __props__.__dict__["errors"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "stream_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "streamId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Stream, __self__).__init__( 'google-native:datastream/v1alpha1:Stream', diff --git a/sdk/python/pulumi_google_native/deploymentmanager/alpha/outputs.py b/sdk/python/pulumi_google_native/deploymentmanager/alpha/outputs.py index 13be453d04..ce575ae95b 100644 --- a/sdk/python/pulumi_google_native/deploymentmanager/alpha/outputs.py +++ b/sdk/python/pulumi_google_native/deploymentmanager/alpha/outputs.py @@ -1102,13 +1102,11 @@ def client_operation_id(self) -> str: @property @pulumi.getter(name="creationTimestamp") + @_utilities.deprecated("""[Deprecated] This field is deprecated.""") def creation_timestamp(self) -> str: """ [Deprecated] This field is deprecated. """ - warnings.warn("""[Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""creation_timestamp is deprecated: [Deprecated] This field is deprecated.""") - return pulumi.get(self, "creation_timestamp") @property diff --git a/sdk/python/pulumi_google_native/deploymentmanager/v2/outputs.py b/sdk/python/pulumi_google_native/deploymentmanager/v2/outputs.py index ba267c17df..76cc03cb6f 100644 --- a/sdk/python/pulumi_google_native/deploymentmanager/v2/outputs.py +++ b/sdk/python/pulumi_google_native/deploymentmanager/v2/outputs.py @@ -621,13 +621,11 @@ def client_operation_id(self) -> str: @property @pulumi.getter(name="creationTimestamp") + @_utilities.deprecated("""[Deprecated] This field is deprecated.""") def creation_timestamp(self) -> str: """ [Deprecated] This field is deprecated. """ - warnings.warn("""[Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""creation_timestamp is deprecated: [Deprecated] This field is deprecated.""") - return pulumi.get(self, "creation_timestamp") @property diff --git a/sdk/python/pulumi_google_native/deploymentmanager/v2beta/outputs.py b/sdk/python/pulumi_google_native/deploymentmanager/v2beta/outputs.py index 1758574d46..859c3f8396 100644 --- a/sdk/python/pulumi_google_native/deploymentmanager/v2beta/outputs.py +++ b/sdk/python/pulumi_google_native/deploymentmanager/v2beta/outputs.py @@ -945,13 +945,11 @@ def client_operation_id(self) -> str: @property @pulumi.getter(name="creationTimestamp") + @_utilities.deprecated("""[Deprecated] This field is deprecated.""") def creation_timestamp(self) -> str: """ [Deprecated] This field is deprecated. """ - warnings.warn("""[Deprecated] This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""creation_timestamp is deprecated: [Deprecated] This field is deprecated.""") - return pulumi.get(self, "creation_timestamp") @property diff --git a/sdk/python/pulumi_google_native/dialogflow/v2/context.py b/sdk/python/pulumi_google_native/dialogflow/v2/context.py index e6ccd61f8f..21d02a61c8 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v2/context.py +++ b/sdk/python/pulumi_google_native/dialogflow/v2/context.py @@ -205,7 +205,7 @@ def _internal_init(__self__, if user_id is None and not opts.urn: raise TypeError("Missing required property 'user_id'") __props__.__dict__["user_id"] = user_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environment_id", "location", "project", "session_id", "user_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environmentId", "location", "project", "sessionId", "userId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Context, __self__).__init__( 'google-native:dialogflow/v2:Context', diff --git a/sdk/python/pulumi_google_native/dialogflow/v2/document.py b/sdk/python/pulumi_google_native/dialogflow/v2/document.py index 0c3a1f1080..566beb62b1 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v2/document.py +++ b/sdk/python/pulumi_google_native/dialogflow/v2/document.py @@ -277,7 +277,7 @@ def _internal_init(__self__, __props__.__dict__["raw_content"] = raw_content __props__.__dict__["latest_reload_status"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["knowledge_base_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["knowledgeBaseId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Document, __self__).__init__( 'google-native:dialogflow/v2:Document', diff --git a/sdk/python/pulumi_google_native/dialogflow/v2/environment.py b/sdk/python/pulumi_google_native/dialogflow/v2/environment.py index 1e22c57900..161c035699 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v2/environment.py +++ b/sdk/python/pulumi_google_native/dialogflow/v2/environment.py @@ -203,7 +203,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environment_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environmentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Environment, __self__).__init__( 'google-native:dialogflow/v2:Environment', diff --git a/sdk/python/pulumi_google_native/dialogflow/v2/evaluation.py b/sdk/python/pulumi_google_native/dialogflow/v2/evaluation.py index 5cc5458b9d..ec7779b62e 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v2/evaluation.py +++ b/sdk/python/pulumi_google_native/dialogflow/v2/evaluation.py @@ -179,7 +179,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["raw_human_eval_template_csv"] = None __props__.__dict__["smart_reply_metrics"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["conversation_model_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["conversationModelId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Evaluation, __self__).__init__( 'google-native:dialogflow/v2:Evaluation', diff --git a/sdk/python/pulumi_google_native/dialogflow/v2/participant.py b/sdk/python/pulumi_google_native/dialogflow/v2/participant.py index 629234d73e..396a3f841c 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v2/participant.py +++ b/sdk/python/pulumi_google_native/dialogflow/v2/participant.py @@ -215,7 +215,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["role"] = role __props__.__dict__["sip_recording_media_label"] = sip_recording_media_label - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["conversation_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["conversationId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Participant, __self__).__init__( 'google-native:dialogflow/v2:Participant', diff --git a/sdk/python/pulumi_google_native/dialogflow/v2/session_entity_type.py b/sdk/python/pulumi_google_native/dialogflow/v2/session_entity_type.py index eb15144f73..b193573a39 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v2/session_entity_type.py +++ b/sdk/python/pulumi_google_native/dialogflow/v2/session_entity_type.py @@ -210,7 +210,7 @@ def _internal_init(__self__, if user_id is None and not opts.urn: raise TypeError("Missing required property 'user_id'") __props__.__dict__["user_id"] = user_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environment_id", "location", "project", "session_id", "user_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environmentId", "location", "project", "sessionId", "userId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SessionEntityType, __self__).__init__( 'google-native:dialogflow/v2:SessionEntityType', diff --git a/sdk/python/pulumi_google_native/dialogflow/v2beta1/context.py b/sdk/python/pulumi_google_native/dialogflow/v2beta1/context.py index 25645fd45e..dd3b79a0ab 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v2beta1/context.py +++ b/sdk/python/pulumi_google_native/dialogflow/v2beta1/context.py @@ -205,7 +205,7 @@ def _internal_init(__self__, if user_id is None and not opts.urn: raise TypeError("Missing required property 'user_id'") __props__.__dict__["user_id"] = user_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environment_id", "location", "project", "session_id", "user_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environmentId", "location", "project", "sessionId", "userId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Context, __self__).__init__( 'google-native:dialogflow/v2beta1:Context', diff --git a/sdk/python/pulumi_google_native/dialogflow/v2beta1/document.py b/sdk/python/pulumi_google_native/dialogflow/v2beta1/document.py index 269d94fe82..4fc1f624e6 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v2beta1/document.py +++ b/sdk/python/pulumi_google_native/dialogflow/v2beta1/document.py @@ -317,7 +317,7 @@ def _internal_init(__self__, __props__.__dict__["raw_content"] = raw_content __props__.__dict__["latest_reload_status"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["knowledge_base_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["knowledgeBaseId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Document, __self__).__init__( 'google-native:dialogflow/v2beta1:Document', diff --git a/sdk/python/pulumi_google_native/dialogflow/v2beta1/environment.py b/sdk/python/pulumi_google_native/dialogflow/v2beta1/environment.py index 242f733122..ca0a489fb8 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v2beta1/environment.py +++ b/sdk/python/pulumi_google_native/dialogflow/v2beta1/environment.py @@ -203,7 +203,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environment_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environmentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Environment, __self__).__init__( 'google-native:dialogflow/v2beta1:Environment', diff --git a/sdk/python/pulumi_google_native/dialogflow/v2beta1/get_intent.py b/sdk/python/pulumi_google_native/dialogflow/v2beta1/get_intent.py index 74c95ed6ee..7248b5678b 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v2beta1/get_intent.py +++ b/sdk/python/pulumi_google_native/dialogflow/v2beta1/get_intent.py @@ -174,13 +174,11 @@ def ml_disabled(self) -> bool: @property @pulumi.getter(name="mlEnabled") + @_utilities.deprecated("""Optional. Indicates whether Machine Learning is enabled for the intent. Note: If `ml_enabled` setting is set to false, then this intent is not taken into account during inference in `ML ONLY` match mode. Also, auto-markup in the UI is turned off. DEPRECATED! Please use `ml_disabled` field instead. NOTE: If both `ml_enabled` and `ml_disabled` are either not set or false, then the default value is determined as follows: - Before April 15th, 2018 the default is: ml_enabled = false / ml_disabled = true. - After April 15th, 2018 the default is: ml_enabled = true / ml_disabled = false.""") def ml_enabled(self) -> bool: """ Optional. Indicates whether Machine Learning is enabled for the intent. Note: If `ml_enabled` setting is set to false, then this intent is not taken into account during inference in `ML ONLY` match mode. Also, auto-markup in the UI is turned off. DEPRECATED! Please use `ml_disabled` field instead. NOTE: If both `ml_enabled` and `ml_disabled` are either not set or false, then the default value is determined as follows: - Before April 15th, 2018 the default is: ml_enabled = false / ml_disabled = true. - After April 15th, 2018 the default is: ml_enabled = true / ml_disabled = false. """ - warnings.warn("""Optional. Indicates whether Machine Learning is enabled for the intent. Note: If `ml_enabled` setting is set to false, then this intent is not taken into account during inference in `ML ONLY` match mode. Also, auto-markup in the UI is turned off. DEPRECATED! Please use `ml_disabled` field instead. NOTE: If both `ml_enabled` and `ml_disabled` are either not set or false, then the default value is determined as follows: - Before April 15th, 2018 the default is: ml_enabled = false / ml_disabled = true. - After April 15th, 2018 the default is: ml_enabled = true / ml_disabled = false.""", DeprecationWarning) - pulumi.log.warn("""ml_enabled is deprecated: Optional. Indicates whether Machine Learning is enabled for the intent. Note: If `ml_enabled` setting is set to false, then this intent is not taken into account during inference in `ML ONLY` match mode. Also, auto-markup in the UI is turned off. DEPRECATED! Please use `ml_disabled` field instead. NOTE: If both `ml_enabled` and `ml_disabled` are either not set or false, then the default value is determined as follows: - Before April 15th, 2018 the default is: ml_enabled = false / ml_disabled = true. - After April 15th, 2018 the default is: ml_enabled = true / ml_disabled = false.""") - return pulumi.get(self, "ml_enabled") @property diff --git a/sdk/python/pulumi_google_native/dialogflow/v2beta1/intent.py b/sdk/python/pulumi_google_native/dialogflow/v2beta1/intent.py index 737ce57cc3..8a53682c66 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v2beta1/intent.py +++ b/sdk/python/pulumi_google_native/dialogflow/v2beta1/intent.py @@ -268,13 +268,11 @@ def ml_disabled(self, value: Optional[pulumi.Input[bool]]): @property @pulumi.getter(name="mlEnabled") + @_utilities.deprecated("""Optional. Indicates whether Machine Learning is enabled for the intent. Note: If `ml_enabled` setting is set to false, then this intent is not taken into account during inference in `ML ONLY` match mode. Also, auto-markup in the UI is turned off. DEPRECATED! Please use `ml_disabled` field instead. NOTE: If both `ml_enabled` and `ml_disabled` are either not set or false, then the default value is determined as follows: - Before April 15th, 2018 the default is: ml_enabled = false / ml_disabled = true. - After April 15th, 2018 the default is: ml_enabled = true / ml_disabled = false.""") def ml_enabled(self) -> Optional[pulumi.Input[bool]]: """ Optional. Indicates whether Machine Learning is enabled for the intent. Note: If `ml_enabled` setting is set to false, then this intent is not taken into account during inference in `ML ONLY` match mode. Also, auto-markup in the UI is turned off. DEPRECATED! Please use `ml_disabled` field instead. NOTE: If both `ml_enabled` and `ml_disabled` are either not set or false, then the default value is determined as follows: - Before April 15th, 2018 the default is: ml_enabled = false / ml_disabled = true. - After April 15th, 2018 the default is: ml_enabled = true / ml_disabled = false. """ - warnings.warn("""Optional. Indicates whether Machine Learning is enabled for the intent. Note: If `ml_enabled` setting is set to false, then this intent is not taken into account during inference in `ML ONLY` match mode. Also, auto-markup in the UI is turned off. DEPRECATED! Please use `ml_disabled` field instead. NOTE: If both `ml_enabled` and `ml_disabled` are either not set or false, then the default value is determined as follows: - Before April 15th, 2018 the default is: ml_enabled = false / ml_disabled = true. - After April 15th, 2018 the default is: ml_enabled = true / ml_disabled = false.""", DeprecationWarning) - pulumi.log.warn("""ml_enabled is deprecated: Optional. Indicates whether Machine Learning is enabled for the intent. Note: If `ml_enabled` setting is set to false, then this intent is not taken into account during inference in `ML ONLY` match mode. Also, auto-markup in the UI is turned off. DEPRECATED! Please use `ml_disabled` field instead. NOTE: If both `ml_enabled` and `ml_disabled` are either not set or false, then the default value is determined as follows: - Before April 15th, 2018 the default is: ml_enabled = false / ml_disabled = true. - After April 15th, 2018 the default is: ml_enabled = true / ml_disabled = false.""") - return pulumi.get(self, "ml_enabled") @ml_enabled.setter @@ -690,13 +688,11 @@ def ml_disabled(self) -> pulumi.Output[bool]: @property @pulumi.getter(name="mlEnabled") + @_utilities.deprecated("""Optional. Indicates whether Machine Learning is enabled for the intent. Note: If `ml_enabled` setting is set to false, then this intent is not taken into account during inference in `ML ONLY` match mode. Also, auto-markup in the UI is turned off. DEPRECATED! Please use `ml_disabled` field instead. NOTE: If both `ml_enabled` and `ml_disabled` are either not set or false, then the default value is determined as follows: - Before April 15th, 2018 the default is: ml_enabled = false / ml_disabled = true. - After April 15th, 2018 the default is: ml_enabled = true / ml_disabled = false.""") def ml_enabled(self) -> pulumi.Output[bool]: """ Optional. Indicates whether Machine Learning is enabled for the intent. Note: If `ml_enabled` setting is set to false, then this intent is not taken into account during inference in `ML ONLY` match mode. Also, auto-markup in the UI is turned off. DEPRECATED! Please use `ml_disabled` field instead. NOTE: If both `ml_enabled` and `ml_disabled` are either not set or false, then the default value is determined as follows: - Before April 15th, 2018 the default is: ml_enabled = false / ml_disabled = true. - After April 15th, 2018 the default is: ml_enabled = true / ml_disabled = false. """ - warnings.warn("""Optional. Indicates whether Machine Learning is enabled for the intent. Note: If `ml_enabled` setting is set to false, then this intent is not taken into account during inference in `ML ONLY` match mode. Also, auto-markup in the UI is turned off. DEPRECATED! Please use `ml_disabled` field instead. NOTE: If both `ml_enabled` and `ml_disabled` are either not set or false, then the default value is determined as follows: - Before April 15th, 2018 the default is: ml_enabled = false / ml_disabled = true. - After April 15th, 2018 the default is: ml_enabled = true / ml_disabled = false.""", DeprecationWarning) - pulumi.log.warn("""ml_enabled is deprecated: Optional. Indicates whether Machine Learning is enabled for the intent. Note: If `ml_enabled` setting is set to false, then this intent is not taken into account during inference in `ML ONLY` match mode. Also, auto-markup in the UI is turned off. DEPRECATED! Please use `ml_disabled` field instead. NOTE: If both `ml_enabled` and `ml_disabled` are either not set or false, then the default value is determined as follows: - Before April 15th, 2018 the default is: ml_enabled = false / ml_disabled = true. - After April 15th, 2018 the default is: ml_enabled = true / ml_disabled = false.""") - return pulumi.get(self, "ml_enabled") @property diff --git a/sdk/python/pulumi_google_native/dialogflow/v2beta1/participant.py b/sdk/python/pulumi_google_native/dialogflow/v2beta1/participant.py index feb5e1c89c..f47f209783 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v2beta1/participant.py +++ b/sdk/python/pulumi_google_native/dialogflow/v2beta1/participant.py @@ -195,7 +195,7 @@ def _internal_init(__self__, __props__.__dict__["obfuscated_external_user_id"] = obfuscated_external_user_id __props__.__dict__["project"] = project __props__.__dict__["role"] = role - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["conversation_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["conversationId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Participant, __self__).__init__( 'google-native:dialogflow/v2beta1:Participant', diff --git a/sdk/python/pulumi_google_native/dialogflow/v2beta1/session_entity_type.py b/sdk/python/pulumi_google_native/dialogflow/v2beta1/session_entity_type.py index 9164c4f964..3421152096 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v2beta1/session_entity_type.py +++ b/sdk/python/pulumi_google_native/dialogflow/v2beta1/session_entity_type.py @@ -210,7 +210,7 @@ def _internal_init(__self__, if user_id is None and not opts.urn: raise TypeError("Missing required property 'user_id'") __props__.__dict__["user_id"] = user_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environment_id", "location", "project", "session_id", "user_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environmentId", "location", "project", "sessionId", "userId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SessionEntityType, __self__).__init__( 'google-native:dialogflow/v2beta1:SessionEntityType', diff --git a/sdk/python/pulumi_google_native/dialogflow/v3/entity_type.py b/sdk/python/pulumi_google_native/dialogflow/v3/entity_type.py index 105b4766de..015cbceb03 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v3/entity_type.py +++ b/sdk/python/pulumi_google_native/dialogflow/v3/entity_type.py @@ -295,7 +295,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = name __props__.__dict__["project"] = project __props__.__dict__["redact"] = redact - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EntityType, __self__).__init__( 'google-native:dialogflow/v3:EntityType', diff --git a/sdk/python/pulumi_google_native/dialogflow/v3/environment.py b/sdk/python/pulumi_google_native/dialogflow/v3/environment.py index d5feee6006..3ebb8a4b32 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v3/environment.py +++ b/sdk/python/pulumi_google_native/dialogflow/v3/environment.py @@ -235,7 +235,7 @@ def _internal_init(__self__, __props__.__dict__["version_configs"] = version_configs __props__.__dict__["webhook_config"] = webhook_config __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Environment, __self__).__init__( 'google-native:dialogflow/v3:Environment', diff --git a/sdk/python/pulumi_google_native/dialogflow/v3/experiment.py b/sdk/python/pulumi_google_native/dialogflow/v3/experiment.py index 23d78bc55a..d64ede06db 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v3/experiment.py +++ b/sdk/python/pulumi_google_native/dialogflow/v3/experiment.py @@ -430,7 +430,7 @@ def _internal_init(__self__, __props__.__dict__["start_time"] = start_time __props__.__dict__["state"] = state __props__.__dict__["variants_history"] = variants_history - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_id", "environment_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentId", "environmentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Experiment, __self__).__init__( 'google-native:dialogflow/v3:Experiment', diff --git a/sdk/python/pulumi_google_native/dialogflow/v3/flow.py b/sdk/python/pulumi_google_native/dialogflow/v3/flow.py index 3ef5395163..06b42992d4 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v3/flow.py +++ b/sdk/python/pulumi_google_native/dialogflow/v3/flow.py @@ -314,7 +314,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["transition_route_groups"] = transition_route_groups __props__.__dict__["transition_routes"] = transition_routes - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Flow, __self__).__init__( 'google-native:dialogflow/v3:Flow', diff --git a/sdk/python/pulumi_google_native/dialogflow/v3/intent.py b/sdk/python/pulumi_google_native/dialogflow/v3/intent.py index 0f620a3675..f141db06c5 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v3/intent.py +++ b/sdk/python/pulumi_google_native/dialogflow/v3/intent.py @@ -293,7 +293,7 @@ def _internal_init(__self__, __props__.__dict__["priority"] = priority __props__.__dict__["project"] = project __props__.__dict__["training_phrases"] = training_phrases - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Intent, __self__).__init__( 'google-native:dialogflow/v3:Intent', diff --git a/sdk/python/pulumi_google_native/dialogflow/v3/page.py b/sdk/python/pulumi_google_native/dialogflow/v3/page.py index 69d00ae483..33ab7b70cd 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v3/page.py +++ b/sdk/python/pulumi_google_native/dialogflow/v3/page.py @@ -330,7 +330,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["transition_route_groups"] = transition_route_groups __props__.__dict__["transition_routes"] = transition_routes - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_id", "flow_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentId", "flowId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Page, __self__).__init__( 'google-native:dialogflow/v3:Page', diff --git a/sdk/python/pulumi_google_native/dialogflow/v3/session_entity_type.py b/sdk/python/pulumi_google_native/dialogflow/v3/session_entity_type.py index ec80521f45..f4e9aa76b5 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v3/session_entity_type.py +++ b/sdk/python/pulumi_google_native/dialogflow/v3/session_entity_type.py @@ -207,7 +207,7 @@ def _internal_init(__self__, if session_id is None and not opts.urn: raise TypeError("Missing required property 'session_id'") __props__.__dict__["session_id"] = session_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_id", "environment_id", "location", "project", "session_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentId", "environmentId", "location", "project", "sessionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SessionEntityType, __self__).__init__( 'google-native:dialogflow/v3:SessionEntityType', diff --git a/sdk/python/pulumi_google_native/dialogflow/v3/test_case.py b/sdk/python/pulumi_google_native/dialogflow/v3/test_case.py index 4e9fd44523..b4b9bfe481 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v3/test_case.py +++ b/sdk/python/pulumi_google_native/dialogflow/v3/test_case.py @@ -259,7 +259,7 @@ def _internal_init(__self__, __props__.__dict__["test_case_conversation_turns"] = test_case_conversation_turns __props__.__dict__["test_config"] = test_config __props__.__dict__["creation_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TestCase, __self__).__init__( 'google-native:dialogflow/v3:TestCase', diff --git a/sdk/python/pulumi_google_native/dialogflow/v3/transition_route_group.py b/sdk/python/pulumi_google_native/dialogflow/v3/transition_route_group.py index 023f3d92cd..271d6a05a6 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v3/transition_route_group.py +++ b/sdk/python/pulumi_google_native/dialogflow/v3/transition_route_group.py @@ -210,7 +210,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = name __props__.__dict__["project"] = project __props__.__dict__["transition_routes"] = transition_routes - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_id", "flow_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentId", "flowId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TransitionRouteGroup, __self__).__init__( 'google-native:dialogflow/v3:TransitionRouteGroup', diff --git a/sdk/python/pulumi_google_native/dialogflow/v3/version.py b/sdk/python/pulumi_google_native/dialogflow/v3/version.py index 5394f2bc61..fd20238468 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v3/version.py +++ b/sdk/python/pulumi_google_native/dialogflow/v3/version.py @@ -191,7 +191,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["nlu_settings"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_id", "flow_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentId", "flowId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Version, __self__).__init__( 'google-native:dialogflow/v3:Version', diff --git a/sdk/python/pulumi_google_native/dialogflow/v3/webhook.py b/sdk/python/pulumi_google_native/dialogflow/v3/webhook.py index 1355543d90..a2b4ccb2e3 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v3/webhook.py +++ b/sdk/python/pulumi_google_native/dialogflow/v3/webhook.py @@ -234,7 +234,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["service_directory"] = service_directory __props__.__dict__["timeout"] = timeout - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Webhook, __self__).__init__( 'google-native:dialogflow/v3:Webhook', diff --git a/sdk/python/pulumi_google_native/dialogflow/v3beta1/entity_type.py b/sdk/python/pulumi_google_native/dialogflow/v3beta1/entity_type.py index 4cb89d60ac..8e498a6b67 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v3beta1/entity_type.py +++ b/sdk/python/pulumi_google_native/dialogflow/v3beta1/entity_type.py @@ -295,7 +295,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = name __props__.__dict__["project"] = project __props__.__dict__["redact"] = redact - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EntityType, __self__).__init__( 'google-native:dialogflow/v3beta1:EntityType', diff --git a/sdk/python/pulumi_google_native/dialogflow/v3beta1/environment.py b/sdk/python/pulumi_google_native/dialogflow/v3beta1/environment.py index c94e51dc8c..0eeb3f8369 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v3beta1/environment.py +++ b/sdk/python/pulumi_google_native/dialogflow/v3beta1/environment.py @@ -235,7 +235,7 @@ def _internal_init(__self__, __props__.__dict__["version_configs"] = version_configs __props__.__dict__["webhook_config"] = webhook_config __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Environment, __self__).__init__( 'google-native:dialogflow/v3beta1:Environment', diff --git a/sdk/python/pulumi_google_native/dialogflow/v3beta1/experiment.py b/sdk/python/pulumi_google_native/dialogflow/v3beta1/experiment.py index 0c58044361..3b02108ada 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v3beta1/experiment.py +++ b/sdk/python/pulumi_google_native/dialogflow/v3beta1/experiment.py @@ -430,7 +430,7 @@ def _internal_init(__self__, __props__.__dict__["start_time"] = start_time __props__.__dict__["state"] = state __props__.__dict__["variants_history"] = variants_history - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_id", "environment_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentId", "environmentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Experiment, __self__).__init__( 'google-native:dialogflow/v3beta1:Experiment', diff --git a/sdk/python/pulumi_google_native/dialogflow/v3beta1/flow.py b/sdk/python/pulumi_google_native/dialogflow/v3beta1/flow.py index 04fdb071a4..81f7d60811 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v3beta1/flow.py +++ b/sdk/python/pulumi_google_native/dialogflow/v3beta1/flow.py @@ -314,7 +314,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["transition_route_groups"] = transition_route_groups __props__.__dict__["transition_routes"] = transition_routes - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Flow, __self__).__init__( 'google-native:dialogflow/v3beta1:Flow', diff --git a/sdk/python/pulumi_google_native/dialogflow/v3beta1/intent.py b/sdk/python/pulumi_google_native/dialogflow/v3beta1/intent.py index 6f819550d7..c9e5f2fc99 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v3beta1/intent.py +++ b/sdk/python/pulumi_google_native/dialogflow/v3beta1/intent.py @@ -293,7 +293,7 @@ def _internal_init(__self__, __props__.__dict__["priority"] = priority __props__.__dict__["project"] = project __props__.__dict__["training_phrases"] = training_phrases - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Intent, __self__).__init__( 'google-native:dialogflow/v3beta1:Intent', diff --git a/sdk/python/pulumi_google_native/dialogflow/v3beta1/page.py b/sdk/python/pulumi_google_native/dialogflow/v3beta1/page.py index e44a5d0549..2095d05469 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v3beta1/page.py +++ b/sdk/python/pulumi_google_native/dialogflow/v3beta1/page.py @@ -330,7 +330,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["transition_route_groups"] = transition_route_groups __props__.__dict__["transition_routes"] = transition_routes - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_id", "flow_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentId", "flowId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Page, __self__).__init__( 'google-native:dialogflow/v3beta1:Page', diff --git a/sdk/python/pulumi_google_native/dialogflow/v3beta1/session_entity_type.py b/sdk/python/pulumi_google_native/dialogflow/v3beta1/session_entity_type.py index 2d4cbc664c..16cb1d1944 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v3beta1/session_entity_type.py +++ b/sdk/python/pulumi_google_native/dialogflow/v3beta1/session_entity_type.py @@ -207,7 +207,7 @@ def _internal_init(__self__, if session_id is None and not opts.urn: raise TypeError("Missing required property 'session_id'") __props__.__dict__["session_id"] = session_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_id", "environment_id", "location", "project", "session_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentId", "environmentId", "location", "project", "sessionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SessionEntityType, __self__).__init__( 'google-native:dialogflow/v3beta1:SessionEntityType', diff --git a/sdk/python/pulumi_google_native/dialogflow/v3beta1/test_case.py b/sdk/python/pulumi_google_native/dialogflow/v3beta1/test_case.py index 2fff91e86d..e8fd4aa79a 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v3beta1/test_case.py +++ b/sdk/python/pulumi_google_native/dialogflow/v3beta1/test_case.py @@ -259,7 +259,7 @@ def _internal_init(__self__, __props__.__dict__["test_case_conversation_turns"] = test_case_conversation_turns __props__.__dict__["test_config"] = test_config __props__.__dict__["creation_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TestCase, __self__).__init__( 'google-native:dialogflow/v3beta1:TestCase', diff --git a/sdk/python/pulumi_google_native/dialogflow/v3beta1/transition_route_group.py b/sdk/python/pulumi_google_native/dialogflow/v3beta1/transition_route_group.py index 7e74068e4f..00299b0807 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v3beta1/transition_route_group.py +++ b/sdk/python/pulumi_google_native/dialogflow/v3beta1/transition_route_group.py @@ -209,7 +209,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = name __props__.__dict__["project"] = project __props__.__dict__["transition_routes"] = transition_routes - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_id", "flow_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentId", "flowId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TransitionRouteGroup, __self__).__init__( 'google-native:dialogflow/v3beta1:TransitionRouteGroup', diff --git a/sdk/python/pulumi_google_native/dialogflow/v3beta1/version.py b/sdk/python/pulumi_google_native/dialogflow/v3beta1/version.py index 51fa2fd7dd..c58c8af85c 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v3beta1/version.py +++ b/sdk/python/pulumi_google_native/dialogflow/v3beta1/version.py @@ -191,7 +191,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["nlu_settings"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_id", "flow_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentId", "flowId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Version, __self__).__init__( 'google-native:dialogflow/v3beta1:Version', diff --git a/sdk/python/pulumi_google_native/dialogflow/v3beta1/webhook.py b/sdk/python/pulumi_google_native/dialogflow/v3beta1/webhook.py index db9b1bfa22..f2c456e33a 100644 --- a/sdk/python/pulumi_google_native/dialogflow/v3beta1/webhook.py +++ b/sdk/python/pulumi_google_native/dialogflow/v3beta1/webhook.py @@ -234,7 +234,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["service_directory"] = service_directory __props__.__dict__["timeout"] = timeout - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Webhook, __self__).__init__( 'google-native:dialogflow/v3beta1:Webhook', diff --git a/sdk/python/pulumi_google_native/discoveryengine/v1alpha/_inputs.py b/sdk/python/pulumi_google_native/discoveryengine/v1alpha/_inputs.py index cbfd034094..54de5524d1 100644 --- a/sdk/python/pulumi_google_native/discoveryengine/v1alpha/_inputs.py +++ b/sdk/python/pulumi_google_native/discoveryengine/v1alpha/_inputs.py @@ -548,13 +548,11 @@ def references(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['GoogleC @property @pulumi.getter + @_utilities.deprecated("""DEPRECATED: use `summary` instead. Text reply.""") def reply(self) -> Optional[pulumi.Input[str]]: """ DEPRECATED: use `summary` instead. Text reply. """ - warnings.warn("""DEPRECATED: use `summary` instead. Text reply.""", DeprecationWarning) - pulumi.log.warn("""reply is deprecated: DEPRECATED: use `summary` instead. Text reply.""") - return pulumi.get(self, "reply") @reply.setter diff --git a/sdk/python/pulumi_google_native/discoveryengine/v1alpha/conversation.py b/sdk/python/pulumi_google_native/discoveryengine/v1alpha/conversation.py index 9cc842c3e1..76da49cdac 100644 --- a/sdk/python/pulumi_google_native/discoveryengine/v1alpha/conversation.py +++ b/sdk/python/pulumi_google_native/discoveryengine/v1alpha/conversation.py @@ -213,7 +213,7 @@ def _internal_init(__self__, __props__.__dict__["user_pseudo_id"] = user_pseudo_id __props__.__dict__["end_time"] = None __props__.__dict__["start_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["collection_id", "data_store_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["collectionId", "dataStoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Conversation, __self__).__init__( 'google-native:discoveryengine/v1alpha:Conversation', diff --git a/sdk/python/pulumi_google_native/discoveryengine/v1alpha/data_store.py b/sdk/python/pulumi_google_native/discoveryengine/v1alpha/data_store.py index d6df6893ec..95963cd80d 100644 --- a/sdk/python/pulumi_google_native/discoveryengine/v1alpha/data_store.py +++ b/sdk/python/pulumi_google_native/discoveryengine/v1alpha/data_store.py @@ -255,7 +255,7 @@ def _internal_init(__self__, __props__.__dict__["solution_types"] = solution_types __props__.__dict__["create_time"] = None __props__.__dict__["default_schema_id"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["collection_id", "data_store_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["collectionId", "dataStoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DataStore, __self__).__init__( 'google-native:discoveryengine/v1alpha:DataStore', diff --git a/sdk/python/pulumi_google_native/discoveryengine/v1alpha/document.py b/sdk/python/pulumi_google_native/discoveryengine/v1alpha/document.py index a7b621e963..0cdc807d70 100644 --- a/sdk/python/pulumi_google_native/discoveryengine/v1alpha/document.py +++ b/sdk/python/pulumi_google_native/discoveryengine/v1alpha/document.py @@ -306,7 +306,7 @@ def _internal_init(__self__, __props__.__dict__["schema_id"] = schema_id __props__.__dict__["struct_data"] = struct_data __props__.__dict__["derived_struct_data"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["branch_id", "collection_id", "data_store_id", "document_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["branchId", "collectionId", "dataStoreId", "documentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Document, __self__).__init__( 'google-native:discoveryengine/v1alpha:Document', diff --git a/sdk/python/pulumi_google_native/discoveryengine/v1alpha/engine.py b/sdk/python/pulumi_google_native/discoveryengine/v1alpha/engine.py index 85c83a20c6..497af0d5bc 100644 --- a/sdk/python/pulumi_google_native/discoveryengine/v1alpha/engine.py +++ b/sdk/python/pulumi_google_native/discoveryengine/v1alpha/engine.py @@ -340,7 +340,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["recommendation_metadata"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["collection_id", "engine_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["collectionId", "engineId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Engine, __self__).__init__( 'google-native:discoveryengine/v1alpha:Engine', diff --git a/sdk/python/pulumi_google_native/discoveryengine/v1alpha/outputs.py b/sdk/python/pulumi_google_native/discoveryengine/v1alpha/outputs.py index bc89287672..3a08ee96e1 100644 --- a/sdk/python/pulumi_google_native/discoveryengine/v1alpha/outputs.py +++ b/sdk/python/pulumi_google_native/discoveryengine/v1alpha/outputs.py @@ -917,13 +917,11 @@ def references(self) -> Sequence['outputs.GoogleCloudDiscoveryengineV1alphaReply @property @pulumi.getter + @_utilities.deprecated("""DEPRECATED: use `summary` instead. Text reply.""") def reply(self) -> str: """ DEPRECATED: use `summary` instead. Text reply. """ - warnings.warn("""DEPRECATED: use `summary` instead. Text reply.""", DeprecationWarning) - pulumi.log.warn("""reply is deprecated: DEPRECATED: use `summary` instead. Text reply.""") - return pulumi.get(self, "reply") @property diff --git a/sdk/python/pulumi_google_native/discoveryengine/v1alpha/schema.py b/sdk/python/pulumi_google_native/discoveryengine/v1alpha/schema.py index 7cdbc8e362..b44858926a 100644 --- a/sdk/python/pulumi_google_native/discoveryengine/v1alpha/schema.py +++ b/sdk/python/pulumi_google_native/discoveryengine/v1alpha/schema.py @@ -209,7 +209,7 @@ def _internal_init(__self__, __props__.__dict__["schema_id"] = schema_id __props__.__dict__["struct_schema"] = struct_schema __props__.__dict__["field_configs"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["collection_id", "data_store_id", "location", "project", "schema_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["collectionId", "dataStoreId", "location", "project", "schemaId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Schema, __self__).__init__( 'google-native:discoveryengine/v1alpha:Schema', diff --git a/sdk/python/pulumi_google_native/discoveryengine/v1beta/_inputs.py b/sdk/python/pulumi_google_native/discoveryengine/v1beta/_inputs.py index 99bee39408..54d352980b 100644 --- a/sdk/python/pulumi_google_native/discoveryengine/v1beta/_inputs.py +++ b/sdk/python/pulumi_google_native/discoveryengine/v1beta/_inputs.py @@ -265,13 +265,11 @@ def references(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['GoogleC @property @pulumi.getter + @_utilities.deprecated("""DEPRECATED: use `summary` instead. Text reply.""") def reply(self) -> Optional[pulumi.Input[str]]: """ DEPRECATED: use `summary` instead. Text reply. """ - warnings.warn("""DEPRECATED: use `summary` instead. Text reply.""", DeprecationWarning) - pulumi.log.warn("""reply is deprecated: DEPRECATED: use `summary` instead. Text reply.""") - return pulumi.get(self, "reply") @reply.setter diff --git a/sdk/python/pulumi_google_native/discoveryengine/v1beta/conversation.py b/sdk/python/pulumi_google_native/discoveryengine/v1beta/conversation.py index dd9b76805d..edc16e02a7 100644 --- a/sdk/python/pulumi_google_native/discoveryengine/v1beta/conversation.py +++ b/sdk/python/pulumi_google_native/discoveryengine/v1beta/conversation.py @@ -213,7 +213,7 @@ def _internal_init(__self__, __props__.__dict__["user_pseudo_id"] = user_pseudo_id __props__.__dict__["end_time"] = None __props__.__dict__["start_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["collection_id", "data_store_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["collectionId", "dataStoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Conversation, __self__).__init__( 'google-native:discoveryengine/v1beta:Conversation', diff --git a/sdk/python/pulumi_google_native/discoveryengine/v1beta/document.py b/sdk/python/pulumi_google_native/discoveryengine/v1beta/document.py index 5dee16f300..29acafcba7 100644 --- a/sdk/python/pulumi_google_native/discoveryengine/v1beta/document.py +++ b/sdk/python/pulumi_google_native/discoveryengine/v1beta/document.py @@ -306,7 +306,7 @@ def _internal_init(__self__, __props__.__dict__["schema_id"] = schema_id __props__.__dict__["struct_data"] = struct_data __props__.__dict__["derived_struct_data"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["branch_id", "collection_id", "data_store_id", "document_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["branchId", "collectionId", "dataStoreId", "documentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Document, __self__).__init__( 'google-native:discoveryengine/v1beta:Document', diff --git a/sdk/python/pulumi_google_native/discoveryengine/v1beta/outputs.py b/sdk/python/pulumi_google_native/discoveryengine/v1beta/outputs.py index 5c02c9fa76..9e3ffb7f80 100644 --- a/sdk/python/pulumi_google_native/discoveryengine/v1beta/outputs.py +++ b/sdk/python/pulumi_google_native/discoveryengine/v1beta/outputs.py @@ -301,13 +301,11 @@ def references(self) -> Sequence['outputs.GoogleCloudDiscoveryengineV1betaReplyR @property @pulumi.getter + @_utilities.deprecated("""DEPRECATED: use `summary` instead. Text reply.""") def reply(self) -> str: """ DEPRECATED: use `summary` instead. Text reply. """ - warnings.warn("""DEPRECATED: use `summary` instead. Text reply.""", DeprecationWarning) - pulumi.log.warn("""reply is deprecated: DEPRECATED: use `summary` instead. Text reply.""") - return pulumi.get(self, "reply") @property diff --git a/sdk/python/pulumi_google_native/discoveryengine/v1beta/schema.py b/sdk/python/pulumi_google_native/discoveryengine/v1beta/schema.py index 1e9419adc3..b895fa71d6 100644 --- a/sdk/python/pulumi_google_native/discoveryengine/v1beta/schema.py +++ b/sdk/python/pulumi_google_native/discoveryengine/v1beta/schema.py @@ -207,7 +207,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'schema_id'") __props__.__dict__["schema_id"] = schema_id __props__.__dict__["struct_schema"] = struct_schema - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["collection_id", "data_store_id", "location", "project", "schema_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["collectionId", "dataStoreId", "location", "project", "schemaId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Schema, __self__).__init__( 'google-native:discoveryengine/v1beta:Schema', diff --git a/sdk/python/pulumi_google_native/dlp/v2/_inputs.py b/sdk/python/pulumi_google_native/dlp/v2/_inputs.py index e3f4d7edf0..e65b11cbc2 100644 --- a/sdk/python/pulumi_google_native/dlp/v2/_inputs.py +++ b/sdk/python/pulumi_google_native/dlp/v2/_inputs.py @@ -3392,13 +3392,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="contentOptions") + @_utilities.deprecated("""Deprecated and unused.""") def content_options(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['GooglePrivacyDlpV2InspectConfigContentOptionsItem']]]]: """ Deprecated and unused. """ - warnings.warn("""Deprecated and unused.""", DeprecationWarning) - pulumi.log.warn("""content_options is deprecated: Deprecated and unused.""") - return pulumi.get(self, "content_options") @content_options.setter diff --git a/sdk/python/pulumi_google_native/dlp/v2/deidentify_template.py b/sdk/python/pulumi_google_native/dlp/v2/deidentify_template.py index 3ed9e70db0..a48cf1538a 100644 --- a/sdk/python/pulumi_google_native/dlp/v2/deidentify_template.py +++ b/sdk/python/pulumi_google_native/dlp/v2/deidentify_template.py @@ -85,13 +85,11 @@ def display_name(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""Deprecated. This field has no effect.""") def location(self) -> Optional[pulumi.Input[str]]: """ Deprecated. This field has no effect. """ - warnings.warn("""Deprecated. This field has no effect.""", DeprecationWarning) - pulumi.log.warn("""location is deprecated: Deprecated. This field has no effect.""") - return pulumi.get(self, "location") @location.setter diff --git a/sdk/python/pulumi_google_native/dlp/v2/dlp_job.py b/sdk/python/pulumi_google_native/dlp/v2/dlp_job.py index 6c947aea2e..3ddc385480 100644 --- a/sdk/python/pulumi_google_native/dlp/v2/dlp_job.py +++ b/sdk/python/pulumi_google_native/dlp/v2/dlp_job.py @@ -69,13 +69,11 @@ def job_id(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""Deprecated. This field has no effect.""") def location(self) -> Optional[pulumi.Input[str]]: """ Deprecated. This field has no effect. """ - warnings.warn("""Deprecated. This field has no effect.""", DeprecationWarning) - pulumi.log.warn("""location is deprecated: Deprecated. This field has no effect.""") - return pulumi.get(self, "location") @location.setter diff --git a/sdk/python/pulumi_google_native/dlp/v2/inspect_template.py b/sdk/python/pulumi_google_native/dlp/v2/inspect_template.py index 47df7ef6a7..de696c1e4c 100644 --- a/sdk/python/pulumi_google_native/dlp/v2/inspect_template.py +++ b/sdk/python/pulumi_google_native/dlp/v2/inspect_template.py @@ -85,13 +85,11 @@ def inspect_config(self, value: Optional[pulumi.Input['GooglePrivacyDlpV2Inspect @property @pulumi.getter + @_utilities.deprecated("""Deprecated. This field has no effect.""") def location(self) -> Optional[pulumi.Input[str]]: """ Deprecated. This field has no effect. """ - warnings.warn("""Deprecated. This field has no effect.""", DeprecationWarning) - pulumi.log.warn("""location is deprecated: Deprecated. This field has no effect.""") - return pulumi.get(self, "location") @location.setter diff --git a/sdk/python/pulumi_google_native/dlp/v2/job_trigger.py b/sdk/python/pulumi_google_native/dlp/v2/job_trigger.py index a3c744bc42..36dd3a21d2 100644 --- a/sdk/python/pulumi_google_native/dlp/v2/job_trigger.py +++ b/sdk/python/pulumi_google_native/dlp/v2/job_trigger.py @@ -108,13 +108,11 @@ def inspect_job(self, value: Optional[pulumi.Input['GooglePrivacyDlpV2InspectJob @property @pulumi.getter + @_utilities.deprecated("""Deprecated. This field has no effect.""") def location(self) -> Optional[pulumi.Input[str]]: """ Deprecated. This field has no effect. """ - warnings.warn("""Deprecated. This field has no effect.""", DeprecationWarning) - pulumi.log.warn("""location is deprecated: Deprecated. This field has no effect.""") - return pulumi.get(self, "location") @location.setter diff --git a/sdk/python/pulumi_google_native/dlp/v2/organization_discovery_config.py b/sdk/python/pulumi_google_native/dlp/v2/organization_discovery_config.py index 12d453ab50..b1b94e51e7 100644 --- a/sdk/python/pulumi_google_native/dlp/v2/organization_discovery_config.py +++ b/sdk/python/pulumi_google_native/dlp/v2/organization_discovery_config.py @@ -265,7 +265,7 @@ def _internal_init(__self__, __props__.__dict__["errors"] = None __props__.__dict__["last_run_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationDiscoveryConfig, __self__).__init__( 'google-native:dlp/v2:OrganizationDiscoveryConfig', diff --git a/sdk/python/pulumi_google_native/dlp/v2/organization_inspect_template.py b/sdk/python/pulumi_google_native/dlp/v2/organization_inspect_template.py index b9cc9902a1..9aa2e6078f 100644 --- a/sdk/python/pulumi_google_native/dlp/v2/organization_inspect_template.py +++ b/sdk/python/pulumi_google_native/dlp/v2/organization_inspect_template.py @@ -93,13 +93,11 @@ def inspect_config(self, value: Optional[pulumi.Input['GooglePrivacyDlpV2Inspect @property @pulumi.getter + @_utilities.deprecated("""Deprecated. This field has no effect.""") def location(self) -> Optional[pulumi.Input[str]]: """ Deprecated. This field has no effect. """ - warnings.warn("""Deprecated. This field has no effect.""", DeprecationWarning) - pulumi.log.warn("""location is deprecated: Deprecated. This field has no effect.""") - return pulumi.get(self, "location") @location.setter @@ -194,7 +192,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationInspectTemplate, __self__).__init__( 'google-native:dlp/v2:OrganizationInspectTemplate', diff --git a/sdk/python/pulumi_google_native/dlp/v2/organization_job_trigger.py b/sdk/python/pulumi_google_native/dlp/v2/organization_job_trigger.py index cc93571ebf..05375718ec 100644 --- a/sdk/python/pulumi_google_native/dlp/v2/organization_job_trigger.py +++ b/sdk/python/pulumi_google_native/dlp/v2/organization_job_trigger.py @@ -116,13 +116,11 @@ def inspect_job(self, value: Optional[pulumi.Input['GooglePrivacyDlpV2InspectJob @property @pulumi.getter + @_utilities.deprecated("""Deprecated. This field has no effect.""") def location(self) -> Optional[pulumi.Input[str]]: """ Deprecated. This field has no effect. """ - warnings.warn("""Deprecated. This field has no effect.""", DeprecationWarning) - pulumi.log.warn("""location is deprecated: Deprecated. This field has no effect.""") - return pulumi.get(self, "location") @location.setter @@ -256,7 +254,7 @@ def _internal_init(__self__, __props__.__dict__["errors"] = None __props__.__dict__["last_run_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationJobTrigger, __self__).__init__( 'google-native:dlp/v2:OrganizationJobTrigger', diff --git a/sdk/python/pulumi_google_native/dlp/v2/organizations_deidentify_template.py b/sdk/python/pulumi_google_native/dlp/v2/organizations_deidentify_template.py index cb32f4d794..fb4cb7566e 100644 --- a/sdk/python/pulumi_google_native/dlp/v2/organizations_deidentify_template.py +++ b/sdk/python/pulumi_google_native/dlp/v2/organizations_deidentify_template.py @@ -93,13 +93,11 @@ def display_name(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""Deprecated. This field has no effect.""") def location(self) -> Optional[pulumi.Input[str]]: """ Deprecated. This field has no effect. """ - warnings.warn("""Deprecated. This field has no effect.""", DeprecationWarning) - pulumi.log.warn("""location is deprecated: Deprecated. This field has no effect.""") - return pulumi.get(self, "location") @location.setter @@ -194,7 +192,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationsDeidentifyTemplate, __self__).__init__( 'google-native:dlp/v2:OrganizationsDeidentifyTemplate', diff --git a/sdk/python/pulumi_google_native/dlp/v2/outputs.py b/sdk/python/pulumi_google_native/dlp/v2/outputs.py index 39cafac7ae..6fff6be6ea 100644 --- a/sdk/python/pulumi_google_native/dlp/v2/outputs.py +++ b/sdk/python/pulumi_google_native/dlp/v2/outputs.py @@ -4584,13 +4584,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="contentOptions") + @_utilities.deprecated("""Deprecated and unused.""") def content_options(self) -> Sequence[str]: """ Deprecated and unused. """ - warnings.warn("""Deprecated and unused.""", DeprecationWarning) - pulumi.log.warn("""content_options is deprecated: Deprecated and unused.""") - return pulumi.get(self, "content_options") @property diff --git a/sdk/python/pulumi_google_native/dlp/v2/stored_info_type.py b/sdk/python/pulumi_google_native/dlp/v2/stored_info_type.py index 8ff6efe314..f8bc819b40 100644 --- a/sdk/python/pulumi_google_native/dlp/v2/stored_info_type.py +++ b/sdk/python/pulumi_google_native/dlp/v2/stored_info_type.py @@ -51,13 +51,11 @@ def config(self, value: pulumi.Input['GooglePrivacyDlpV2StoredInfoTypeConfigArgs @property @pulumi.getter + @_utilities.deprecated("""Deprecated. This field has no effect.""") def location(self) -> Optional[pulumi.Input[str]]: """ Deprecated. This field has no effect. """ - warnings.warn("""Deprecated. This field has no effect.""", DeprecationWarning) - pulumi.log.warn("""location is deprecated: Deprecated. This field has no effect.""") - return pulumi.get(self, "location") @location.setter diff --git a/sdk/python/pulumi_google_native/dns/v1/change.py b/sdk/python/pulumi_google_native/dns/v1/change.py index 369722358a..b2c8caa374 100644 --- a/sdk/python/pulumi_google_native/dns/v1/change.py +++ b/sdk/python/pulumi_google_native/dns/v1/change.py @@ -201,7 +201,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["start_time"] = None __props__.__dict__["status"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["managed_zone", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["managedZone", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Change, __self__).__init__( 'google-native:dns/v1:Change', diff --git a/sdk/python/pulumi_google_native/dns/v1/managed_zone_iam_policy.py b/sdk/python/pulumi_google_native/dns/v1/managed_zone_iam_policy.py index 519d5b32da..25e505a451 100644 --- a/sdk/python/pulumi_google_native/dns/v1/managed_zone_iam_policy.py +++ b/sdk/python/pulumi_google_native/dns/v1/managed_zone_iam_policy.py @@ -202,7 +202,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["managed_zone", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["managedZone", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ManagedZoneIamPolicy, __self__).__init__( 'google-native:dns/v1:ManagedZoneIamPolicy', diff --git a/sdk/python/pulumi_google_native/dns/v1/resource_record_set.py b/sdk/python/pulumi_google_native/dns/v1/resource_record_set.py index aaa8fcd3ee..5b545a633d 100644 --- a/sdk/python/pulumi_google_native/dns/v1/resource_record_set.py +++ b/sdk/python/pulumi_google_native/dns/v1/resource_record_set.py @@ -253,7 +253,7 @@ def _internal_init(__self__, __props__.__dict__["signature_rrdatas"] = signature_rrdatas __props__.__dict__["ttl"] = ttl __props__.__dict__["type"] = type - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["managed_zone", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["managedZone", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ResourceRecordSet, __self__).__init__( 'google-native:dns/v1:ResourceRecordSet', diff --git a/sdk/python/pulumi_google_native/dns/v1beta2/change.py b/sdk/python/pulumi_google_native/dns/v1beta2/change.py index 7786f74c15..a84e09839a 100644 --- a/sdk/python/pulumi_google_native/dns/v1beta2/change.py +++ b/sdk/python/pulumi_google_native/dns/v1beta2/change.py @@ -201,7 +201,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["start_time"] = None __props__.__dict__["status"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["managed_zone", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["managedZone", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Change, __self__).__init__( 'google-native:dns/v1beta2:Change', diff --git a/sdk/python/pulumi_google_native/dns/v1beta2/managed_zone_iam_policy.py b/sdk/python/pulumi_google_native/dns/v1beta2/managed_zone_iam_policy.py index 4241d41a04..190ef65221 100644 --- a/sdk/python/pulumi_google_native/dns/v1beta2/managed_zone_iam_policy.py +++ b/sdk/python/pulumi_google_native/dns/v1beta2/managed_zone_iam_policy.py @@ -202,7 +202,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["managed_zone", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["managedZone", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ManagedZoneIamPolicy, __self__).__init__( 'google-native:dns/v1beta2:ManagedZoneIamPolicy', diff --git a/sdk/python/pulumi_google_native/dns/v1beta2/resource_record_set.py b/sdk/python/pulumi_google_native/dns/v1beta2/resource_record_set.py index 6c3e1fe8c5..f21a9615d4 100644 --- a/sdk/python/pulumi_google_native/dns/v1beta2/resource_record_set.py +++ b/sdk/python/pulumi_google_native/dns/v1beta2/resource_record_set.py @@ -253,7 +253,7 @@ def _internal_init(__self__, __props__.__dict__["signature_rrdatas"] = signature_rrdatas __props__.__dict__["ttl"] = ttl __props__.__dict__["type"] = type - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["managed_zone", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["managedZone", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ResourceRecordSet, __self__).__init__( 'google-native:dns/v1beta2:ResourceRecordSet', diff --git a/sdk/python/pulumi_google_native/dns/v1beta2/response_policy_rule.py b/sdk/python/pulumi_google_native/dns/v1beta2/response_policy_rule.py index 4d24fd413e..fac2d74a94 100644 --- a/sdk/python/pulumi_google_native/dns/v1beta2/response_policy_rule.py +++ b/sdk/python/pulumi_google_native/dns/v1beta2/response_policy_rule.py @@ -215,7 +215,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'response_policy'") __props__.__dict__["response_policy"] = response_policy __props__.__dict__["rule_name"] = rule_name - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "response_policy"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "responsePolicy"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ResponsePolicyRule, __self__).__init__( 'google-native:dns/v1beta2:ResponsePolicyRule', diff --git a/sdk/python/pulumi_google_native/domains/v1/_inputs.py b/sdk/python/pulumi_google_native/domains/v1/_inputs.py index b5c7b21a36..eefd04b02c 100644 --- a/sdk/python/pulumi_google_native/domains/v1/_inputs.py +++ b/sdk/python/pulumi_google_native/domains/v1/_inputs.py @@ -387,13 +387,11 @@ def glue_records(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['GlueR @property @pulumi.getter(name="googleDomainsDns") + @_utilities.deprecated("""Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/).""") def google_domains_dns(self) -> Optional[pulumi.Input['GoogleDomainsDnsArgs']]: """ Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/). """ - warnings.warn("""Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/).""", DeprecationWarning) - pulumi.log.warn("""google_domains_dns is deprecated: Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/).""") - return pulumi.get(self, "google_domains_dns") @google_domains_dns.setter diff --git a/sdk/python/pulumi_google_native/domains/v1/get_registration.py b/sdk/python/pulumi_google_native/domains/v1/get_registration.py index 8af1e5ec96..500b039ea8 100644 --- a/sdk/python/pulumi_google_native/domains/v1/get_registration.py +++ b/sdk/python/pulumi_google_native/domains/v1/get_registration.py @@ -169,13 +169,11 @@ def supported_privacy(self) -> Sequence[str]: @property @pulumi.getter(name="transferFailureReason") + @_utilities.deprecated("""Output only. Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state.""") def transfer_failure_reason(self) -> str: """ Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state. """ - warnings.warn("""Output only. Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state.""", DeprecationWarning) - pulumi.log.warn("""transfer_failure_reason is deprecated: Output only. Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state.""") - return pulumi.get(self, "transfer_failure_reason") diff --git a/sdk/python/pulumi_google_native/domains/v1/outputs.py b/sdk/python/pulumi_google_native/domains/v1/outputs.py index cc8793edf8..c7b61c6b72 100644 --- a/sdk/python/pulumi_google_native/domains/v1/outputs.py +++ b/sdk/python/pulumi_google_native/domains/v1/outputs.py @@ -435,13 +435,11 @@ def glue_records(self) -> Sequence['outputs.GlueRecordResponse']: @property @pulumi.getter(name="googleDomainsDns") + @_utilities.deprecated("""Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/).""") def google_domains_dns(self) -> 'outputs.GoogleDomainsDnsResponse': """ Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/). """ - warnings.warn("""Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/).""", DeprecationWarning) - pulumi.log.warn("""google_domains_dns is deprecated: Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/).""") - return pulumi.get(self, "google_domains_dns") diff --git a/sdk/python/pulumi_google_native/domains/v1/registration.py b/sdk/python/pulumi_google_native/domains/v1/registration.py index c3a3360b48..6891b0263e 100644 --- a/sdk/python/pulumi_google_native/domains/v1/registration.py +++ b/sdk/python/pulumi_google_native/domains/v1/registration.py @@ -449,12 +449,10 @@ def supported_privacy(self) -> pulumi.Output[Sequence[str]]: @property @pulumi.getter(name="transferFailureReason") + @_utilities.deprecated("""Output only. Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state.""") def transfer_failure_reason(self) -> pulumi.Output[str]: """ Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state. """ - warnings.warn("""Output only. Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state.""", DeprecationWarning) - pulumi.log.warn("""transfer_failure_reason is deprecated: Output only. Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state.""") - return pulumi.get(self, "transfer_failure_reason") diff --git a/sdk/python/pulumi_google_native/domains/v1/registration_iam_policy.py b/sdk/python/pulumi_google_native/domains/v1/registration_iam_policy.py index 0ed81ff82e..4440b77fdb 100644 --- a/sdk/python/pulumi_google_native/domains/v1/registration_iam_policy.py +++ b/sdk/python/pulumi_google_native/domains/v1/registration_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["registration_id"] = registration_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "registration_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "registrationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RegistrationIamPolicy, __self__).__init__( 'google-native:domains/v1:RegistrationIamPolicy', diff --git a/sdk/python/pulumi_google_native/domains/v1alpha2/_inputs.py b/sdk/python/pulumi_google_native/domains/v1alpha2/_inputs.py index b5c7b21a36..eefd04b02c 100644 --- a/sdk/python/pulumi_google_native/domains/v1alpha2/_inputs.py +++ b/sdk/python/pulumi_google_native/domains/v1alpha2/_inputs.py @@ -387,13 +387,11 @@ def glue_records(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['GlueR @property @pulumi.getter(name="googleDomainsDns") + @_utilities.deprecated("""Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/).""") def google_domains_dns(self) -> Optional[pulumi.Input['GoogleDomainsDnsArgs']]: """ Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/). """ - warnings.warn("""Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/).""", DeprecationWarning) - pulumi.log.warn("""google_domains_dns is deprecated: Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/).""") - return pulumi.get(self, "google_domains_dns") @google_domains_dns.setter diff --git a/sdk/python/pulumi_google_native/domains/v1alpha2/get_registration.py b/sdk/python/pulumi_google_native/domains/v1alpha2/get_registration.py index 6a9e4c3078..d1b811960f 100644 --- a/sdk/python/pulumi_google_native/domains/v1alpha2/get_registration.py +++ b/sdk/python/pulumi_google_native/domains/v1alpha2/get_registration.py @@ -169,13 +169,11 @@ def supported_privacy(self) -> Sequence[str]: @property @pulumi.getter(name="transferFailureReason") + @_utilities.deprecated("""Output only. Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state.""") def transfer_failure_reason(self) -> str: """ Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state. """ - warnings.warn("""Output only. Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state.""", DeprecationWarning) - pulumi.log.warn("""transfer_failure_reason is deprecated: Output only. Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state.""") - return pulumi.get(self, "transfer_failure_reason") diff --git a/sdk/python/pulumi_google_native/domains/v1alpha2/outputs.py b/sdk/python/pulumi_google_native/domains/v1alpha2/outputs.py index cc8793edf8..c7b61c6b72 100644 --- a/sdk/python/pulumi_google_native/domains/v1alpha2/outputs.py +++ b/sdk/python/pulumi_google_native/domains/v1alpha2/outputs.py @@ -435,13 +435,11 @@ def glue_records(self) -> Sequence['outputs.GlueRecordResponse']: @property @pulumi.getter(name="googleDomainsDns") + @_utilities.deprecated("""Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/).""") def google_domains_dns(self) -> 'outputs.GoogleDomainsDnsResponse': """ Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/). """ - warnings.warn("""Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/).""", DeprecationWarning) - pulumi.log.warn("""google_domains_dns is deprecated: Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/).""") - return pulumi.get(self, "google_domains_dns") diff --git a/sdk/python/pulumi_google_native/domains/v1alpha2/registration.py b/sdk/python/pulumi_google_native/domains/v1alpha2/registration.py index fe878e6278..3e7c66f8ef 100644 --- a/sdk/python/pulumi_google_native/domains/v1alpha2/registration.py +++ b/sdk/python/pulumi_google_native/domains/v1alpha2/registration.py @@ -449,12 +449,10 @@ def supported_privacy(self) -> pulumi.Output[Sequence[str]]: @property @pulumi.getter(name="transferFailureReason") + @_utilities.deprecated("""Output only. Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state.""") def transfer_failure_reason(self) -> pulumi.Output[str]: """ Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state. """ - warnings.warn("""Output only. Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state.""", DeprecationWarning) - pulumi.log.warn("""transfer_failure_reason is deprecated: Output only. Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state.""") - return pulumi.get(self, "transfer_failure_reason") diff --git a/sdk/python/pulumi_google_native/domains/v1alpha2/registration_iam_policy.py b/sdk/python/pulumi_google_native/domains/v1alpha2/registration_iam_policy.py index 4af2d82078..8078006c02 100644 --- a/sdk/python/pulumi_google_native/domains/v1alpha2/registration_iam_policy.py +++ b/sdk/python/pulumi_google_native/domains/v1alpha2/registration_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["registration_id"] = registration_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "registration_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "registrationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RegistrationIamPolicy, __self__).__init__( 'google-native:domains/v1alpha2:RegistrationIamPolicy', diff --git a/sdk/python/pulumi_google_native/domains/v1beta1/_inputs.py b/sdk/python/pulumi_google_native/domains/v1beta1/_inputs.py index b5c7b21a36..eefd04b02c 100644 --- a/sdk/python/pulumi_google_native/domains/v1beta1/_inputs.py +++ b/sdk/python/pulumi_google_native/domains/v1beta1/_inputs.py @@ -387,13 +387,11 @@ def glue_records(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['GlueR @property @pulumi.getter(name="googleDomainsDns") + @_utilities.deprecated("""Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/).""") def google_domains_dns(self) -> Optional[pulumi.Input['GoogleDomainsDnsArgs']]: """ Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/). """ - warnings.warn("""Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/).""", DeprecationWarning) - pulumi.log.warn("""google_domains_dns is deprecated: Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/).""") - return pulumi.get(self, "google_domains_dns") @google_domains_dns.setter diff --git a/sdk/python/pulumi_google_native/domains/v1beta1/get_registration.py b/sdk/python/pulumi_google_native/domains/v1beta1/get_registration.py index 06d215748c..fe89b6e14e 100644 --- a/sdk/python/pulumi_google_native/domains/v1beta1/get_registration.py +++ b/sdk/python/pulumi_google_native/domains/v1beta1/get_registration.py @@ -169,13 +169,11 @@ def supported_privacy(self) -> Sequence[str]: @property @pulumi.getter(name="transferFailureReason") + @_utilities.deprecated("""Output only. Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state.""") def transfer_failure_reason(self) -> str: """ Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state. """ - warnings.warn("""Output only. Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state.""", DeprecationWarning) - pulumi.log.warn("""transfer_failure_reason is deprecated: Output only. Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state.""") - return pulumi.get(self, "transfer_failure_reason") diff --git a/sdk/python/pulumi_google_native/domains/v1beta1/outputs.py b/sdk/python/pulumi_google_native/domains/v1beta1/outputs.py index cc8793edf8..c7b61c6b72 100644 --- a/sdk/python/pulumi_google_native/domains/v1beta1/outputs.py +++ b/sdk/python/pulumi_google_native/domains/v1beta1/outputs.py @@ -435,13 +435,11 @@ def glue_records(self) -> Sequence['outputs.GlueRecordResponse']: @property @pulumi.getter(name="googleDomainsDns") + @_utilities.deprecated("""Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/).""") def google_domains_dns(self) -> 'outputs.GoogleDomainsDnsResponse': """ Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/). """ - warnings.warn("""Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/).""", DeprecationWarning) - pulumi.log.warn("""google_domains_dns is deprecated: Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The free DNS zone provided by [Google Domains](https://domains.google/).""") - return pulumi.get(self, "google_domains_dns") diff --git a/sdk/python/pulumi_google_native/domains/v1beta1/registration.py b/sdk/python/pulumi_google_native/domains/v1beta1/registration.py index 5f482e3127..5de009267f 100644 --- a/sdk/python/pulumi_google_native/domains/v1beta1/registration.py +++ b/sdk/python/pulumi_google_native/domains/v1beta1/registration.py @@ -449,12 +449,10 @@ def supported_privacy(self) -> pulumi.Output[Sequence[str]]: @property @pulumi.getter(name="transferFailureReason") + @_utilities.deprecated("""Output only. Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state.""") def transfer_failure_reason(self) -> pulumi.Output[str]: """ Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state. """ - warnings.warn("""Output only. Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state.""", DeprecationWarning) - pulumi.log.warn("""transfer_failure_reason is deprecated: Output only. Deprecated: For more information, see [Cloud Domains feature deprecation](https://cloud.google.com/domains/docs/deprecations/feature-deprecations) The reason the domain transfer failed. Only set for domains in TRANSFER_FAILED state.""") - return pulumi.get(self, "transfer_failure_reason") diff --git a/sdk/python/pulumi_google_native/domains/v1beta1/registration_iam_policy.py b/sdk/python/pulumi_google_native/domains/v1beta1/registration_iam_policy.py index 7fa7ed771c..5bbeaabb50 100644 --- a/sdk/python/pulumi_google_native/domains/v1beta1/registration_iam_policy.py +++ b/sdk/python/pulumi_google_native/domains/v1beta1/registration_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["registration_id"] = registration_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "registration_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "registrationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RegistrationIamPolicy, __self__).__init__( 'google-native:domains/v1beta1:RegistrationIamPolicy', diff --git a/sdk/python/pulumi_google_native/essentialcontacts/v1/folder_contact.py b/sdk/python/pulumi_google_native/essentialcontacts/v1/folder_contact.py index 342b599855..14f2bc2841 100644 --- a/sdk/python/pulumi_google_native/essentialcontacts/v1/folder_contact.py +++ b/sdk/python/pulumi_google_native/essentialcontacts/v1/folder_contact.py @@ -187,7 +187,7 @@ def _internal_init(__self__, __props__.__dict__["validate_time"] = validate_time __props__.__dict__["validation_state"] = validation_state __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folder_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folderId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FolderContact, __self__).__init__( 'google-native:essentialcontacts/v1:FolderContact', diff --git a/sdk/python/pulumi_google_native/essentialcontacts/v1/organization_contact.py b/sdk/python/pulumi_google_native/essentialcontacts/v1/organization_contact.py index a7ebdbc180..44d5b9664f 100644 --- a/sdk/python/pulumi_google_native/essentialcontacts/v1/organization_contact.py +++ b/sdk/python/pulumi_google_native/essentialcontacts/v1/organization_contact.py @@ -187,7 +187,7 @@ def _internal_init(__self__, __props__.__dict__["validate_time"] = validate_time __props__.__dict__["validation_state"] = validation_state __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationContact, __self__).__init__( 'google-native:essentialcontacts/v1:OrganizationContact', diff --git a/sdk/python/pulumi_google_native/eventarc/v1/channel.py b/sdk/python/pulumi_google_native/eventarc/v1/channel.py index dcec8aed04..029149dfbf 100644 --- a/sdk/python/pulumi_google_native/eventarc/v1/channel.py +++ b/sdk/python/pulumi_google_native/eventarc/v1/channel.py @@ -181,7 +181,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["channel_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["channelId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Channel, __self__).__init__( 'google-native:eventarc/v1:Channel', diff --git a/sdk/python/pulumi_google_native/eventarc/v1/channel_connection.py b/sdk/python/pulumi_google_native/eventarc/v1/channel_connection.py index 939227120a..65106b4480 100644 --- a/sdk/python/pulumi_google_native/eventarc/v1/channel_connection.py +++ b/sdk/python/pulumi_google_native/eventarc/v1/channel_connection.py @@ -179,7 +179,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["channel_connection_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["channelConnectionId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ChannelConnection, __self__).__init__( 'google-native:eventarc/v1:ChannelConnection', diff --git a/sdk/python/pulumi_google_native/eventarc/v1/channel_connection_iam_policy.py b/sdk/python/pulumi_google_native/eventarc/v1/channel_connection_iam_policy.py index d7b089c11e..07763b0966 100644 --- a/sdk/python/pulumi_google_native/eventarc/v1/channel_connection_iam_policy.py +++ b/sdk/python/pulumi_google_native/eventarc/v1/channel_connection_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["channel_connection_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["channelConnectionId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ChannelConnectionIamPolicy, __self__).__init__( 'google-native:eventarc/v1:ChannelConnectionIamPolicy', diff --git a/sdk/python/pulumi_google_native/eventarc/v1/channel_iam_policy.py b/sdk/python/pulumi_google_native/eventarc/v1/channel_iam_policy.py index f2f8cc7741..5433640e02 100644 --- a/sdk/python/pulumi_google_native/eventarc/v1/channel_iam_policy.py +++ b/sdk/python/pulumi_google_native/eventarc/v1/channel_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["channel_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["channelId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ChannelIamPolicy, __self__).__init__( 'google-native:eventarc/v1:ChannelIamPolicy', diff --git a/sdk/python/pulumi_google_native/eventarc/v1/trigger.py b/sdk/python/pulumi_google_native/eventarc/v1/trigger.py index bd47b12c22..d86f671f9e 100644 --- a/sdk/python/pulumi_google_native/eventarc/v1/trigger.py +++ b/sdk/python/pulumi_google_native/eventarc/v1/trigger.py @@ -284,7 +284,7 @@ def _internal_init(__self__, __props__.__dict__["etag"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "trigger_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "triggerId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Trigger, __self__).__init__( 'google-native:eventarc/v1:Trigger', diff --git a/sdk/python/pulumi_google_native/eventarc/v1/trigger_iam_policy.py b/sdk/python/pulumi_google_native/eventarc/v1/trigger_iam_policy.py index bc51e7f064..8d26b7a200 100644 --- a/sdk/python/pulumi_google_native/eventarc/v1/trigger_iam_policy.py +++ b/sdk/python/pulumi_google_native/eventarc/v1/trigger_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["trigger_id"] = trigger_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "trigger_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "triggerId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TriggerIamPolicy, __self__).__init__( 'google-native:eventarc/v1:TriggerIamPolicy', diff --git a/sdk/python/pulumi_google_native/eventarc/v1beta1/trigger.py b/sdk/python/pulumi_google_native/eventarc/v1beta1/trigger.py index aed9901b8d..b74811d597 100644 --- a/sdk/python/pulumi_google_native/eventarc/v1beta1/trigger.py +++ b/sdk/python/pulumi_google_native/eventarc/v1beta1/trigger.py @@ -223,7 +223,7 @@ def _internal_init(__self__, __props__.__dict__["etag"] = None __props__.__dict__["transport"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "trigger_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "triggerId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Trigger, __self__).__init__( 'google-native:eventarc/v1beta1:Trigger', diff --git a/sdk/python/pulumi_google_native/eventarc/v1beta1/trigger_iam_policy.py b/sdk/python/pulumi_google_native/eventarc/v1beta1/trigger_iam_policy.py index a173cbf319..c86a6d6cbc 100644 --- a/sdk/python/pulumi_google_native/eventarc/v1beta1/trigger_iam_policy.py +++ b/sdk/python/pulumi_google_native/eventarc/v1beta1/trigger_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["trigger_id"] = trigger_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "trigger_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "triggerId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TriggerIamPolicy, __self__).__init__( 'google-native:eventarc/v1beta1:TriggerIamPolicy', diff --git a/sdk/python/pulumi_google_native/file/v1/backup.py b/sdk/python/pulumi_google_native/file/v1/backup.py index 4e6d7a9b57..23a10fbc8a 100644 --- a/sdk/python/pulumi_google_native/file/v1/backup.py +++ b/sdk/python/pulumi_google_native/file/v1/backup.py @@ -226,7 +226,7 @@ def _internal_init(__self__, __props__.__dict__["source_instance_tier"] = None __props__.__dict__["state"] = None __props__.__dict__["storage_bytes"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Backup, __self__).__init__( 'google-native:file/v1:Backup', diff --git a/sdk/python/pulumi_google_native/file/v1/instance.py b/sdk/python/pulumi_google_native/file/v1/instance.py index 41b2fc1757..8042250b28 100644 --- a/sdk/python/pulumi_google_native/file/v1/instance.py +++ b/sdk/python/pulumi_google_native/file/v1/instance.py @@ -267,7 +267,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["status_message"] = None __props__.__dict__["suspension_reasons"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Instance, __self__).__init__( 'google-native:file/v1:Instance', diff --git a/sdk/python/pulumi_google_native/file/v1/snapshot.py b/sdk/python/pulumi_google_native/file/v1/snapshot.py index 54c965afa6..7d01798e15 100644 --- a/sdk/python/pulumi_google_native/file/v1/snapshot.py +++ b/sdk/python/pulumi_google_native/file/v1/snapshot.py @@ -177,7 +177,7 @@ def _internal_init(__self__, __props__.__dict__["filesystem_used_bytes"] = None __props__.__dict__["name"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "location", "project", "snapshot_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "location", "project", "snapshotId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Snapshot, __self__).__init__( 'google-native:file/v1:Snapshot', diff --git a/sdk/python/pulumi_google_native/file/v1beta1/backup.py b/sdk/python/pulumi_google_native/file/v1beta1/backup.py index cd391b69bb..145675f0ca 100644 --- a/sdk/python/pulumi_google_native/file/v1beta1/backup.py +++ b/sdk/python/pulumi_google_native/file/v1beta1/backup.py @@ -226,7 +226,7 @@ def _internal_init(__self__, __props__.__dict__["source_instance_tier"] = None __props__.__dict__["state"] = None __props__.__dict__["storage_bytes"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Backup, __self__).__init__( 'google-native:file/v1beta1:Backup', diff --git a/sdk/python/pulumi_google_native/file/v1beta1/instance.py b/sdk/python/pulumi_google_native/file/v1beta1/instance.py index 0a947b3d2c..fa4c12cf26 100644 --- a/sdk/python/pulumi_google_native/file/v1beta1/instance.py +++ b/sdk/python/pulumi_google_native/file/v1beta1/instance.py @@ -369,7 +369,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["status_message"] = None __props__.__dict__["suspension_reasons"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Instance, __self__).__init__( 'google-native:file/v1beta1:Instance', diff --git a/sdk/python/pulumi_google_native/file/v1beta1/share.py b/sdk/python/pulumi_google_native/file/v1beta1/share.py index d4c82cd2d8..47d2ae480b 100644 --- a/sdk/python/pulumi_google_native/file/v1beta1/share.py +++ b/sdk/python/pulumi_google_native/file/v1beta1/share.py @@ -259,7 +259,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "location", "project", "share_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "location", "project", "shareId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Share, __self__).__init__( 'google-native:file/v1beta1:Share', diff --git a/sdk/python/pulumi_google_native/file/v1beta1/snapshot.py b/sdk/python/pulumi_google_native/file/v1beta1/snapshot.py index c827b885b6..7abbb91a5e 100644 --- a/sdk/python/pulumi_google_native/file/v1beta1/snapshot.py +++ b/sdk/python/pulumi_google_native/file/v1beta1/snapshot.py @@ -177,7 +177,7 @@ def _internal_init(__self__, __props__.__dict__["filesystem_used_bytes"] = None __props__.__dict__["name"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "location", "project", "snapshot_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "location", "project", "snapshotId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Snapshot, __self__).__init__( 'google-native:file/v1beta1:Snapshot', diff --git a/sdk/python/pulumi_google_native/firebaseappcheck/v1/debug_token.py b/sdk/python/pulumi_google_native/firebaseappcheck/v1/debug_token.py index 357c3146f0..e2c9ec3620 100644 --- a/sdk/python/pulumi_google_native/firebaseappcheck/v1/debug_token.py +++ b/sdk/python/pulumi_google_native/firebaseappcheck/v1/debug_token.py @@ -157,7 +157,7 @@ def _internal_init(__self__, if token is None and not opts.urn: raise TypeError("Missing required property 'token'") __props__.__dict__["token"] = token - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["app_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["appId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DebugToken, __self__).__init__( 'google-native:firebaseappcheck/v1:DebugToken', diff --git a/sdk/python/pulumi_google_native/firebaseappcheck/v1beta/debug_token.py b/sdk/python/pulumi_google_native/firebaseappcheck/v1beta/debug_token.py index dad38c9048..46a9e82d47 100644 --- a/sdk/python/pulumi_google_native/firebaseappcheck/v1beta/debug_token.py +++ b/sdk/python/pulumi_google_native/firebaseappcheck/v1beta/debug_token.py @@ -157,7 +157,7 @@ def _internal_init(__self__, if token is None and not opts.urn: raise TypeError("Missing required property 'token'") __props__.__dict__["token"] = token - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["app_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["appId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DebugToken, __self__).__init__( 'google-native:firebaseappcheck/v1beta:DebugToken', diff --git a/sdk/python/pulumi_google_native/firebasehosting/v1beta1/channel.py b/sdk/python/pulumi_google_native/firebasehosting/v1beta1/channel.py index d63575451e..9dca5c88b2 100644 --- a/sdk/python/pulumi_google_native/firebasehosting/v1beta1/channel.py +++ b/sdk/python/pulumi_google_native/firebasehosting/v1beta1/channel.py @@ -221,7 +221,7 @@ def _internal_init(__self__, __props__.__dict__["release"] = None __props__.__dict__["update_time"] = None __props__.__dict__["url"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["channel_id", "project", "site_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["channelId", "project", "siteId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Channel, __self__).__init__( 'google-native:firebasehosting/v1beta1:Channel', diff --git a/sdk/python/pulumi_google_native/firebasehosting/v1beta1/custom_domain.py b/sdk/python/pulumi_google_native/firebasehosting/v1beta1/custom_domain.py index 8d4c446bc6..42b20bd66d 100644 --- a/sdk/python/pulumi_google_native/firebasehosting/v1beta1/custom_domain.py +++ b/sdk/python/pulumi_google_native/firebasehosting/v1beta1/custom_domain.py @@ -212,7 +212,7 @@ def _internal_init(__self__, __props__.__dict__["reconciling"] = None __props__.__dict__["required_dns_updates"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["custom_domain_id", "project", "site_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["customDomainId", "project", "siteId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CustomDomain, __self__).__init__( 'google-native:firebasehosting/v1beta1:CustomDomain', diff --git a/sdk/python/pulumi_google_native/firebasehosting/v1beta1/domain.py b/sdk/python/pulumi_google_native/firebasehosting/v1beta1/domain.py index 83c83cd660..c3f2efc0a3 100644 --- a/sdk/python/pulumi_google_native/firebasehosting/v1beta1/domain.py +++ b/sdk/python/pulumi_google_native/firebasehosting/v1beta1/domain.py @@ -165,7 +165,7 @@ def _internal_init(__self__, __props__.__dict__["provisioning"] = None __props__.__dict__["status"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "site_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "siteId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Domain, __self__).__init__( 'google-native:firebasehosting/v1beta1:Domain', diff --git a/sdk/python/pulumi_google_native/firebasehosting/v1beta1/release.py b/sdk/python/pulumi_google_native/firebasehosting/v1beta1/release.py index 0e37e4e624..483a9d035e 100644 --- a/sdk/python/pulumi_google_native/firebasehosting/v1beta1/release.py +++ b/sdk/python/pulumi_google_native/firebasehosting/v1beta1/release.py @@ -183,7 +183,7 @@ def _internal_init(__self__, __props__.__dict__["release_time"] = None __props__.__dict__["release_user"] = None __props__.__dict__["version"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["channel_id", "project", "site_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["channelId", "project", "siteId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Release, __self__).__init__( 'google-native:firebasehosting/v1beta1:Release', diff --git a/sdk/python/pulumi_google_native/firebasehosting/v1beta1/site.py b/sdk/python/pulumi_google_native/firebasehosting/v1beta1/site.py index 6110961e60..c0949ba5e0 100644 --- a/sdk/python/pulumi_google_native/firebasehosting/v1beta1/site.py +++ b/sdk/python/pulumi_google_native/firebasehosting/v1beta1/site.py @@ -145,7 +145,7 @@ def _internal_init(__self__, __props__.__dict__["default_url"] = None __props__.__dict__["name"] = None __props__.__dict__["type"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "site_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "siteId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Site, __self__).__init__( 'google-native:firebasehosting/v1beta1:Site', diff --git a/sdk/python/pulumi_google_native/firebasehosting/v1beta1/version.py b/sdk/python/pulumi_google_native/firebasehosting/v1beta1/version.py index 4695fbc8cc..2bcc0f0de8 100644 --- a/sdk/python/pulumi_google_native/firebasehosting/v1beta1/version.py +++ b/sdk/python/pulumi_google_native/firebasehosting/v1beta1/version.py @@ -207,7 +207,7 @@ def _internal_init(__self__, __props__.__dict__["finalize_user"] = None __props__.__dict__["status"] = None __props__.__dict__["version_bytes"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "site_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "siteId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Version, __self__).__init__( 'google-native:firebasehosting/v1beta1:Version', diff --git a/sdk/python/pulumi_google_native/firestore/v1/backup_schedule.py b/sdk/python/pulumi_google_native/firestore/v1/backup_schedule.py index bd110b0c4e..99b0dc58a1 100644 --- a/sdk/python/pulumi_google_native/firestore/v1/backup_schedule.py +++ b/sdk/python/pulumi_google_native/firestore/v1/backup_schedule.py @@ -163,7 +163,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["database_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["databaseId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(BackupSchedule, __self__).__init__( 'google-native:firestore/v1:BackupSchedule', diff --git a/sdk/python/pulumi_google_native/firestore/v1/database.py b/sdk/python/pulumi_google_native/firestore/v1/database.py index 7fdfa35bcd..24e3229f53 100644 --- a/sdk/python/pulumi_google_native/firestore/v1/database.py +++ b/sdk/python/pulumi_google_native/firestore/v1/database.py @@ -267,7 +267,7 @@ def _internal_init(__self__, __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None __props__.__dict__["version_retention_period"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["database_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["databaseId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Database, __self__).__init__( 'google-native:firestore/v1:Database', diff --git a/sdk/python/pulumi_google_native/firestore/v1/index.py b/sdk/python/pulumi_google_native/firestore/v1/index.py index 8d5ab6a61d..9a6991d22e 100644 --- a/sdk/python/pulumi_google_native/firestore/v1/index.py +++ b/sdk/python/pulumi_google_native/firestore/v1/index.py @@ -178,7 +178,7 @@ def _internal_init(__self__, __props__.__dict__["query_scope"] = query_scope __props__.__dict__["name"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["collection_group_id", "database_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["collectionGroupId", "databaseId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Index, __self__).__init__( 'google-native:firestore/v1:Index', diff --git a/sdk/python/pulumi_google_native/firestore/v1beta1/index.py b/sdk/python/pulumi_google_native/firestore/v1beta1/index.py index 1909d44240..27c6ed7761 100644 --- a/sdk/python/pulumi_google_native/firestore/v1beta1/index.py +++ b/sdk/python/pulumi_google_native/firestore/v1beta1/index.py @@ -178,7 +178,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = name __props__.__dict__["project"] = project __props__.__dict__["state"] = state - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["database_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["databaseId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Index, __self__).__init__( 'google-native:firestore/v1beta1:Index', diff --git a/sdk/python/pulumi_google_native/firestore/v1beta2/index.py b/sdk/python/pulumi_google_native/firestore/v1beta2/index.py index 4789577173..5dcfb6f994 100644 --- a/sdk/python/pulumi_google_native/firestore/v1beta2/index.py +++ b/sdk/python/pulumi_google_native/firestore/v1beta2/index.py @@ -158,7 +158,7 @@ def _internal_init(__self__, __props__.__dict__["query_scope"] = query_scope __props__.__dict__["name"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["collection_group_id", "database_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["collectionGroupId", "databaseId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Index, __self__).__init__( 'google-native:firestore/v1beta2:Index', diff --git a/sdk/python/pulumi_google_native/gameservices/v1/game_server_deployment_iam_policy.py b/sdk/python/pulumi_google_native/gameservices/v1/game_server_deployment_iam_policy.py index 775c46cc01..8c15a80a95 100644 --- a/sdk/python/pulumi_google_native/gameservices/v1/game_server_deployment_iam_policy.py +++ b/sdk/python/pulumi_google_native/gameservices/v1/game_server_deployment_iam_policy.py @@ -237,7 +237,7 @@ def _internal_init(__self__, __props__.__dict__["rules"] = rules __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["game_server_deployment_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gameServerDeploymentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(GameServerDeploymentIamPolicy, __self__).__init__( 'google-native:gameservices/v1:GameServerDeploymentIamPolicy', diff --git a/sdk/python/pulumi_google_native/gameservices/v1beta/game_server_deployment_iam_policy.py b/sdk/python/pulumi_google_native/gameservices/v1beta/game_server_deployment_iam_policy.py index b531368b77..0c3b866d59 100644 --- a/sdk/python/pulumi_google_native/gameservices/v1beta/game_server_deployment_iam_policy.py +++ b/sdk/python/pulumi_google_native/gameservices/v1beta/game_server_deployment_iam_policy.py @@ -237,7 +237,7 @@ def _internal_init(__self__, __props__.__dict__["rules"] = rules __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["game_server_deployment_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gameServerDeploymentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(GameServerDeploymentIamPolicy, __self__).__init__( 'google-native:gameservices/v1beta:GameServerDeploymentIamPolicy', diff --git a/sdk/python/pulumi_google_native/genomics/v1alpha2/_inputs.py b/sdk/python/pulumi_google_native/genomics/v1alpha2/_inputs.py index 50ce455b0c..6b93ec7f3b 100644 --- a/sdk/python/pulumi_google_native/genomics/v1alpha2/_inputs.py +++ b/sdk/python/pulumi_google_native/genomics/v1alpha2/_inputs.py @@ -80,13 +80,11 @@ def type(self, value: pulumi.Input['DiskType']): @property @pulumi.getter(name="autoDelete") + @_utilities.deprecated("""Deprecated. Disks created by the Pipelines API will be deleted at the end of the pipeline run, regardless of what this field is set to.""") def auto_delete(self) -> Optional[pulumi.Input[bool]]: """ Deprecated. Disks created by the Pipelines API will be deleted at the end of the pipeline run, regardless of what this field is set to. """ - warnings.warn("""Deprecated. Disks created by the Pipelines API will be deleted at the end of the pipeline run, regardless of what this field is set to.""", DeprecationWarning) - pulumi.log.warn("""auto_delete is deprecated: Deprecated. Disks created by the Pipelines API will be deleted at the end of the pipeline run, regardless of what this field is set to.""") - return pulumi.get(self, "auto_delete") @auto_delete.setter diff --git a/sdk/python/pulumi_google_native/genomics/v1alpha2/outputs.py b/sdk/python/pulumi_google_native/genomics/v1alpha2/outputs.py index b3f53b5ae0..fbf7b0254e 100644 --- a/sdk/python/pulumi_google_native/genomics/v1alpha2/outputs.py +++ b/sdk/python/pulumi_google_native/genomics/v1alpha2/outputs.py @@ -75,13 +75,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="autoDelete") + @_utilities.deprecated("""Deprecated. Disks created by the Pipelines API will be deleted at the end of the pipeline run, regardless of what this field is set to.""") def auto_delete(self) -> bool: """ Deprecated. Disks created by the Pipelines API will be deleted at the end of the pipeline run, regardless of what this field is set to. """ - warnings.warn("""Deprecated. Disks created by the Pipelines API will be deleted at the end of the pipeline run, regardless of what this field is set to.""", DeprecationWarning) - pulumi.log.warn("""auto_delete is deprecated: Deprecated. Disks created by the Pipelines API will be deleted at the end of the pipeline run, regardless of what this field is set to.""") - return pulumi.get(self, "auto_delete") @property diff --git a/sdk/python/pulumi_google_native/gkebackup/v1/backup.py b/sdk/python/pulumi_google_native/gkebackup/v1/backup.py index c5cc61c302..4f352da3ea 100644 --- a/sdk/python/pulumi_google_native/gkebackup/v1/backup.py +++ b/sdk/python/pulumi_google_native/gkebackup/v1/backup.py @@ -236,7 +236,7 @@ def _internal_init(__self__, __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None __props__.__dict__["volume_count"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_plan_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupPlanId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Backup, __self__).__init__( 'google-native:gkebackup/v1:Backup', diff --git a/sdk/python/pulumi_google_native/gkebackup/v1/backup_plan.py b/sdk/python/pulumi_google_native/gkebackup/v1/backup_plan.py index 3ca667479d..51cf34576f 100644 --- a/sdk/python/pulumi_google_native/gkebackup/v1/backup_plan.py +++ b/sdk/python/pulumi_google_native/gkebackup/v1/backup_plan.py @@ -268,7 +268,7 @@ def _internal_init(__self__, __props__.__dict__["state_reason"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_plan_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupPlanId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(BackupPlan, __self__).__init__( 'google-native:gkebackup/v1:BackupPlan', diff --git a/sdk/python/pulumi_google_native/gkebackup/v1/backup_plan_backup_iam_policy.py b/sdk/python/pulumi_google_native/gkebackup/v1/backup_plan_backup_iam_policy.py index dda7ce3624..83212f4d9e 100644 --- a/sdk/python/pulumi_google_native/gkebackup/v1/backup_plan_backup_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkebackup/v1/backup_plan_backup_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "backup_plan_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "backupPlanId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(BackupPlanBackupIamPolicy, __self__).__init__( 'google-native:gkebackup/v1:BackupPlanBackupIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkebackup/v1/backup_plan_backup_volume_backup_iam_policy.py b/sdk/python/pulumi_google_native/gkebackup/v1/backup_plan_backup_volume_backup_iam_policy.py index 6139e96393..1f34cde85d 100644 --- a/sdk/python/pulumi_google_native/gkebackup/v1/backup_plan_backup_volume_backup_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkebackup/v1/backup_plan_backup_volume_backup_iam_policy.py @@ -249,7 +249,7 @@ def _internal_init(__self__, if volume_backup_id is None and not opts.urn: raise TypeError("Missing required property 'volume_backup_id'") __props__.__dict__["volume_backup_id"] = volume_backup_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "backup_plan_id", "location", "project", "volume_backup_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "backupPlanId", "location", "project", "volumeBackupId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(BackupPlanBackupVolumeBackupIamPolicy, __self__).__init__( 'google-native:gkebackup/v1:BackupPlanBackupVolumeBackupIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkebackup/v1/backup_plan_iam_policy.py b/sdk/python/pulumi_google_native/gkebackup/v1/backup_plan_iam_policy.py index 13068e22c2..b8fda51d2b 100644 --- a/sdk/python/pulumi_google_native/gkebackup/v1/backup_plan_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkebackup/v1/backup_plan_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_plan_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupPlanId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(BackupPlanIamPolicy, __self__).__init__( 'google-native:gkebackup/v1:BackupPlanIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkebackup/v1/restore.py b/sdk/python/pulumi_google_native/gkebackup/v1/restore.py index 1b9af741a3..1ea64804c9 100644 --- a/sdk/python/pulumi_google_native/gkebackup/v1/restore.py +++ b/sdk/python/pulumi_google_native/gkebackup/v1/restore.py @@ -209,7 +209,7 @@ def _internal_init(__self__, __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None __props__.__dict__["volumes_restored_count"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "restore_id", "restore_plan_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "restoreId", "restorePlanId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Restore, __self__).__init__( 'google-native:gkebackup/v1:Restore', diff --git a/sdk/python/pulumi_google_native/gkebackup/v1/restore_plan.py b/sdk/python/pulumi_google_native/gkebackup/v1/restore_plan.py index 6b08b4284b..b6c123ad14 100644 --- a/sdk/python/pulumi_google_native/gkebackup/v1/restore_plan.py +++ b/sdk/python/pulumi_google_native/gkebackup/v1/restore_plan.py @@ -230,7 +230,7 @@ def _internal_init(__self__, __props__.__dict__["state_reason"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "restore_plan_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "restorePlanId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RestorePlan, __self__).__init__( 'google-native:gkebackup/v1:RestorePlan', diff --git a/sdk/python/pulumi_google_native/gkebackup/v1/restore_plan_iam_policy.py b/sdk/python/pulumi_google_native/gkebackup/v1/restore_plan_iam_policy.py index 5db2d424f6..de46b90b3a 100644 --- a/sdk/python/pulumi_google_native/gkebackup/v1/restore_plan_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkebackup/v1/restore_plan_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["restore_plan_id"] = restore_plan_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "restore_plan_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "restorePlanId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RestorePlanIamPolicy, __self__).__init__( 'google-native:gkebackup/v1:RestorePlanIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkebackup/v1/restore_plan_restore_iam_policy.py b/sdk/python/pulumi_google_native/gkebackup/v1/restore_plan_restore_iam_policy.py index b000a6fd22..e5556a7b61 100644 --- a/sdk/python/pulumi_google_native/gkebackup/v1/restore_plan_restore_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkebackup/v1/restore_plan_restore_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["restore_plan_id"] = restore_plan_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "restore_id", "restore_plan_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "restoreId", "restorePlanId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RestorePlanRestoreIamPolicy, __self__).__init__( 'google-native:gkebackup/v1:RestorePlanRestoreIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkebackup/v1/restore_plan_restore_volume_restore_iam_policy.py b/sdk/python/pulumi_google_native/gkebackup/v1/restore_plan_restore_volume_restore_iam_policy.py index 773df64a61..49461593d8 100644 --- a/sdk/python/pulumi_google_native/gkebackup/v1/restore_plan_restore_volume_restore_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkebackup/v1/restore_plan_restore_volume_restore_iam_policy.py @@ -249,7 +249,7 @@ def _internal_init(__self__, if volume_restore_id is None and not opts.urn: raise TypeError("Missing required property 'volume_restore_id'") __props__.__dict__["volume_restore_id"] = volume_restore_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "restore_id", "restore_plan_id", "volume_restore_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "restoreId", "restorePlanId", "volumeRestoreId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RestorePlanRestoreVolumeRestoreIamPolicy, __self__).__init__( 'google-native:gkebackup/v1:RestorePlanRestoreVolumeRestoreIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkehub/v1/_inputs.py b/sdk/python/pulumi_google_native/gkehub/v1/_inputs.py index 832e699051..6b184c5e5c 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1/_inputs.py +++ b/sdk/python/pulumi_google_native/gkehub/v1/_inputs.py @@ -650,13 +650,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="allowVerticalScale") + @_utilities.deprecated("""Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated.""") def allow_vertical_scale(self) -> Optional[pulumi.Input[bool]]: """ Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated. """ - warnings.warn("""Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""allow_vertical_scale is deprecated: Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated.""") - return pulumi.get(self, "allow_vertical_scale") @allow_vertical_scale.setter @@ -2732,13 +2730,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="controlPlane") + @_utilities.deprecated("""Deprecated: use `management` instead Enables automatic control plane management.""") def control_plane(self) -> Optional[pulumi.Input['ServiceMeshMembershipSpecControlPlane']]: """ Deprecated: use `management` instead Enables automatic control plane management. """ - warnings.warn("""Deprecated: use `management` instead Enables automatic control plane management.""", DeprecationWarning) - pulumi.log.warn("""control_plane is deprecated: Deprecated: use `management` instead Enables automatic control plane management.""") - return pulumi.get(self, "control_plane") @control_plane.setter diff --git a/sdk/python/pulumi_google_native/gkehub/v1/binding.py b/sdk/python/pulumi_google_native/gkehub/v1/binding.py index de4d12ad31..76a11e767a 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1/binding.py +++ b/sdk/python/pulumi_google_native/gkehub/v1/binding.py @@ -199,7 +199,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membership_binding_id", "membership_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membershipBindingId", "membershipId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Binding, __self__).__init__( 'google-native:gkehub/v1:Binding', diff --git a/sdk/python/pulumi_google_native/gkehub/v1/feature_iam_policy.py b/sdk/python/pulumi_google_native/gkehub/v1/feature_iam_policy.py index fe77d15632..0d15eb491b 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1/feature_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkehub/v1/feature_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["feature_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["featureId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FeatureIamPolicy, __self__).__init__( 'google-native:gkehub/v1:FeatureIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkehub/v1/membership.py b/sdk/python/pulumi_google_native/gkehub/v1/membership.py index 1cf3412179..58e7ee6702 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1/membership.py +++ b/sdk/python/pulumi_google_native/gkehub/v1/membership.py @@ -248,7 +248,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["unique_id"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membership_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membershipId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Membership, __self__).__init__( 'google-native:gkehub/v1:Membership', diff --git a/sdk/python/pulumi_google_native/gkehub/v1/membership_iam_policy.py b/sdk/python/pulumi_google_native/gkehub/v1/membership_iam_policy.py index c85d3100b9..92f80aa35d 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1/membership_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkehub/v1/membership_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membership_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membershipId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MembershipIamPolicy, __self__).__init__( 'google-native:gkehub/v1:MembershipIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkehub/v1/namespace.py b/sdk/python/pulumi_google_native/gkehub/v1/namespace.py index 2c40af60ac..21cc57f2fd 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1/namespace.py +++ b/sdk/python/pulumi_google_native/gkehub/v1/namespace.py @@ -220,7 +220,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "scope_id", "scope_namespace_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "scopeId", "scopeNamespaceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Namespace, __self__).__init__( 'google-native:gkehub/v1:Namespace', diff --git a/sdk/python/pulumi_google_native/gkehub/v1/outputs.py b/sdk/python/pulumi_google_native/gkehub/v1/outputs.py index 0638e558f1..29a0e4474a 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1/outputs.py +++ b/sdk/python/pulumi_google_native/gkehub/v1/outputs.py @@ -1130,13 +1130,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="allowVerticalScale") + @_utilities.deprecated("""Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated.""") def allow_vertical_scale(self) -> bool: """ Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated. """ - warnings.warn("""Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""allow_vertical_scale is deprecated: Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated.""") - return pulumi.get(self, "allow_vertical_scale") @property @@ -3987,13 +3985,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="controlPlane") + @_utilities.deprecated("""Deprecated: use `management` instead Enables automatic control plane management.""") def control_plane(self) -> str: """ Deprecated: use `management` instead Enables automatic control plane management. """ - warnings.warn("""Deprecated: use `management` instead Enables automatic control plane management.""", DeprecationWarning) - pulumi.log.warn("""control_plane is deprecated: Deprecated: use `management` instead Enables automatic control plane management.""") - return pulumi.get(self, "control_plane") @property diff --git a/sdk/python/pulumi_google_native/gkehub/v1/rbacrolebinding.py b/sdk/python/pulumi_google_native/gkehub/v1/rbacrolebinding.py index e72405332e..ac9fe4a07b 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1/rbacrolebinding.py +++ b/sdk/python/pulumi_google_native/gkehub/v1/rbacrolebinding.py @@ -242,7 +242,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "rbacrolebinding_id", "scope_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "rbacrolebindingId", "scopeId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Rbacrolebinding, __self__).__init__( 'google-native:gkehub/v1:Rbacrolebinding', diff --git a/sdk/python/pulumi_google_native/gkehub/v1/scope.py b/sdk/python/pulumi_google_native/gkehub/v1/scope.py index b3b0a30af2..ab499bc456 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1/scope.py +++ b/sdk/python/pulumi_google_native/gkehub/v1/scope.py @@ -183,7 +183,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "scope_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "scopeId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Scope, __self__).__init__( 'google-native:gkehub/v1:Scope', diff --git a/sdk/python/pulumi_google_native/gkehub/v1/scope_iam_policy.py b/sdk/python/pulumi_google_native/gkehub/v1/scope_iam_policy.py index 6dc3a50e95..e0c9fa249a 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1/scope_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkehub/v1/scope_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["scope_id"] = scope_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "scope_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "scopeId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ScopeIamPolicy, __self__).__init__( 'google-native:gkehub/v1:ScopeIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkehub/v1alpha/_inputs.py b/sdk/python/pulumi_google_native/gkehub/v1alpha/_inputs.py index 94f301c302..05f9fe0af1 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1alpha/_inputs.py +++ b/sdk/python/pulumi_google_native/gkehub/v1alpha/_inputs.py @@ -849,13 +849,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="allowVerticalScale") + @_utilities.deprecated("""Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated.""") def allow_vertical_scale(self) -> Optional[pulumi.Input[bool]]: """ Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated. """ - warnings.warn("""Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""allow_vertical_scale is deprecated: Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated.""") - return pulumi.get(self, "allow_vertical_scale") @allow_vertical_scale.setter @@ -1163,13 +1161,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""Binauthz conifguration for the cluster. Deprecated: This field will be ignored and should not be set.""") def binauthz(self) -> Optional[pulumi.Input['ConfigManagementBinauthzConfigArgs']]: """ Binauthz conifguration for the cluster. Deprecated: This field will be ignored and should not be set. """ - warnings.warn("""Binauthz conifguration for the cluster. Deprecated: This field will be ignored and should not be set.""", DeprecationWarning) - pulumi.log.warn("""binauthz is deprecated: Binauthz conifguration for the cluster. Deprecated: This field will be ignored and should not be set.""") - return pulumi.get(self, "binauthz") @binauthz.setter @@ -2497,13 +2493,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""Deprecated: This field will be ignored and should not be set. Customer's billing structure.""") def billing(self) -> Optional[pulumi.Input['MultiClusterIngressFeatureSpecBilling']]: """ Deprecated: This field will be ignored and should not be set. Customer's billing structure. """ - warnings.warn("""Deprecated: This field will be ignored and should not be set. Customer's billing structure.""", DeprecationWarning) - pulumi.log.warn("""billing is deprecated: Deprecated: This field will be ignored and should not be set. Customer's billing structure.""") - return pulumi.get(self, "billing") @billing.setter @@ -3067,13 +3061,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="controlPlane") + @_utilities.deprecated("""Deprecated: use `management` instead Enables automatic control plane management.""") def control_plane(self) -> Optional[pulumi.Input['ServiceMeshMembershipSpecControlPlane']]: """ Deprecated: use `management` instead Enables automatic control plane management. """ - warnings.warn("""Deprecated: use `management` instead Enables automatic control plane management.""", DeprecationWarning) - pulumi.log.warn("""control_plane is deprecated: Deprecated: use `management` instead Enables automatic control plane management.""") - return pulumi.get(self, "control_plane") @control_plane.setter diff --git a/sdk/python/pulumi_google_native/gkehub/v1alpha/binding.py b/sdk/python/pulumi_google_native/gkehub/v1alpha/binding.py index 0966d7f973..142fdd63b4 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1alpha/binding.py +++ b/sdk/python/pulumi_google_native/gkehub/v1alpha/binding.py @@ -199,7 +199,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membership_binding_id", "membership_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membershipBindingId", "membershipId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Binding, __self__).__init__( 'google-native:gkehub/v1alpha:Binding', diff --git a/sdk/python/pulumi_google_native/gkehub/v1alpha/feature_iam_policy.py b/sdk/python/pulumi_google_native/gkehub/v1alpha/feature_iam_policy.py index d4de3d3bdd..fdebb25216 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1alpha/feature_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkehub/v1alpha/feature_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["feature_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["featureId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FeatureIamPolicy, __self__).__init__( 'google-native:gkehub/v1alpha:FeatureIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkehub/v1alpha/membership.py b/sdk/python/pulumi_google_native/gkehub/v1alpha/membership.py index a0c8706f69..d909b23869 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1alpha/membership.py +++ b/sdk/python/pulumi_google_native/gkehub/v1alpha/membership.py @@ -248,7 +248,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["unique_id"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membership_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membershipId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Membership, __self__).__init__( 'google-native:gkehub/v1alpha:Membership', diff --git a/sdk/python/pulumi_google_native/gkehub/v1alpha/membership_iam_policy.py b/sdk/python/pulumi_google_native/gkehub/v1alpha/membership_iam_policy.py index 5e9d362b63..826d0e6668 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1alpha/membership_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkehub/v1alpha/membership_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membership_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membershipId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MembershipIamPolicy, __self__).__init__( 'google-native:gkehub/v1alpha:MembershipIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkehub/v1alpha/membership_rbac_role_binding.py b/sdk/python/pulumi_google_native/gkehub/v1alpha/membership_rbac_role_binding.py index 69ae02f653..d0215a42c5 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1alpha/membership_rbac_role_binding.py +++ b/sdk/python/pulumi_google_native/gkehub/v1alpha/membership_rbac_role_binding.py @@ -242,7 +242,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membership_id", "project", "rbacrolebinding_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membershipId", "project", "rbacrolebindingId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MembershipRbacRoleBinding, __self__).__init__( 'google-native:gkehub/v1alpha:MembershipRbacRoleBinding', diff --git a/sdk/python/pulumi_google_native/gkehub/v1alpha/namespace.py b/sdk/python/pulumi_google_native/gkehub/v1alpha/namespace.py index 16740a1ff7..d4a643591d 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1alpha/namespace.py +++ b/sdk/python/pulumi_google_native/gkehub/v1alpha/namespace.py @@ -220,7 +220,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "scope_id", "scope_namespace_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "scopeId", "scopeNamespaceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Namespace, __self__).__init__( 'google-native:gkehub/v1alpha:Namespace', diff --git a/sdk/python/pulumi_google_native/gkehub/v1alpha/outputs.py b/sdk/python/pulumi_google_native/gkehub/v1alpha/outputs.py index af07f960fe..a26c2df20e 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1alpha/outputs.py +++ b/sdk/python/pulumi_google_native/gkehub/v1alpha/outputs.py @@ -1371,13 +1371,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="allowVerticalScale") + @_utilities.deprecated("""Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated.""") def allow_vertical_scale(self) -> bool: """ Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated. """ - warnings.warn("""Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""allow_vertical_scale is deprecated: Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated.""") - return pulumi.get(self, "allow_vertical_scale") @property @@ -1673,13 +1671,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""Binauthz conifguration for the cluster. Deprecated: This field will be ignored and should not be set.""") def binauthz(self) -> 'outputs.ConfigManagementBinauthzConfigResponse': """ Binauthz conifguration for the cluster. Deprecated: This field will be ignored and should not be set. """ - warnings.warn("""Binauthz conifguration for the cluster. Deprecated: This field will be ignored and should not be set.""", DeprecationWarning) - pulumi.log.warn("""binauthz is deprecated: Binauthz conifguration for the cluster. Deprecated: This field will be ignored and should not be set.""") - return pulumi.get(self, "binauthz") @property @@ -3626,13 +3622,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""Deprecated: This field will be ignored and should not be set. Customer's billing structure.""") def billing(self) -> str: """ Deprecated: This field will be ignored and should not be set. Customer's billing structure. """ - warnings.warn("""Deprecated: This field will be ignored and should not be set. Customer's billing structure.""", DeprecationWarning) - pulumi.log.warn("""billing is deprecated: Deprecated: This field will be ignored and should not be set. Customer's billing structure.""") - return pulumi.get(self, "billing") @property @@ -4577,13 +4571,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="controlPlane") + @_utilities.deprecated("""Deprecated: use `management` instead Enables automatic control plane management.""") def control_plane(self) -> str: """ Deprecated: use `management` instead Enables automatic control plane management. """ - warnings.warn("""Deprecated: use `management` instead Enables automatic control plane management.""", DeprecationWarning) - pulumi.log.warn("""control_plane is deprecated: Deprecated: use `management` instead Enables automatic control plane management.""") - return pulumi.get(self, "control_plane") @property diff --git a/sdk/python/pulumi_google_native/gkehub/v1alpha/scope.py b/sdk/python/pulumi_google_native/gkehub/v1alpha/scope.py index 6fd7429c4f..c032a3157d 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1alpha/scope.py +++ b/sdk/python/pulumi_google_native/gkehub/v1alpha/scope.py @@ -183,7 +183,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "scope_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "scopeId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Scope, __self__).__init__( 'google-native:gkehub/v1alpha:Scope', diff --git a/sdk/python/pulumi_google_native/gkehub/v1alpha/scope_iam_policy.py b/sdk/python/pulumi_google_native/gkehub/v1alpha/scope_iam_policy.py index 9350f221ca..25008b6b37 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1alpha/scope_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkehub/v1alpha/scope_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["scope_id"] = scope_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "scope_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "scopeId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ScopeIamPolicy, __self__).__init__( 'google-native:gkehub/v1alpha:ScopeIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkehub/v1alpha/scope_rbac_role_binding.py b/sdk/python/pulumi_google_native/gkehub/v1alpha/scope_rbac_role_binding.py index c8c68472b5..f7ada4741f 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1alpha/scope_rbac_role_binding.py +++ b/sdk/python/pulumi_google_native/gkehub/v1alpha/scope_rbac_role_binding.py @@ -242,7 +242,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "rbacrolebinding_id", "scope_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "rbacrolebindingId", "scopeId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ScopeRbacRoleBinding, __self__).__init__( 'google-native:gkehub/v1alpha:ScopeRbacRoleBinding', diff --git a/sdk/python/pulumi_google_native/gkehub/v1alpha2/membership.py b/sdk/python/pulumi_google_native/gkehub/v1alpha2/membership.py index da91688252..44608ec9fc 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1alpha2/membership.py +++ b/sdk/python/pulumi_google_native/gkehub/v1alpha2/membership.py @@ -248,7 +248,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["unique_id"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membership_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membershipId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Membership, __self__).__init__( 'google-native:gkehub/v1alpha2:Membership', diff --git a/sdk/python/pulumi_google_native/gkehub/v1alpha2/membership_iam_policy.py b/sdk/python/pulumi_google_native/gkehub/v1alpha2/membership_iam_policy.py index 565fe5ab09..f6eff78e97 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1alpha2/membership_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkehub/v1alpha2/membership_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membership_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membershipId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MembershipIamPolicy, __self__).__init__( 'google-native:gkehub/v1alpha2:MembershipIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkehub/v1beta/_inputs.py b/sdk/python/pulumi_google_native/gkehub/v1beta/_inputs.py index 268c3e172d..9c0ceb31a0 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1beta/_inputs.py +++ b/sdk/python/pulumi_google_native/gkehub/v1beta/_inputs.py @@ -773,13 +773,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="allowVerticalScale") + @_utilities.deprecated("""Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated.""") def allow_vertical_scale(self) -> Optional[pulumi.Input[bool]]: """ Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated. """ - warnings.warn("""Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""allow_vertical_scale is deprecated: Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated.""") - return pulumi.get(self, "allow_vertical_scale") @allow_vertical_scale.setter @@ -1087,13 +1085,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""Binauthz conifguration for the cluster. Deprecated: This field will be ignored and should not be set.""") def binauthz(self) -> Optional[pulumi.Input['ConfigManagementBinauthzConfigArgs']]: """ Binauthz conifguration for the cluster. Deprecated: This field will be ignored and should not be set. """ - warnings.warn("""Binauthz conifguration for the cluster. Deprecated: This field will be ignored and should not be set.""", DeprecationWarning) - pulumi.log.warn("""binauthz is deprecated: Binauthz conifguration for the cluster. Deprecated: This field will be ignored and should not be set.""") - return pulumi.get(self, "binauthz") @binauthz.setter @@ -2357,13 +2353,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""Deprecated: This field will be ignored and should not be set. Customer's billing structure.""") def billing(self) -> Optional[pulumi.Input['MultiClusterIngressFeatureSpecBilling']]: """ Deprecated: This field will be ignored and should not be set. Customer's billing structure. """ - warnings.warn("""Deprecated: This field will be ignored and should not be set. Customer's billing structure.""", DeprecationWarning) - pulumi.log.warn("""billing is deprecated: Deprecated: This field will be ignored and should not be set. Customer's billing structure.""") - return pulumi.get(self, "billing") @billing.setter @@ -2899,13 +2893,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="controlPlane") + @_utilities.deprecated("""Deprecated: use `management` instead Enables automatic control plane management.""") def control_plane(self) -> Optional[pulumi.Input['ServiceMeshMembershipSpecControlPlane']]: """ Deprecated: use `management` instead Enables automatic control plane management. """ - warnings.warn("""Deprecated: use `management` instead Enables automatic control plane management.""", DeprecationWarning) - pulumi.log.warn("""control_plane is deprecated: Deprecated: use `management` instead Enables automatic control plane management.""") - return pulumi.get(self, "control_plane") @control_plane.setter diff --git a/sdk/python/pulumi_google_native/gkehub/v1beta/binding.py b/sdk/python/pulumi_google_native/gkehub/v1beta/binding.py index 6befbb3889..493e114e85 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1beta/binding.py +++ b/sdk/python/pulumi_google_native/gkehub/v1beta/binding.py @@ -199,7 +199,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membership_binding_id", "membership_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membershipBindingId", "membershipId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Binding, __self__).__init__( 'google-native:gkehub/v1beta:Binding', diff --git a/sdk/python/pulumi_google_native/gkehub/v1beta/feature_iam_policy.py b/sdk/python/pulumi_google_native/gkehub/v1beta/feature_iam_policy.py index 729b0f1151..246a555f1b 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1beta/feature_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkehub/v1beta/feature_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["feature_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["featureId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FeatureIamPolicy, __self__).__init__( 'google-native:gkehub/v1beta:FeatureIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkehub/v1beta/membership.py b/sdk/python/pulumi_google_native/gkehub/v1beta/membership.py index 5e73d1c3d8..8624f8c732 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1beta/membership.py +++ b/sdk/python/pulumi_google_native/gkehub/v1beta/membership.py @@ -248,7 +248,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["unique_id"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membership_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membershipId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Membership, __self__).__init__( 'google-native:gkehub/v1beta:Membership', diff --git a/sdk/python/pulumi_google_native/gkehub/v1beta/membership_iam_policy.py b/sdk/python/pulumi_google_native/gkehub/v1beta/membership_iam_policy.py index e368976c76..c76792cc19 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1beta/membership_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkehub/v1beta/membership_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membership_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membershipId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MembershipIamPolicy, __self__).__init__( 'google-native:gkehub/v1beta:MembershipIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkehub/v1beta/membership_rbac_role_binding.py b/sdk/python/pulumi_google_native/gkehub/v1beta/membership_rbac_role_binding.py index 7663eb20dc..de6331e4a8 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1beta/membership_rbac_role_binding.py +++ b/sdk/python/pulumi_google_native/gkehub/v1beta/membership_rbac_role_binding.py @@ -242,7 +242,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membership_id", "project", "rbacrolebinding_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membershipId", "project", "rbacrolebindingId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MembershipRbacRoleBinding, __self__).__init__( 'google-native:gkehub/v1beta:MembershipRbacRoleBinding', diff --git a/sdk/python/pulumi_google_native/gkehub/v1beta/namespace.py b/sdk/python/pulumi_google_native/gkehub/v1beta/namespace.py index b40695e23b..d4dec55230 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1beta/namespace.py +++ b/sdk/python/pulumi_google_native/gkehub/v1beta/namespace.py @@ -220,7 +220,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "scope_id", "scope_namespace_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "scopeId", "scopeNamespaceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Namespace, __self__).__init__( 'google-native:gkehub/v1beta:Namespace', diff --git a/sdk/python/pulumi_google_native/gkehub/v1beta/outputs.py b/sdk/python/pulumi_google_native/gkehub/v1beta/outputs.py index 45a4578911..743c6b9f55 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1beta/outputs.py +++ b/sdk/python/pulumi_google_native/gkehub/v1beta/outputs.py @@ -1268,13 +1268,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="allowVerticalScale") + @_utilities.deprecated("""Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated.""") def allow_vertical_scale(self) -> bool: """ Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated. """ - warnings.warn("""Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated.""", DeprecationWarning) - pulumi.log.warn("""allow_vertical_scale is deprecated: Set to true to allow the vertical scaling. Defaults to false which disallows vertical scaling. This field is deprecated.""") - return pulumi.get(self, "allow_vertical_scale") @property @@ -1570,13 +1568,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""Binauthz conifguration for the cluster. Deprecated: This field will be ignored and should not be set.""") def binauthz(self) -> 'outputs.ConfigManagementBinauthzConfigResponse': """ Binauthz conifguration for the cluster. Deprecated: This field will be ignored and should not be set. """ - warnings.warn("""Binauthz conifguration for the cluster. Deprecated: This field will be ignored and should not be set.""", DeprecationWarning) - pulumi.log.warn("""binauthz is deprecated: Binauthz conifguration for the cluster. Deprecated: This field will be ignored and should not be set.""") - return pulumi.get(self, "binauthz") @property @@ -3432,13 +3428,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""Deprecated: This field will be ignored and should not be set. Customer's billing structure.""") def billing(self) -> str: """ Deprecated: This field will be ignored and should not be set. Customer's billing structure. """ - warnings.warn("""Deprecated: This field will be ignored and should not be set. Customer's billing structure.""", DeprecationWarning) - pulumi.log.warn("""billing is deprecated: Deprecated: This field will be ignored and should not be set. Customer's billing structure.""") - return pulumi.get(self, "billing") @property @@ -4153,13 +4147,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="controlPlane") + @_utilities.deprecated("""Deprecated: use `management` instead Enables automatic control plane management.""") def control_plane(self) -> str: """ Deprecated: use `management` instead Enables automatic control plane management. """ - warnings.warn("""Deprecated: use `management` instead Enables automatic control plane management.""", DeprecationWarning) - pulumi.log.warn("""control_plane is deprecated: Deprecated: use `management` instead Enables automatic control plane management.""") - return pulumi.get(self, "control_plane") @property diff --git a/sdk/python/pulumi_google_native/gkehub/v1beta/scope.py b/sdk/python/pulumi_google_native/gkehub/v1beta/scope.py index ec40cc8d6f..f599f6163f 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1beta/scope.py +++ b/sdk/python/pulumi_google_native/gkehub/v1beta/scope.py @@ -183,7 +183,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "scope_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "scopeId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Scope, __self__).__init__( 'google-native:gkehub/v1beta:Scope', diff --git a/sdk/python/pulumi_google_native/gkehub/v1beta/scope_iam_policy.py b/sdk/python/pulumi_google_native/gkehub/v1beta/scope_iam_policy.py index d9321faa57..1cb237b6d1 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1beta/scope_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkehub/v1beta/scope_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["scope_id"] = scope_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "scope_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "scopeId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ScopeIamPolicy, __self__).__init__( 'google-native:gkehub/v1beta:ScopeIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkehub/v1beta/scope_rbac_role_binding.py b/sdk/python/pulumi_google_native/gkehub/v1beta/scope_rbac_role_binding.py index f5e51fc44d..6381d738b7 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1beta/scope_rbac_role_binding.py +++ b/sdk/python/pulumi_google_native/gkehub/v1beta/scope_rbac_role_binding.py @@ -242,7 +242,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "rbacrolebinding_id", "scope_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "rbacrolebindingId", "scopeId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ScopeRbacRoleBinding, __self__).__init__( 'google-native:gkehub/v1beta:ScopeRbacRoleBinding', diff --git a/sdk/python/pulumi_google_native/gkehub/v1beta1/membership.py b/sdk/python/pulumi_google_native/gkehub/v1beta1/membership.py index e2f8478984..c59dca43a9 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1beta1/membership.py +++ b/sdk/python/pulumi_google_native/gkehub/v1beta1/membership.py @@ -287,7 +287,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["unique_id"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membership_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membershipId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Membership, __self__).__init__( 'google-native:gkehub/v1beta1:Membership', diff --git a/sdk/python/pulumi_google_native/gkehub/v1beta1/membership_iam_policy.py b/sdk/python/pulumi_google_native/gkehub/v1beta1/membership_iam_policy.py index 0725a32b62..4daaa46354 100644 --- a/sdk/python/pulumi_google_native/gkehub/v1beta1/membership_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkehub/v1beta1/membership_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membership_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "membershipId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MembershipIamPolicy, __self__).__init__( 'google-native:gkehub/v1beta1:MembershipIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_admin_cluster.py b/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_admin_cluster.py index 048863b07a..092205132e 100644 --- a/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_admin_cluster.py +++ b/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_admin_cluster.py @@ -474,7 +474,7 @@ def _internal_init(__self__, __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None __props__.__dict__["validation_check"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bare_metal_admin_cluster_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bareMetalAdminClusterId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(BareMetalAdminCluster, __self__).__init__( 'google-native:gkeonprem/v1:BareMetalAdminCluster', diff --git a/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_admin_cluster_iam_policy.py b/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_admin_cluster_iam_policy.py index e620964900..a395d669c3 100644 --- a/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_admin_cluster_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_admin_cluster_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bare_metal_admin_cluster_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bareMetalAdminClusterId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(BareMetalAdminClusterIamPolicy, __self__).__init__( 'google-native:gkeonprem/v1:BareMetalAdminClusterIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_cluster.py b/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_cluster.py index 12ea29b7f6..d43a0d0562 100644 --- a/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_cluster.py +++ b/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_cluster.py @@ -498,7 +498,7 @@ def _internal_init(__self__, __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None __props__.__dict__["validation_check"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bare_metal_cluster_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bareMetalClusterId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(BareMetalCluster, __self__).__init__( 'google-native:gkeonprem/v1:BareMetalCluster', diff --git a/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_cluster_bare_metal_node_pool_iam_policy.py b/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_cluster_bare_metal_node_pool_iam_policy.py index 3755c25484..d2aa6bf849 100644 --- a/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_cluster_bare_metal_node_pool_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_cluster_bare_metal_node_pool_iam_policy.py @@ -192,7 +192,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bare_metal_cluster_id", "bare_metal_node_pool_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bareMetalClusterId", "bareMetalNodePoolId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(BareMetalClusterBareMetalNodePoolIamPolicy, __self__).__init__( 'google-native:gkeonprem/v1:BareMetalClusterBareMetalNodePoolIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_cluster_iam_policy.py b/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_cluster_iam_policy.py index 191f98d76a..bb59df824c 100644 --- a/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_cluster_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_cluster_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bare_metal_cluster_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bareMetalClusterId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(BareMetalClusterIamPolicy, __self__).__init__( 'google-native:gkeonprem/v1:BareMetalClusterIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_node_pool.py b/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_node_pool.py index 64a64c8889..8aad9ef683 100644 --- a/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_node_pool.py +++ b/sdk/python/pulumi_google_native/gkeonprem/v1/bare_metal_node_pool.py @@ -261,7 +261,7 @@ def _internal_init(__self__, __props__.__dict__["status"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bare_metal_cluster_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bareMetalClusterId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(BareMetalNodePool, __self__).__init__( 'google-native:gkeonprem/v1:BareMetalNodePool', diff --git a/sdk/python/pulumi_google_native/gkeonprem/v1/vmware_admin_cluster_iam_policy.py b/sdk/python/pulumi_google_native/gkeonprem/v1/vmware_admin_cluster_iam_policy.py index d7df7869a2..37be06e06f 100644 --- a/sdk/python/pulumi_google_native/gkeonprem/v1/vmware_admin_cluster_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkeonprem/v1/vmware_admin_cluster_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, if vmware_admin_cluster_id is None and not opts.urn: raise TypeError("Missing required property 'vmware_admin_cluster_id'") __props__.__dict__["vmware_admin_cluster_id"] = vmware_admin_cluster_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "vmware_admin_cluster_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "vmwareAdminClusterId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(VmwareAdminClusterIamPolicy, __self__).__init__( 'google-native:gkeonprem/v1:VmwareAdminClusterIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkeonprem/v1/vmware_cluster_iam_policy.py b/sdk/python/pulumi_google_native/gkeonprem/v1/vmware_cluster_iam_policy.py index 650c6d7657..fbfc3e0fb8 100644 --- a/sdk/python/pulumi_google_native/gkeonprem/v1/vmware_cluster_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkeonprem/v1/vmware_cluster_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, if vmware_cluster_id is None and not opts.urn: raise TypeError("Missing required property 'vmware_cluster_id'") __props__.__dict__["vmware_cluster_id"] = vmware_cluster_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "vmware_cluster_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "vmwareClusterId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(VmwareClusterIamPolicy, __self__).__init__( 'google-native:gkeonprem/v1:VmwareClusterIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkeonprem/v1/vmware_cluster_vmware_node_pool_iam_policy.py b/sdk/python/pulumi_google_native/gkeonprem/v1/vmware_cluster_vmware_node_pool_iam_policy.py index 12f3d94f31..cfab4ce651 100644 --- a/sdk/python/pulumi_google_native/gkeonprem/v1/vmware_cluster_vmware_node_pool_iam_policy.py +++ b/sdk/python/pulumi_google_native/gkeonprem/v1/vmware_cluster_vmware_node_pool_iam_policy.py @@ -192,7 +192,7 @@ def _internal_init(__self__, if vmware_node_pool_id is None and not opts.urn: raise TypeError("Missing required property 'vmware_node_pool_id'") __props__.__dict__["vmware_node_pool_id"] = vmware_node_pool_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "vmware_cluster_id", "vmware_node_pool_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "vmwareClusterId", "vmwareNodePoolId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(VmwareClusterVmwareNodePoolIamPolicy, __self__).__init__( 'google-native:gkeonprem/v1:VmwareClusterVmwareNodePoolIamPolicy', diff --git a/sdk/python/pulumi_google_native/gkeonprem/v1/vmware_node_pool.py b/sdk/python/pulumi_google_native/gkeonprem/v1/vmware_node_pool.py index 6550a5309f..d6d4d6364e 100644 --- a/sdk/python/pulumi_google_native/gkeonprem/v1/vmware_node_pool.py +++ b/sdk/python/pulumi_google_native/gkeonprem/v1/vmware_node_pool.py @@ -281,7 +281,7 @@ def _internal_init(__self__, __props__.__dict__["status"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "vmware_cluster_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "vmwareClusterId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(VmwareNodePool, __self__).__init__( 'google-native:gkeonprem/v1:VmwareNodePool', diff --git a/sdk/python/pulumi_google_native/healthcare/v1/_inputs.py b/sdk/python/pulumi_google_native/healthcare/v1/_inputs.py index ff6c794ea0..401f38ac15 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1/_inputs.py +++ b/sdk/python/pulumi_google_native/healthcare/v1/_inputs.py @@ -1899,13 +1899,11 @@ def exclude_info_types(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[ @property @pulumi.getter + @_utilities.deprecated("""The transformations to apply to the detected data. Deprecated. Use `additional_transformations` instead.""") def transformations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InfoTypeTransformationArgs']]]]: """ The transformations to apply to the detected data. Deprecated. Use `additional_transformations` instead. """ - warnings.warn("""The transformations to apply to the detected data. Deprecated. Use `additional_transformations` instead.""", DeprecationWarning) - pulumi.log.warn("""transformations is deprecated: The transformations to apply to the detected data. Deprecated. Use `additional_transformations` instead.""") - return pulumi.get(self, "transformations") @transformations.setter diff --git a/sdk/python/pulumi_google_native/healthcare/v1/attribute_definition.py b/sdk/python/pulumi_google_native/healthcare/v1/attribute_definition.py index 72e4ddf902..bec48569de 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1/attribute_definition.py +++ b/sdk/python/pulumi_google_native/healthcare/v1/attribute_definition.py @@ -270,7 +270,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["name"] = name __props__.__dict__["project"] = project - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["attribute_definition_id", "consent_store_id", "dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["attributeDefinitionId", "consentStoreId", "datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AttributeDefinition, __self__).__init__( 'google-native:healthcare/v1:AttributeDefinition', diff --git a/sdk/python/pulumi_google_native/healthcare/v1/consent.py b/sdk/python/pulumi_google_native/healthcare/v1/consent.py index d634f3a512..ee62069c11 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1/consent.py +++ b/sdk/python/pulumi_google_native/healthcare/v1/consent.py @@ -294,7 +294,7 @@ def _internal_init(__self__, __props__.__dict__["user_id"] = user_id __props__.__dict__["revision_create_time"] = None __props__.__dict__["revision_id"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["consent_store_id", "dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["consentStoreId", "datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Consent, __self__).__init__( 'google-native:healthcare/v1:Consent', diff --git a/sdk/python/pulumi_google_native/healthcare/v1/consent_artifact.py b/sdk/python/pulumi_google_native/healthcare/v1/consent_artifact.py index e447cfcbcf..22be9b86b3 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1/consent_artifact.py +++ b/sdk/python/pulumi_google_native/healthcare/v1/consent_artifact.py @@ -289,7 +289,7 @@ def _internal_init(__self__, __props__.__dict__["user_id"] = user_id __props__.__dict__["user_signature"] = user_signature __props__.__dict__["witness_signature"] = witness_signature - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["consent_store_id", "dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["consentStoreId", "datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ConsentArtifact, __self__).__init__( 'google-native:healthcare/v1:ConsentArtifact', diff --git a/sdk/python/pulumi_google_native/healthcare/v1/consent_store.py b/sdk/python/pulumi_google_native/healthcare/v1/consent_store.py index 393fa5765d..92062291a1 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1/consent_store.py +++ b/sdk/python/pulumi_google_native/healthcare/v1/consent_store.py @@ -211,7 +211,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["name"] = name __props__.__dict__["project"] = project - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["consent_store_id", "dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["consentStoreId", "datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ConsentStore, __self__).__init__( 'google-native:healthcare/v1:ConsentStore', diff --git a/sdk/python/pulumi_google_native/healthcare/v1/dataset_consent_store_iam_policy.py b/sdk/python/pulumi_google_native/healthcare/v1/dataset_consent_store_iam_policy.py index 5c1d31cf5d..8197f7995d 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1/dataset_consent_store_iam_policy.py +++ b/sdk/python/pulumi_google_native/healthcare/v1/dataset_consent_store_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["consent_store_id", "dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["consentStoreId", "datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DatasetConsentStoreIamPolicy, __self__).__init__( 'google-native:healthcare/v1:DatasetConsentStoreIamPolicy', diff --git a/sdk/python/pulumi_google_native/healthcare/v1/dataset_dicom_store_iam_policy.py b/sdk/python/pulumi_google_native/healthcare/v1/dataset_dicom_store_iam_policy.py index cb973cb04d..a7f1b1ce06 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1/dataset_dicom_store_iam_policy.py +++ b/sdk/python/pulumi_google_native/healthcare/v1/dataset_dicom_store_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataset_id", "dicom_store_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datasetId", "dicomStoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DatasetDicomStoreIamPolicy, __self__).__init__( 'google-native:healthcare/v1:DatasetDicomStoreIamPolicy', diff --git a/sdk/python/pulumi_google_native/healthcare/v1/dataset_fhir_store_iam_policy.py b/sdk/python/pulumi_google_native/healthcare/v1/dataset_fhir_store_iam_policy.py index 0fb18e966c..25e5340936 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1/dataset_fhir_store_iam_policy.py +++ b/sdk/python/pulumi_google_native/healthcare/v1/dataset_fhir_store_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataset_id", "fhir_store_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datasetId", "fhirStoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DatasetFhirStoreIamPolicy, __self__).__init__( 'google-native:healthcare/v1:DatasetFhirStoreIamPolicy', diff --git a/sdk/python/pulumi_google_native/healthcare/v1/dataset_hl7_v2_store_iam_policy.py b/sdk/python/pulumi_google_native/healthcare/v1/dataset_hl7_v2_store_iam_policy.py index 9e92581c08..bc5a0dd410 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1/dataset_hl7_v2_store_iam_policy.py +++ b/sdk/python/pulumi_google_native/healthcare/v1/dataset_hl7_v2_store_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataset_id", "hl7_v2_store_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datasetId", "hl7V2StoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DatasetHl7V2StoreIamPolicy, __self__).__init__( 'google-native:healthcare/v1:DatasetHl7V2StoreIamPolicy', diff --git a/sdk/python/pulumi_google_native/healthcare/v1/dataset_iam_policy.py b/sdk/python/pulumi_google_native/healthcare/v1/dataset_iam_policy.py index d6e7b861c7..d908b0da85 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1/dataset_iam_policy.py +++ b/sdk/python/pulumi_google_native/healthcare/v1/dataset_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DatasetIamPolicy, __self__).__init__( 'google-native:healthcare/v1:DatasetIamPolicy', diff --git a/sdk/python/pulumi_google_native/healthcare/v1/dicom_store.py b/sdk/python/pulumi_google_native/healthcare/v1/dicom_store.py index 3634753e94..cd68671d09 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1/dicom_store.py +++ b/sdk/python/pulumi_google_native/healthcare/v1/dicom_store.py @@ -213,7 +213,7 @@ def _internal_init(__self__, __props__.__dict__["notification_config"] = notification_config __props__.__dict__["project"] = project __props__.__dict__["stream_configs"] = stream_configs - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DicomStore, __self__).__init__( 'google-native:healthcare/v1:DicomStore', diff --git a/sdk/python/pulumi_google_native/healthcare/v1/fhir_store.py b/sdk/python/pulumi_google_native/healthcare/v1/fhir_store.py index 93645154e0..5f4201382d 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1/fhir_store.py +++ b/sdk/python/pulumi_google_native/healthcare/v1/fhir_store.py @@ -184,13 +184,11 @@ def location(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="notificationConfig") + @_utilities.deprecated("""Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, \"action\":\"CreateResource\".""") def notification_config(self) -> Optional[pulumi.Input['NotificationConfigArgs']]: """ Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, "action":"CreateResource". """ - warnings.warn("""Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, \"action\":\"CreateResource\".""", DeprecationWarning) - pulumi.log.warn("""notification_config is deprecated: Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, \"action\":\"CreateResource\".""") - return pulumi.get(self, "notification_config") @notification_config.setter @@ -362,7 +360,7 @@ def _internal_init(__self__, __props__.__dict__["validation_config"] = validation_config __props__.__dict__["version"] = version __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FhirStore, __self__).__init__( 'google-native:healthcare/v1:FhirStore', @@ -480,13 +478,11 @@ def name(self) -> pulumi.Output[str]: @property @pulumi.getter(name="notificationConfig") + @_utilities.deprecated("""Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, \"action\":\"CreateResource\".""") def notification_config(self) -> pulumi.Output['outputs.NotificationConfigResponse']: """ Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, "action":"CreateResource". """ - warnings.warn("""Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, \"action\":\"CreateResource\".""", DeprecationWarning) - pulumi.log.warn("""notification_config is deprecated: Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, \"action\":\"CreateResource\".""") - return pulumi.get(self, "notification_config") @property diff --git a/sdk/python/pulumi_google_native/healthcare/v1/get_fhir_store.py b/sdk/python/pulumi_google_native/healthcare/v1/get_fhir_store.py index 5c09c73d74..ee27f4ae1a 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1/get_fhir_store.py +++ b/sdk/python/pulumi_google_native/healthcare/v1/get_fhir_store.py @@ -115,13 +115,11 @@ def name(self) -> str: @property @pulumi.getter(name="notificationConfig") + @_utilities.deprecated("""Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, \"action\":\"CreateResource\".""") def notification_config(self) -> 'outputs.NotificationConfigResponse': """ Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, "action":"CreateResource". """ - warnings.warn("""Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, \"action\":\"CreateResource\".""", DeprecationWarning) - pulumi.log.warn("""notification_config is deprecated: Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, \"action\":\"CreateResource\".""") - return pulumi.get(self, "notification_config") @property diff --git a/sdk/python/pulumi_google_native/healthcare/v1/hl7_v2_store.py b/sdk/python/pulumi_google_native/healthcare/v1/hl7_v2_store.py index bf3e717061..d2f9e21c6a 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1/hl7_v2_store.py +++ b/sdk/python/pulumi_google_native/healthcare/v1/hl7_v2_store.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["parser_config"] = parser_config __props__.__dict__["project"] = project __props__.__dict__["reject_duplicate_message"] = reject_duplicate_message - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Hl7V2Store, __self__).__init__( 'google-native:healthcare/v1:Hl7V2Store', diff --git a/sdk/python/pulumi_google_native/healthcare/v1/message.py b/sdk/python/pulumi_google_native/healthcare/v1/message.py index cae4b44561..9e666ce878 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1/message.py +++ b/sdk/python/pulumi_google_native/healthcare/v1/message.py @@ -290,7 +290,7 @@ def _internal_init(__self__, __props__.__dict__["send_time"] = send_time __props__.__dict__["create_time"] = None __props__.__dict__["parsed_data"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataset_id", "hl7_v2_store_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datasetId", "hl7V2StoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Message, __self__).__init__( 'google-native:healthcare/v1:Message', diff --git a/sdk/python/pulumi_google_native/healthcare/v1/outputs.py b/sdk/python/pulumi_google_native/healthcare/v1/outputs.py index 343b8503f7..1e26327947 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1/outputs.py +++ b/sdk/python/pulumi_google_native/healthcare/v1/outputs.py @@ -2153,13 +2153,11 @@ def exclude_info_types(self) -> Sequence[str]: @property @pulumi.getter + @_utilities.deprecated("""The transformations to apply to the detected data. Deprecated. Use `additional_transformations` instead.""") def transformations(self) -> Sequence['outputs.InfoTypeTransformationResponse']: """ The transformations to apply to the detected data. Deprecated. Use `additional_transformations` instead. """ - warnings.warn("""The transformations to apply to the detected data. Deprecated. Use `additional_transformations` instead.""", DeprecationWarning) - pulumi.log.warn("""transformations is deprecated: The transformations to apply to the detected data. Deprecated. Use `additional_transformations` instead.""") - return pulumi.get(self, "transformations") diff --git a/sdk/python/pulumi_google_native/healthcare/v1/user_data_mapping.py b/sdk/python/pulumi_google_native/healthcare/v1/user_data_mapping.py index e009971b54..93320a0ba2 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1/user_data_mapping.py +++ b/sdk/python/pulumi_google_native/healthcare/v1/user_data_mapping.py @@ -212,7 +212,7 @@ def _internal_init(__self__, __props__.__dict__["user_id"] = user_id __props__.__dict__["archive_time"] = None __props__.__dict__["archived"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["consent_store_id", "dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["consentStoreId", "datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(UserDataMapping, __self__).__init__( 'google-native:healthcare/v1:UserDataMapping', diff --git a/sdk/python/pulumi_google_native/healthcare/v1beta1/_inputs.py b/sdk/python/pulumi_google_native/healthcare/v1beta1/_inputs.py index a3331947c4..6600b23091 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1beta1/_inputs.py +++ b/sdk/python/pulumi_google_native/healthcare/v1beta1/_inputs.py @@ -956,13 +956,11 @@ def annotation(self, value: Optional[pulumi.Input['AnnotationConfigArgs']]): @property @pulumi.getter + @_utilities.deprecated("""Configures de-id of application/DICOM content. Deprecated. Use `dicom_tag_config` instead.""") def dicom(self) -> Optional[pulumi.Input['DicomConfigArgs']]: """ Configures de-id of application/DICOM content. Deprecated. Use `dicom_tag_config` instead. """ - warnings.warn("""Configures de-id of application/DICOM content. Deprecated. Use `dicom_tag_config` instead.""", DeprecationWarning) - pulumi.log.warn("""dicom is deprecated: Configures de-id of application/DICOM content. Deprecated. Use `dicom_tag_config` instead.""") - return pulumi.get(self, "dicom") @dicom.setter @@ -983,13 +981,11 @@ def dicom_tag_config(self, value: Optional[pulumi.Input['DicomTagConfigArgs']]): @property @pulumi.getter + @_utilities.deprecated("""Configures de-id of application/FHIR content. Deprecated. Use `fhir_field_config` instead.""") def fhir(self) -> Optional[pulumi.Input['FhirConfigArgs']]: """ Configures de-id of application/FHIR content. Deprecated. Use `fhir_field_config` instead. """ - warnings.warn("""Configures de-id of application/FHIR content. Deprecated. Use `fhir_field_config` instead.""", DeprecationWarning) - pulumi.log.warn("""fhir is deprecated: Configures de-id of application/FHIR content. Deprecated. Use `fhir_field_config` instead.""") - return pulumi.get(self, "fhir") @fhir.setter @@ -1010,13 +1006,11 @@ def fhir_field_config(self, value: Optional[pulumi.Input['FhirFieldConfigArgs']] @property @pulumi.getter + @_utilities.deprecated("""Configures the de-identification of image pixels in the source_dataset. Deprecated. Use `dicom_tag_config.options.clean_image` instead.""") def image(self) -> Optional[pulumi.Input['ImageConfigArgs']]: """ Configures the de-identification of image pixels in the source_dataset. Deprecated. Use `dicom_tag_config.options.clean_image` instead. """ - warnings.warn("""Configures the de-identification of image pixels in the source_dataset. Deprecated. Use `dicom_tag_config.options.clean_image` instead.""", DeprecationWarning) - pulumi.log.warn("""image is deprecated: Configures the de-identification of image pixels in the source_dataset. Deprecated. Use `dicom_tag_config.options.clean_image` instead.""") - return pulumi.get(self, "image") @image.setter @@ -3203,13 +3197,11 @@ def profile_type(self, value: Optional[pulumi.Input['TextConfigProfileType']]): @property @pulumi.getter + @_utilities.deprecated("""The transformations to apply to the detected data. Deprecated. Use `additional_transformations` instead.""") def transformations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InfoTypeTransformationArgs']]]]: """ The transformations to apply to the detected data. Deprecated. Use `additional_transformations` instead. """ - warnings.warn("""The transformations to apply to the detected data. Deprecated. Use `additional_transformations` instead.""", DeprecationWarning) - pulumi.log.warn("""transformations is deprecated: The transformations to apply to the detected data. Deprecated. Use `additional_transformations` instead.""") - return pulumi.get(self, "transformations") @transformations.setter diff --git a/sdk/python/pulumi_google_native/healthcare/v1beta1/annotation.py b/sdk/python/pulumi_google_native/healthcare/v1beta1/annotation.py index 5c74d0a98c..e8cf93744e 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1beta1/annotation.py +++ b/sdk/python/pulumi_google_native/healthcare/v1beta1/annotation.py @@ -248,7 +248,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["resource_annotation"] = resource_annotation __props__.__dict__["text_annotation"] = text_annotation - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["annotation_store_id", "dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["annotationStoreId", "datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Annotation, __self__).__init__( 'google-native:healthcare/v1beta1:Annotation', diff --git a/sdk/python/pulumi_google_native/healthcare/v1beta1/annotation_store.py b/sdk/python/pulumi_google_native/healthcare/v1beta1/annotation_store.py index fda4560d97..88193fcf2b 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1beta1/annotation_store.py +++ b/sdk/python/pulumi_google_native/healthcare/v1beta1/annotation_store.py @@ -170,7 +170,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["name"] = name __props__.__dict__["project"] = project - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AnnotationStore, __self__).__init__( 'google-native:healthcare/v1beta1:AnnotationStore', diff --git a/sdk/python/pulumi_google_native/healthcare/v1beta1/attribute_definition.py b/sdk/python/pulumi_google_native/healthcare/v1beta1/attribute_definition.py index 3ed238a1e2..2417902c4a 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1beta1/attribute_definition.py +++ b/sdk/python/pulumi_google_native/healthcare/v1beta1/attribute_definition.py @@ -270,7 +270,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["name"] = name __props__.__dict__["project"] = project - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["attribute_definition_id", "consent_store_id", "dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["attributeDefinitionId", "consentStoreId", "datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AttributeDefinition, __self__).__init__( 'google-native:healthcare/v1beta1:AttributeDefinition', diff --git a/sdk/python/pulumi_google_native/healthcare/v1beta1/consent.py b/sdk/python/pulumi_google_native/healthcare/v1beta1/consent.py index cbd0ca9a51..37c9b5185c 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1beta1/consent.py +++ b/sdk/python/pulumi_google_native/healthcare/v1beta1/consent.py @@ -294,7 +294,7 @@ def _internal_init(__self__, __props__.__dict__["user_id"] = user_id __props__.__dict__["revision_create_time"] = None __props__.__dict__["revision_id"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["consent_store_id", "dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["consentStoreId", "datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Consent, __self__).__init__( 'google-native:healthcare/v1beta1:Consent', diff --git a/sdk/python/pulumi_google_native/healthcare/v1beta1/consent_artifact.py b/sdk/python/pulumi_google_native/healthcare/v1beta1/consent_artifact.py index 55c56b6d87..af8488f8e3 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1beta1/consent_artifact.py +++ b/sdk/python/pulumi_google_native/healthcare/v1beta1/consent_artifact.py @@ -289,7 +289,7 @@ def _internal_init(__self__, __props__.__dict__["user_id"] = user_id __props__.__dict__["user_signature"] = user_signature __props__.__dict__["witness_signature"] = witness_signature - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["consent_store_id", "dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["consentStoreId", "datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ConsentArtifact, __self__).__init__( 'google-native:healthcare/v1beta1:ConsentArtifact', diff --git a/sdk/python/pulumi_google_native/healthcare/v1beta1/consent_store.py b/sdk/python/pulumi_google_native/healthcare/v1beta1/consent_store.py index 6efe98332e..49a8e62949 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1beta1/consent_store.py +++ b/sdk/python/pulumi_google_native/healthcare/v1beta1/consent_store.py @@ -211,7 +211,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["name"] = name __props__.__dict__["project"] = project - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["consent_store_id", "dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["consentStoreId", "datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ConsentStore, __self__).__init__( 'google-native:healthcare/v1beta1:ConsentStore', diff --git a/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_annotation_store_iam_policy.py b/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_annotation_store_iam_policy.py index 9c54974201..f78d54b4b2 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_annotation_store_iam_policy.py +++ b/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_annotation_store_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["annotation_store_id", "dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["annotationStoreId", "datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DatasetAnnotationStoreIamPolicy, __self__).__init__( 'google-native:healthcare/v1beta1:DatasetAnnotationStoreIamPolicy', diff --git a/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_consent_store_iam_policy.py b/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_consent_store_iam_policy.py index 619c3c1228..0054a74413 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_consent_store_iam_policy.py +++ b/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_consent_store_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["consent_store_id", "dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["consentStoreId", "datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DatasetConsentStoreIamPolicy, __self__).__init__( 'google-native:healthcare/v1beta1:DatasetConsentStoreIamPolicy', diff --git a/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_dicom_store_iam_policy.py b/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_dicom_store_iam_policy.py index 20098a39e0..1cf45ddc72 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_dicom_store_iam_policy.py +++ b/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_dicom_store_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataset_id", "dicom_store_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datasetId", "dicomStoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DatasetDicomStoreIamPolicy, __self__).__init__( 'google-native:healthcare/v1beta1:DatasetDicomStoreIamPolicy', diff --git a/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_fhir_store_iam_policy.py b/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_fhir_store_iam_policy.py index f199651dea..0251f51438 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_fhir_store_iam_policy.py +++ b/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_fhir_store_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataset_id", "fhir_store_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datasetId", "fhirStoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DatasetFhirStoreIamPolicy, __self__).__init__( 'google-native:healthcare/v1beta1:DatasetFhirStoreIamPolicy', diff --git a/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_hl7_v2_store_iam_policy.py b/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_hl7_v2_store_iam_policy.py index a62693fd89..4f812a6fee 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_hl7_v2_store_iam_policy.py +++ b/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_hl7_v2_store_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataset_id", "hl7_v2_store_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datasetId", "hl7V2StoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DatasetHl7V2StoreIamPolicy, __self__).__init__( 'google-native:healthcare/v1beta1:DatasetHl7V2StoreIamPolicy', diff --git a/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_iam_policy.py b/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_iam_policy.py index 64aa3a8923..77d5e370ec 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_iam_policy.py +++ b/sdk/python/pulumi_google_native/healthcare/v1beta1/dataset_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DatasetIamPolicy, __self__).__init__( 'google-native:healthcare/v1beta1:DatasetIamPolicy', diff --git a/sdk/python/pulumi_google_native/healthcare/v1beta1/dicom_store.py b/sdk/python/pulumi_google_native/healthcare/v1beta1/dicom_store.py index 88e5634e82..bb01664275 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1beta1/dicom_store.py +++ b/sdk/python/pulumi_google_native/healthcare/v1beta1/dicom_store.py @@ -213,7 +213,7 @@ def _internal_init(__self__, __props__.__dict__["notification_config"] = notification_config __props__.__dict__["project"] = project __props__.__dict__["stream_configs"] = stream_configs - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DicomStore, __self__).__init__( 'google-native:healthcare/v1beta1:DicomStore', diff --git a/sdk/python/pulumi_google_native/healthcare/v1beta1/fhir_store.py b/sdk/python/pulumi_google_native/healthcare/v1beta1/fhir_store.py index 5baf4d2e94..372e81c5ca 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1beta1/fhir_store.py +++ b/sdk/python/pulumi_google_native/healthcare/v1beta1/fhir_store.py @@ -204,13 +204,11 @@ def location(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="notificationConfig") + @_utilities.deprecated("""Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, \"action\":\"CreateResource\".""") def notification_config(self) -> Optional[pulumi.Input['NotificationConfigArgs']]: """ Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, "action":"CreateResource". """ - warnings.warn("""Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, \"action\":\"CreateResource\".""", DeprecationWarning) - pulumi.log.warn("""notification_config is deprecated: Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, \"action\":\"CreateResource\".""") - return pulumi.get(self, "notification_config") @notification_config.setter @@ -402,7 +400,7 @@ def _internal_init(__self__, __props__.__dict__["validation_config"] = validation_config __props__.__dict__["version"] = version __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FhirStore, __self__).__init__( 'google-native:healthcare/v1beta1:FhirStore', @@ -530,13 +528,11 @@ def name(self) -> pulumi.Output[str]: @property @pulumi.getter(name="notificationConfig") + @_utilities.deprecated("""Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, \"action\":\"CreateResource\".""") def notification_config(self) -> pulumi.Output['outputs.NotificationConfigResponse']: """ Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, "action":"CreateResource". """ - warnings.warn("""Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, \"action\":\"CreateResource\".""", DeprecationWarning) - pulumi.log.warn("""notification_config is deprecated: Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, \"action\":\"CreateResource\".""") - return pulumi.get(self, "notification_config") @property diff --git a/sdk/python/pulumi_google_native/healthcare/v1beta1/get_fhir_store.py b/sdk/python/pulumi_google_native/healthcare/v1beta1/get_fhir_store.py index b9439c45e2..3998883c22 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1beta1/get_fhir_store.py +++ b/sdk/python/pulumi_google_native/healthcare/v1beta1/get_fhir_store.py @@ -129,13 +129,11 @@ def name(self) -> str: @property @pulumi.getter(name="notificationConfig") + @_utilities.deprecated("""Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, \"action\":\"CreateResource\".""") def notification_config(self) -> 'outputs.NotificationConfigResponse': """ Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, "action":"CreateResource". """ - warnings.warn("""Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, \"action\":\"CreateResource\".""", DeprecationWarning) - pulumi.log.warn("""notification_config is deprecated: Deprecated. Use `notification_configs` instead. If non-empty, publish all resource modifications of this FHIR store to this destination. The Pub/Sub message attributes contain a map with a string describing the action that has triggered the notification. For example, \"action\":\"CreateResource\".""") - return pulumi.get(self, "notification_config") @property diff --git a/sdk/python/pulumi_google_native/healthcare/v1beta1/hl7_v2_store.py b/sdk/python/pulumi_google_native/healthcare/v1beta1/hl7_v2_store.py index e0406069ad..2f41d9c769 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1beta1/hl7_v2_store.py +++ b/sdk/python/pulumi_google_native/healthcare/v1beta1/hl7_v2_store.py @@ -253,7 +253,7 @@ def _internal_init(__self__, __props__.__dict__["parser_config"] = parser_config __props__.__dict__["project"] = project __props__.__dict__["reject_duplicate_message"] = reject_duplicate_message - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Hl7V2Store, __self__).__init__( 'google-native:healthcare/v1beta1:Hl7V2Store', diff --git a/sdk/python/pulumi_google_native/healthcare/v1beta1/message.py b/sdk/python/pulumi_google_native/healthcare/v1beta1/message.py index 41b776ffd3..8f8f19dfad 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1beta1/message.py +++ b/sdk/python/pulumi_google_native/healthcare/v1beta1/message.py @@ -290,7 +290,7 @@ def _internal_init(__self__, __props__.__dict__["send_time"] = send_time __props__.__dict__["create_time"] = None __props__.__dict__["parsed_data"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["dataset_id", "hl7_v2_store_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datasetId", "hl7V2StoreId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Message, __self__).__init__( 'google-native:healthcare/v1beta1:Message', diff --git a/sdk/python/pulumi_google_native/healthcare/v1beta1/outputs.py b/sdk/python/pulumi_google_native/healthcare/v1beta1/outputs.py index 1f04f6d465..8ee0051001 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1beta1/outputs.py +++ b/sdk/python/pulumi_google_native/healthcare/v1beta1/outputs.py @@ -1058,13 +1058,11 @@ def annotation(self) -> 'outputs.AnnotationConfigResponse': @property @pulumi.getter + @_utilities.deprecated("""Configures de-id of application/DICOM content. Deprecated. Use `dicom_tag_config` instead.""") def dicom(self) -> 'outputs.DicomConfigResponse': """ Configures de-id of application/DICOM content. Deprecated. Use `dicom_tag_config` instead. """ - warnings.warn("""Configures de-id of application/DICOM content. Deprecated. Use `dicom_tag_config` instead.""", DeprecationWarning) - pulumi.log.warn("""dicom is deprecated: Configures de-id of application/DICOM content. Deprecated. Use `dicom_tag_config` instead.""") - return pulumi.get(self, "dicom") @property @@ -1077,13 +1075,11 @@ def dicom_tag_config(self) -> 'outputs.DicomTagConfigResponse': @property @pulumi.getter + @_utilities.deprecated("""Configures de-id of application/FHIR content. Deprecated. Use `fhir_field_config` instead.""") def fhir(self) -> 'outputs.FhirConfigResponse': """ Configures de-id of application/FHIR content. Deprecated. Use `fhir_field_config` instead. """ - warnings.warn("""Configures de-id of application/FHIR content. Deprecated. Use `fhir_field_config` instead.""", DeprecationWarning) - pulumi.log.warn("""fhir is deprecated: Configures de-id of application/FHIR content. Deprecated. Use `fhir_field_config` instead.""") - return pulumi.get(self, "fhir") @property @@ -1096,13 +1092,11 @@ def fhir_field_config(self) -> 'outputs.FhirFieldConfigResponse': @property @pulumi.getter + @_utilities.deprecated("""Configures the de-identification of image pixels in the source_dataset. Deprecated. Use `dicom_tag_config.options.clean_image` instead.""") def image(self) -> 'outputs.ImageConfigResponse': """ Configures the de-identification of image pixels in the source_dataset. Deprecated. Use `dicom_tag_config.options.clean_image` instead. """ - warnings.warn("""Configures the de-identification of image pixels in the source_dataset. Deprecated. Use `dicom_tag_config.options.clean_image` instead.""", DeprecationWarning) - pulumi.log.warn("""image is deprecated: Configures the de-identification of image pixels in the source_dataset. Deprecated. Use `dicom_tag_config.options.clean_image` instead.""") - return pulumi.get(self, "image") @property @@ -3579,13 +3573,11 @@ def profile_type(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""The transformations to apply to the detected data. Deprecated. Use `additional_transformations` instead.""") def transformations(self) -> Sequence['outputs.InfoTypeTransformationResponse']: """ The transformations to apply to the detected data. Deprecated. Use `additional_transformations` instead. """ - warnings.warn("""The transformations to apply to the detected data. Deprecated. Use `additional_transformations` instead.""", DeprecationWarning) - pulumi.log.warn("""transformations is deprecated: The transformations to apply to the detected data. Deprecated. Use `additional_transformations` instead.""") - return pulumi.get(self, "transformations") diff --git a/sdk/python/pulumi_google_native/healthcare/v1beta1/user_data_mapping.py b/sdk/python/pulumi_google_native/healthcare/v1beta1/user_data_mapping.py index f907ccc14d..9ba486e1da 100644 --- a/sdk/python/pulumi_google_native/healthcare/v1beta1/user_data_mapping.py +++ b/sdk/python/pulumi_google_native/healthcare/v1beta1/user_data_mapping.py @@ -212,7 +212,7 @@ def _internal_init(__self__, __props__.__dict__["user_id"] = user_id __props__.__dict__["archive_time"] = None __props__.__dict__["archived"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["consent_store_id", "dataset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["consentStoreId", "datasetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(UserDataMapping, __self__).__init__( 'google-native:healthcare/v1beta1:UserDataMapping', diff --git a/sdk/python/pulumi_google_native/iam/v1/get_service_account.py b/sdk/python/pulumi_google_native/iam/v1/get_service_account.py index 9e889da5b6..f4c2b6a54b 100644 --- a/sdk/python/pulumi_google_native/iam/v1/get_service_account.py +++ b/sdk/python/pulumi_google_native/iam/v1/get_service_account.py @@ -81,13 +81,11 @@ def email(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""Deprecated. Do not use.""") def etag(self) -> str: """ Deprecated. Do not use. """ - warnings.warn("""Deprecated. Do not use.""", DeprecationWarning) - pulumi.log.warn("""etag is deprecated: Deprecated. Do not use.""") - return pulumi.get(self, "etag") @property diff --git a/sdk/python/pulumi_google_native/iam/v1/key.py b/sdk/python/pulumi_google_native/iam/v1/key.py index f10395b5c2..59e68ac72d 100644 --- a/sdk/python/pulumi_google_native/iam/v1/key.py +++ b/sdk/python/pulumi_google_native/iam/v1/key.py @@ -146,7 +146,7 @@ def _internal_init(__self__, __props__.__dict__["public_key_data"] = None __props__.__dict__["valid_after_time"] = None __props__.__dict__["valid_before_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "service_account_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "serviceAccountId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Key, __self__).__init__( 'google-native:iam/v1:Key', diff --git a/sdk/python/pulumi_google_native/iam/v1/organization_role.py b/sdk/python/pulumi_google_native/iam/v1/organization_role.py index a879222db4..752dddcbe5 100644 --- a/sdk/python/pulumi_google_native/iam/v1/organization_role.py +++ b/sdk/python/pulumi_google_native/iam/v1/organization_role.py @@ -241,7 +241,7 @@ def _internal_init(__self__, __props__.__dict__["role_id"] = role_id __props__.__dict__["stage"] = stage __props__.__dict__["title"] = title - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationRole, __self__).__init__( 'google-native:iam/v1:OrganizationRole', diff --git a/sdk/python/pulumi_google_native/iam/v1/provider.py b/sdk/python/pulumi_google_native/iam/v1/provider.py index fc3cc1b1f3..d583d4dab9 100644 --- a/sdk/python/pulumi_google_native/iam/v1/provider.py +++ b/sdk/python/pulumi_google_native/iam/v1/provider.py @@ -298,7 +298,7 @@ def _internal_init(__self__, __props__.__dict__["expire_time"] = None __props__.__dict__["name"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workload_identity_pool_id", "workload_identity_pool_provider_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workloadIdentityPoolId", "workloadIdentityPoolProviderId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Provider, __self__).__init__( 'google-native:iam/v1:Provider', diff --git a/sdk/python/pulumi_google_native/iam/v1/service_account.py b/sdk/python/pulumi_google_native/iam/v1/service_account.py index d5bda9f6d7..eb88e3fdc9 100644 --- a/sdk/python/pulumi_google_native/iam/v1/service_account.py +++ b/sdk/python/pulumi_google_native/iam/v1/service_account.py @@ -81,13 +81,11 @@ def display_name(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""Deprecated. Do not use.""") def etag(self) -> Optional[pulumi.Input[str]]: """ Deprecated. Do not use. """ - warnings.warn("""Deprecated. Do not use.""", DeprecationWarning) - pulumi.log.warn("""etag is deprecated: Deprecated. Do not use.""") - return pulumi.get(self, "etag") @etag.setter @@ -261,13 +259,11 @@ def email(self) -> pulumi.Output[str]: @property @pulumi.getter + @_utilities.deprecated("""Deprecated. Do not use.""") def etag(self) -> pulumi.Output[str]: """ Deprecated. Do not use. """ - warnings.warn("""Deprecated. Do not use.""", DeprecationWarning) - pulumi.log.warn("""etag is deprecated: Deprecated. Do not use.""") - return pulumi.get(self, "etag") @property diff --git a/sdk/python/pulumi_google_native/iam/v1/service_account_iam_policy.py b/sdk/python/pulumi_google_native/iam/v1/service_account_iam_policy.py index fc00590a84..8b70656b16 100644 --- a/sdk/python/pulumi_google_native/iam/v1/service_account_iam_policy.py +++ b/sdk/python/pulumi_google_native/iam/v1/service_account_iam_policy.py @@ -202,7 +202,7 @@ def _internal_init(__self__, __props__.__dict__["service_account_id"] = service_account_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "service_account_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "serviceAccountId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceAccountIamPolicy, __self__).__init__( 'google-native:iam/v1:ServiceAccountIamPolicy', diff --git a/sdk/python/pulumi_google_native/iam/v1/workforce_pool_iam_policy.py b/sdk/python/pulumi_google_native/iam/v1/workforce_pool_iam_policy.py index efa100618f..90ea61ce0b 100644 --- a/sdk/python/pulumi_google_native/iam/v1/workforce_pool_iam_policy.py +++ b/sdk/python/pulumi_google_native/iam/v1/workforce_pool_iam_policy.py @@ -202,7 +202,7 @@ def _internal_init(__self__, if workforce_pool_id is None and not opts.urn: raise TypeError("Missing required property 'workforce_pool_id'") __props__.__dict__["workforce_pool_id"] = workforce_pool_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "workforce_pool_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "workforcePoolId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(WorkforcePoolIamPolicy, __self__).__init__( 'google-native:iam/v1:WorkforcePoolIamPolicy', diff --git a/sdk/python/pulumi_google_native/iam/v1/workforce_pool_key.py b/sdk/python/pulumi_google_native/iam/v1/workforce_pool_key.py index bcbf34fb81..3f6a44dfe4 100644 --- a/sdk/python/pulumi_google_native/iam/v1/workforce_pool_key.py +++ b/sdk/python/pulumi_google_native/iam/v1/workforce_pool_key.py @@ -181,7 +181,7 @@ def _internal_init(__self__, __props__.__dict__["expire_time"] = None __props__.__dict__["name"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "provider_id", "workforce_pool_id", "workforce_pool_provider_key_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "providerId", "workforcePoolId", "workforcePoolProviderKeyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(WorkforcePoolKey, __self__).__init__( 'google-native:iam/v1:WorkforcePoolKey', diff --git a/sdk/python/pulumi_google_native/iam/v1/workforce_pool_provider.py b/sdk/python/pulumi_google_native/iam/v1/workforce_pool_provider.py index 4fdf65c7a2..cd42e675b7 100644 --- a/sdk/python/pulumi_google_native/iam/v1/workforce_pool_provider.py +++ b/sdk/python/pulumi_google_native/iam/v1/workforce_pool_provider.py @@ -265,7 +265,7 @@ def _internal_init(__self__, __props__.__dict__["expire_time"] = None __props__.__dict__["name"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "workforce_pool_id", "workforce_pool_provider_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "workforcePoolId", "workforcePoolProviderId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(WorkforcePoolProvider, __self__).__init__( 'google-native:iam/v1:WorkforcePoolProvider', diff --git a/sdk/python/pulumi_google_native/iam/v1/workload_identity_pool.py b/sdk/python/pulumi_google_native/iam/v1/workload_identity_pool.py index 37f07395c0..bf31b039fd 100644 --- a/sdk/python/pulumi_google_native/iam/v1/workload_identity_pool.py +++ b/sdk/python/pulumi_google_native/iam/v1/workload_identity_pool.py @@ -180,7 +180,7 @@ def _internal_init(__self__, __props__.__dict__["expire_time"] = None __props__.__dict__["name"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workload_identity_pool_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workloadIdentityPoolId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(WorkloadIdentityPool, __self__).__init__( 'google-native:iam/v1:WorkloadIdentityPool', diff --git a/sdk/python/pulumi_google_native/iam/v1/workload_identity_pool_key.py b/sdk/python/pulumi_google_native/iam/v1/workload_identity_pool_key.py index 544e95ba32..171080adcc 100644 --- a/sdk/python/pulumi_google_native/iam/v1/workload_identity_pool_key.py +++ b/sdk/python/pulumi_google_native/iam/v1/workload_identity_pool_key.py @@ -196,7 +196,7 @@ def _internal_init(__self__, __props__.__dict__["expire_time"] = None __props__.__dict__["name"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "provider_id", "workload_identity_pool_id", "workload_identity_pool_provider_key_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "providerId", "workloadIdentityPoolId", "workloadIdentityPoolProviderKeyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(WorkloadIdentityPoolKey, __self__).__init__( 'google-native:iam/v1:WorkloadIdentityPoolKey', diff --git a/sdk/python/pulumi_google_native/iap/v1/dest_group.py b/sdk/python/pulumi_google_native/iap/v1/dest_group.py index 5fd5835b11..d5711eeb1c 100644 --- a/sdk/python/pulumi_google_native/iap/v1/dest_group.py +++ b/sdk/python/pulumi_google_native/iap/v1/dest_group.py @@ -175,7 +175,7 @@ def _internal_init(__self__, if tunnel_dest_group_id is None and not opts.urn: raise TypeError("Missing required property 'tunnel_dest_group_id'") __props__.__dict__["tunnel_dest_group_id"] = tunnel_dest_group_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tunnel_dest_group_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tunnelDestGroupId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DestGroup, __self__).__init__( 'google-native:iap/v1:DestGroup', diff --git a/sdk/python/pulumi_google_native/iap/v1/identity_aware_proxy_client.py b/sdk/python/pulumi_google_native/iap/v1/identity_aware_proxy_client.py index 2861fb0731..109f8d5c35 100644 --- a/sdk/python/pulumi_google_native/iap/v1/identity_aware_proxy_client.py +++ b/sdk/python/pulumi_google_native/iap/v1/identity_aware_proxy_client.py @@ -119,7 +119,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["name"] = None __props__.__dict__["secret"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["brand_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["brandId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(IdentityAwareProxyClient, __self__).__init__( 'google-native:iap/v1:IdentityAwareProxyClient', diff --git a/sdk/python/pulumi_google_native/iap/v1/v1_iam_policy.py b/sdk/python/pulumi_google_native/iap/v1/v1_iam_policy.py index 51bb705f2f..c3f742b12b 100644 --- a/sdk/python/pulumi_google_native/iap/v1/v1_iam_policy.py +++ b/sdk/python/pulumi_google_native/iap/v1/v1_iam_policy.py @@ -146,7 +146,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'v1_id'") __props__.__dict__["v1_id"] = v1_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["v1_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["v1Id"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(V1IamPolicy, __self__).__init__( 'google-native:iap/v1:V1IamPolicy', diff --git a/sdk/python/pulumi_google_native/iap/v1beta1/v1beta1_iam_policy.py b/sdk/python/pulumi_google_native/iap/v1beta1/v1beta1_iam_policy.py index 6e32a031ce..2c791b6792 100644 --- a/sdk/python/pulumi_google_native/iap/v1beta1/v1beta1_iam_policy.py +++ b/sdk/python/pulumi_google_native/iap/v1beta1/v1beta1_iam_policy.py @@ -146,7 +146,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'v1beta1_id'") __props__.__dict__["v1beta1_id"] = v1beta1_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["v1beta1_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["v1beta1Id"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(V1beta1IamPolicy, __self__).__init__( 'google-native:iap/v1beta1:V1beta1IamPolicy', diff --git a/sdk/python/pulumi_google_native/identitytoolkit/v2/default_supported_idp_config.py b/sdk/python/pulumi_google_native/identitytoolkit/v2/default_supported_idp_config.py index 8abd940497..43c7e51d8a 100644 --- a/sdk/python/pulumi_google_native/identitytoolkit/v2/default_supported_idp_config.py +++ b/sdk/python/pulumi_google_native/identitytoolkit/v2/default_supported_idp_config.py @@ -217,7 +217,7 @@ def _internal_init(__self__, if tenant_id is None and not opts.urn: raise TypeError("Missing required property 'tenant_id'") __props__.__dict__["tenant_id"] = tenant_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "tenant_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "tenantId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DefaultSupportedIdpConfig, __self__).__init__( 'google-native:identitytoolkit/v2:DefaultSupportedIdpConfig', diff --git a/sdk/python/pulumi_google_native/identitytoolkit/v2/inbound_saml_config.py b/sdk/python/pulumi_google_native/identitytoolkit/v2/inbound_saml_config.py index 0e95a3a3a1..59d2d714ee 100644 --- a/sdk/python/pulumi_google_native/identitytoolkit/v2/inbound_saml_config.py +++ b/sdk/python/pulumi_google_native/identitytoolkit/v2/inbound_saml_config.py @@ -217,7 +217,7 @@ def _internal_init(__self__, if tenant_id is None and not opts.urn: raise TypeError("Missing required property 'tenant_id'") __props__.__dict__["tenant_id"] = tenant_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "tenant_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "tenantId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(InboundSamlConfig, __self__).__init__( 'google-native:identitytoolkit/v2:InboundSamlConfig', diff --git a/sdk/python/pulumi_google_native/identitytoolkit/v2/oauth_idp_config.py b/sdk/python/pulumi_google_native/identitytoolkit/v2/oauth_idp_config.py index 393bba8366..541aca980b 100644 --- a/sdk/python/pulumi_google_native/identitytoolkit/v2/oauth_idp_config.py +++ b/sdk/python/pulumi_google_native/identitytoolkit/v2/oauth_idp_config.py @@ -257,7 +257,7 @@ def _internal_init(__self__, if tenant_id is None and not opts.urn: raise TypeError("Missing required property 'tenant_id'") __props__.__dict__["tenant_id"] = tenant_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "tenant_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "tenantId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OauthIdpConfig, __self__).__init__( 'google-native:identitytoolkit/v2:OauthIdpConfig', diff --git a/sdk/python/pulumi_google_native/identitytoolkit/v2/tenant_iam_policy.py b/sdk/python/pulumi_google_native/identitytoolkit/v2/tenant_iam_policy.py index 5c8dfe99a9..9c50c59d48 100644 --- a/sdk/python/pulumi_google_native/identitytoolkit/v2/tenant_iam_policy.py +++ b/sdk/python/pulumi_google_native/identitytoolkit/v2/tenant_iam_policy.py @@ -202,7 +202,7 @@ def _internal_init(__self__, __props__.__dict__["tenant_id"] = tenant_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "tenant_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "tenantId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TenantIamPolicy, __self__).__init__( 'google-native:identitytoolkit/v2:TenantIamPolicy', diff --git a/sdk/python/pulumi_google_native/ids/v1/endpoint.py b/sdk/python/pulumi_google_native/ids/v1/endpoint.py index 993be2f7f5..f0b8fd33d8 100644 --- a/sdk/python/pulumi_google_native/ids/v1/endpoint.py +++ b/sdk/python/pulumi_google_native/ids/v1/endpoint.py @@ -266,7 +266,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["endpoint_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["endpointId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Endpoint, __self__).__init__( 'google-native:ids/v1:Endpoint', diff --git a/sdk/python/pulumi_google_native/ids/v1/endpoint_iam_policy.py b/sdk/python/pulumi_google_native/ids/v1/endpoint_iam_policy.py index e3fd59ebf2..602664f0ca 100644 --- a/sdk/python/pulumi_google_native/ids/v1/endpoint_iam_policy.py +++ b/sdk/python/pulumi_google_native/ids/v1/endpoint_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["endpoint_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["endpointId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EndpointIamPolicy, __self__).__init__( 'google-native:ids/v1:EndpointIamPolicy', diff --git a/sdk/python/pulumi_google_native/integrations/v1alpha/_inputs.py b/sdk/python/pulumi_google_native/integrations/v1alpha/_inputs.py index 98e5c35797..a2171184d5 100644 --- a/sdk/python/pulumi_google_native/integrations/v1alpha/_inputs.py +++ b/sdk/python/pulumi_google_native/integrations/v1alpha/_inputs.py @@ -191,13 +191,11 @@ def is_required(self, value: Optional[pulumi.Input[bool]]): @property @pulumi.getter(name="isSearchable") + @_utilities.deprecated("""Used to indicate if a ParameterEntry should be converted to ParamIndexes for ST-Spanner full-text search. DEPRECATED: use searchable.""") def is_searchable(self) -> Optional[pulumi.Input[bool]]: """ Used to indicate if a ParameterEntry should be converted to ParamIndexes for ST-Spanner full-text search. DEPRECATED: use searchable. """ - warnings.warn("""Used to indicate if a ParameterEntry should be converted to ParamIndexes for ST-Spanner full-text search. DEPRECATED: use searchable.""", DeprecationWarning) - pulumi.log.warn("""is_searchable is deprecated: Used to indicate if a ParameterEntry should be converted to ParamIndexes for ST-Spanner full-text search. DEPRECATED: use searchable.""") - return pulumi.get(self, "is_searchable") @is_searchable.setter @@ -800,13 +798,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="combinedConditions") + @_utilities.deprecated("""Combined condition for this task to become an eligible next task. Each of these combined_conditions are joined with logical OR. DEPRECATED: use `condition`""") def combined_conditions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['EnterpriseCrmEventbusProtoCombinedConditionArgs']]]]: """ Combined condition for this task to become an eligible next task. Each of these combined_conditions are joined with logical OR. DEPRECATED: use `condition` """ - warnings.warn("""Combined condition for this task to become an eligible next task. Each of these combined_conditions are joined with logical OR. DEPRECATED: use `condition`""", DeprecationWarning) - pulumi.log.warn("""combined_conditions is deprecated: Combined condition for this task to become an eligible next task. Each of these combined_conditions are joined with logical OR. DEPRECATED: use `condition`""") - return pulumi.get(self, "combined_conditions") @combined_conditions.setter @@ -2071,13 +2067,11 @@ def external_doc_link(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="externalDocMarkdown") + @_utilities.deprecated("""DEPRECATED: Use external_doc_html.""") def external_doc_markdown(self) -> Optional[pulumi.Input[str]]: """ DEPRECATED: Use external_doc_html. """ - warnings.warn("""DEPRECATED: Use external_doc_html.""", DeprecationWarning) - pulumi.log.warn("""external_doc_markdown is deprecated: DEPRECATED: Use external_doc_html.""") - return pulumi.get(self, "external_doc_markdown") @external_doc_markdown.setter @@ -4051,13 +4045,11 @@ def param_specs(self, value: Optional[pulumi.Input['EnterpriseCrmFrontendsEventb @property @pulumi.getter + @_utilities.deprecated("""Deprecated - statistics from the Monarch query.""") def stats(self) -> Optional[pulumi.Input['EnterpriseCrmEventbusStatsArgs']]: """ Deprecated - statistics from the Monarch query. """ - warnings.warn("""Deprecated - statistics from the Monarch query.""", DeprecationWarning) - pulumi.log.warn("""stats is deprecated: Deprecated - statistics from the Monarch query.""") - return pulumi.get(self, "stats") @stats.setter diff --git a/sdk/python/pulumi_google_native/integrations/v1alpha/auth_config.py b/sdk/python/pulumi_google_native/integrations/v1alpha/auth_config.py index 1843b26b1c..16dfa9a578 100644 --- a/sdk/python/pulumi_google_native/integrations/v1alpha/auth_config.py +++ b/sdk/python/pulumi_google_native/integrations/v1alpha/auth_config.py @@ -478,7 +478,7 @@ def _internal_init(__self__, __props__.__dict__["visibility"] = visibility __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "product_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "productId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AuthConfig, __self__).__init__( 'google-native:integrations/v1alpha:AuthConfig', diff --git a/sdk/python/pulumi_google_native/integrations/v1alpha/certificate.py b/sdk/python/pulumi_google_native/integrations/v1alpha/certificate.py index 197419362f..16861e6455 100644 --- a/sdk/python/pulumi_google_native/integrations/v1alpha/certificate.py +++ b/sdk/python/pulumi_google_native/integrations/v1alpha/certificate.py @@ -239,7 +239,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["valid_end_time"] = None __props__.__dict__["valid_start_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "product_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "productId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Certificate, __self__).__init__( 'google-native:integrations/v1alpha:Certificate', diff --git a/sdk/python/pulumi_google_native/integrations/v1alpha/outputs.py b/sdk/python/pulumi_google_native/integrations/v1alpha/outputs.py index cc014a81bb..0b39c20185 100644 --- a/sdk/python/pulumi_google_native/integrations/v1alpha/outputs.py +++ b/sdk/python/pulumi_google_native/integrations/v1alpha/outputs.py @@ -201,13 +201,11 @@ def is_required(self) -> bool: @property @pulumi.getter(name="isSearchable") + @_utilities.deprecated("""Used to indicate if a ParameterEntry should be converted to ParamIndexes for ST-Spanner full-text search. DEPRECATED: use searchable.""") def is_searchable(self) -> bool: """ Used to indicate if a ParameterEntry should be converted to ParamIndexes for ST-Spanner full-text search. DEPRECATED: use searchable. """ - warnings.warn("""Used to indicate if a ParameterEntry should be converted to ParamIndexes for ST-Spanner full-text search. DEPRECATED: use searchable.""", DeprecationWarning) - pulumi.log.warn("""is_searchable is deprecated: Used to indicate if a ParameterEntry should be converted to ParamIndexes for ST-Spanner full-text search. DEPRECATED: use searchable.""") - return pulumi.get(self, "is_searchable") @property @@ -847,13 +845,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="combinedConditions") + @_utilities.deprecated("""Combined condition for this task to become an eligible next task. Each of these combined_conditions are joined with logical OR. DEPRECATED: use `condition`""") def combined_conditions(self) -> Sequence['outputs.EnterpriseCrmEventbusProtoCombinedConditionResponse']: """ Combined condition for this task to become an eligible next task. Each of these combined_conditions are joined with logical OR. DEPRECATED: use `condition` """ - warnings.warn("""Combined condition for this task to become an eligible next task. Each of these combined_conditions are joined with logical OR. DEPRECATED: use `condition`""", DeprecationWarning) - pulumi.log.warn("""combined_conditions is deprecated: Combined condition for this task to become an eligible next task. Each of these combined_conditions are joined with logical OR. DEPRECATED: use `condition`""") - return pulumi.get(self, "combined_conditions") @property @@ -2062,13 +2058,11 @@ def external_doc_link(self) -> str: @property @pulumi.getter(name="externalDocMarkdown") + @_utilities.deprecated("""DEPRECATED: Use external_doc_html.""") def external_doc_markdown(self) -> str: """ DEPRECATED: Use external_doc_html. """ - warnings.warn("""DEPRECATED: Use external_doc_html.""", DeprecationWarning) - pulumi.log.warn("""external_doc_markdown is deprecated: DEPRECATED: Use external_doc_html.""") - return pulumi.get(self, "external_doc_markdown") @property @@ -3968,13 +3962,11 @@ def param_specs(self) -> 'outputs.EnterpriseCrmFrontendsEventbusProtoParamSpecsM @property @pulumi.getter + @_utilities.deprecated("""Deprecated - statistics from the Monarch query.""") def stats(self) -> 'outputs.EnterpriseCrmEventbusStatsResponse': """ Deprecated - statistics from the Monarch query. """ - warnings.warn("""Deprecated - statistics from the Monarch query.""", DeprecationWarning) - pulumi.log.warn("""stats is deprecated: Deprecated - statistics from the Monarch query.""") - return pulumi.get(self, "stats") @property diff --git a/sdk/python/pulumi_google_native/integrations/v1alpha/sfdc_channel.py b/sdk/python/pulumi_google_native/integrations/v1alpha/sfdc_channel.py index 1d89baff6b..298b268b39 100644 --- a/sdk/python/pulumi_google_native/integrations/v1alpha/sfdc_channel.py +++ b/sdk/python/pulumi_google_native/integrations/v1alpha/sfdc_channel.py @@ -251,7 +251,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["delete_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "product_id", "project", "sfdc_instance_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "productId", "project", "sfdcInstanceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SfdcChannel, __self__).__init__( 'google-native:integrations/v1alpha:SfdcChannel', diff --git a/sdk/python/pulumi_google_native/integrations/v1alpha/sfdc_instance.py b/sdk/python/pulumi_google_native/integrations/v1alpha/sfdc_instance.py index b9ad6af4b1..c266c821a3 100644 --- a/sdk/python/pulumi_google_native/integrations/v1alpha/sfdc_instance.py +++ b/sdk/python/pulumi_google_native/integrations/v1alpha/sfdc_instance.py @@ -235,7 +235,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["delete_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "product_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "productId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SfdcInstance, __self__).__init__( 'google-native:integrations/v1alpha:SfdcInstance', diff --git a/sdk/python/pulumi_google_native/integrations/v1alpha/templates_version.py b/sdk/python/pulumi_google_native/integrations/v1alpha/templates_version.py index 9a41ba84fe..e6ae87ff7a 100644 --- a/sdk/python/pulumi_google_native/integrations/v1alpha/templates_version.py +++ b/sdk/python/pulumi_google_native/integrations/v1alpha/templates_version.py @@ -340,7 +340,7 @@ def _internal_init(__self__, __props__.__dict__["snapshot_number"] = None __props__.__dict__["status"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["integrationtemplate_id", "location", "product_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["integrationtemplateId", "location", "productId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TemplatesVersion, __self__).__init__( 'google-native:integrations/v1alpha:TemplatesVersion', diff --git a/sdk/python/pulumi_google_native/integrations/v1alpha/test_case.py b/sdk/python/pulumi_google_native/integrations/v1alpha/test_case.py index 1b18c8068b..2148755b96 100644 --- a/sdk/python/pulumi_google_native/integrations/v1alpha/test_case.py +++ b/sdk/python/pulumi_google_native/integrations/v1alpha/test_case.py @@ -395,7 +395,7 @@ def _internal_init(__self__, __props__.__dict__["version_id"] = version_id __props__.__dict__["workflow_id"] = workflow_id __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["integration_id", "location", "project", "test_case_id", "version_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["integrationId", "location", "project", "testCaseId", "versionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TestCase, __self__).__init__( 'google-native:integrations/v1alpha:TestCase', diff --git a/sdk/python/pulumi_google_native/integrations/v1alpha/version.py b/sdk/python/pulumi_google_native/integrations/v1alpha/version.py index d2d03ebe70..786c052a35 100644 --- a/sdk/python/pulumi_google_native/integrations/v1alpha/version.py +++ b/sdk/python/pulumi_google_native/integrations/v1alpha/version.py @@ -536,7 +536,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["status"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["integration_id", "location", "product_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["integrationId", "location", "productId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Version, __self__).__init__( 'google-native:integrations/v1alpha:Version', diff --git a/sdk/python/pulumi_google_native/jobs/v3/company.py b/sdk/python/pulumi_google_native/jobs/v3/company.py index 5088c73abe..838542c19f 100644 --- a/sdk/python/pulumi_google_native/jobs/v3/company.py +++ b/sdk/python/pulumi_google_native/jobs/v3/company.py @@ -154,13 +154,11 @@ def image_uri(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="keywordSearchableJobCustomAttributes") + @_utilities.deprecated("""Optional. This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword search. Jobs with `string_values` under these specified field keys are returned if any of the values matches the search keyword. Custom field values with parenthesis, brackets and special symbols won't be properly searchable, and those keyword queries need to be surrounded by quotes.""") def keyword_searchable_job_custom_attributes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]: """ Optional. This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword search. Jobs with `string_values` under these specified field keys are returned if any of the values matches the search keyword. Custom field values with parenthesis, brackets and special symbols won't be properly searchable, and those keyword queries need to be surrounded by quotes. """ - warnings.warn("""Optional. This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword search. Jobs with `string_values` under these specified field keys are returned if any of the values matches the search keyword. Custom field values with parenthesis, brackets and special symbols won't be properly searchable, and those keyword queries need to be surrounded by quotes.""", DeprecationWarning) - pulumi.log.warn("""keyword_searchable_job_custom_attributes is deprecated: Optional. This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword search. Jobs with `string_values` under these specified field keys are returned if any of the values matches the search keyword. Custom field values with parenthesis, brackets and special symbols won't be properly searchable, and those keyword queries need to be surrounded by quotes.""") - return pulumi.get(self, "keyword_searchable_job_custom_attributes") @keyword_searchable_job_custom_attributes.setter @@ -417,13 +415,11 @@ def image_uri(self) -> pulumi.Output[str]: @property @pulumi.getter(name="keywordSearchableJobCustomAttributes") + @_utilities.deprecated("""Optional. This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword search. Jobs with `string_values` under these specified field keys are returned if any of the values matches the search keyword. Custom field values with parenthesis, brackets and special symbols won't be properly searchable, and those keyword queries need to be surrounded by quotes.""") def keyword_searchable_job_custom_attributes(self) -> pulumi.Output[Sequence[str]]: """ Optional. This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword search. Jobs with `string_values` under these specified field keys are returned if any of the values matches the search keyword. Custom field values with parenthesis, brackets and special symbols won't be properly searchable, and those keyword queries need to be surrounded by quotes. """ - warnings.warn("""Optional. This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword search. Jobs with `string_values` under these specified field keys are returned if any of the values matches the search keyword. Custom field values with parenthesis, brackets and special symbols won't be properly searchable, and those keyword queries need to be surrounded by quotes.""", DeprecationWarning) - pulumi.log.warn("""keyword_searchable_job_custom_attributes is deprecated: Optional. This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword search. Jobs with `string_values` under these specified field keys are returned if any of the values matches the search keyword. Custom field values with parenthesis, brackets and special symbols won't be properly searchable, and those keyword queries need to be surrounded by quotes.""") - return pulumi.get(self, "keyword_searchable_job_custom_attributes") @property diff --git a/sdk/python/pulumi_google_native/jobs/v3/get_company.py b/sdk/python/pulumi_google_native/jobs/v3/get_company.py index a2ea7584b2..1e156c4fee 100644 --- a/sdk/python/pulumi_google_native/jobs/v3/get_company.py +++ b/sdk/python/pulumi_google_native/jobs/v3/get_company.py @@ -126,13 +126,11 @@ def image_uri(self) -> str: @property @pulumi.getter(name="keywordSearchableJobCustomAttributes") + @_utilities.deprecated("""Optional. This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword search. Jobs with `string_values` under these specified field keys are returned if any of the values matches the search keyword. Custom field values with parenthesis, brackets and special symbols won't be properly searchable, and those keyword queries need to be surrounded by quotes.""") def keyword_searchable_job_custom_attributes(self) -> Sequence[str]: """ Optional. This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword search. Jobs with `string_values` under these specified field keys are returned if any of the values matches the search keyword. Custom field values with parenthesis, brackets and special symbols won't be properly searchable, and those keyword queries need to be surrounded by quotes. """ - warnings.warn("""Optional. This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword search. Jobs with `string_values` under these specified field keys are returned if any of the values matches the search keyword. Custom field values with parenthesis, brackets and special symbols won't be properly searchable, and those keyword queries need to be surrounded by quotes.""", DeprecationWarning) - pulumi.log.warn("""keyword_searchable_job_custom_attributes is deprecated: Optional. This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword search. Jobs with `string_values` under these specified field keys are returned if any of the values matches the search keyword. Custom field values with parenthesis, brackets and special symbols won't be properly searchable, and those keyword queries need to be surrounded by quotes.""") - return pulumi.get(self, "keyword_searchable_job_custom_attributes") @property diff --git a/sdk/python/pulumi_google_native/jobs/v3/get_job.py b/sdk/python/pulumi_google_native/jobs/v3/get_job.py index 143b9ea433..7191597a49 100644 --- a/sdk/python/pulumi_google_native/jobs/v3/get_job.py +++ b/sdk/python/pulumi_google_native/jobs/v3/get_job.py @@ -345,13 +345,11 @@ def title(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified.""") def visibility(self) -> str: """ Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified. """ - warnings.warn("""Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified.""", DeprecationWarning) - pulumi.log.warn("""visibility is deprecated: Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified.""") - return pulumi.get(self, "visibility") diff --git a/sdk/python/pulumi_google_native/jobs/v3/job.py b/sdk/python/pulumi_google_native/jobs/v3/job.py index 97b17bf1d3..7455f8983b 100644 --- a/sdk/python/pulumi_google_native/jobs/v3/job.py +++ b/sdk/python/pulumi_google_native/jobs/v3/job.py @@ -437,13 +437,11 @@ def responsibilities(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified.""") def visibility(self) -> Optional[pulumi.Input['JobVisibility']]: """ Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified. """ - warnings.warn("""Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified.""", DeprecationWarning) - pulumi.log.warn("""visibility is deprecated: Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified.""") - return pulumi.get(self, "visibility") @visibility.setter @@ -913,12 +911,10 @@ def title(self) -> pulumi.Output[str]: @property @pulumi.getter + @_utilities.deprecated("""Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified.""") def visibility(self) -> pulumi.Output[str]: """ Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified. """ - warnings.warn("""Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified.""", DeprecationWarning) - pulumi.log.warn("""visibility is deprecated: Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified.""") - return pulumi.get(self, "visibility") diff --git a/sdk/python/pulumi_google_native/jobs/v4/company.py b/sdk/python/pulumi_google_native/jobs/v4/company.py index 2e1234f142..6b4fd213c7 100644 --- a/sdk/python/pulumi_google_native/jobs/v4/company.py +++ b/sdk/python/pulumi_google_native/jobs/v4/company.py @@ -165,13 +165,11 @@ def image_uri(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="keywordSearchableJobCustomAttributes") + @_utilities.deprecated("""This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword searches. Jobs with `string_values` under these specified field keys are returned if any of the values match the search keyword. Custom field values with parenthesis, brackets and special symbols are not searchable as-is, and those keyword queries must be surrounded by quotes.""") def keyword_searchable_job_custom_attributes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]: """ This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword searches. Jobs with `string_values` under these specified field keys are returned if any of the values match the search keyword. Custom field values with parenthesis, brackets and special symbols are not searchable as-is, and those keyword queries must be surrounded by quotes. """ - warnings.warn("""This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword searches. Jobs with `string_values` under these specified field keys are returned if any of the values match the search keyword. Custom field values with parenthesis, brackets and special symbols are not searchable as-is, and those keyword queries must be surrounded by quotes.""", DeprecationWarning) - pulumi.log.warn("""keyword_searchable_job_custom_attributes is deprecated: This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword searches. Jobs with `string_values` under these specified field keys are returned if any of the values match the search keyword. Custom field values with parenthesis, brackets and special symbols are not searchable as-is, and those keyword queries must be surrounded by quotes.""") - return pulumi.get(self, "keyword_searchable_job_custom_attributes") @keyword_searchable_job_custom_attributes.setter @@ -327,7 +325,7 @@ def _internal_init(__self__, __props__.__dict__["website_uri"] = website_uri __props__.__dict__["derived_info"] = None __props__.__dict__["suspended"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "tenant_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "tenantId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Company, __self__).__init__( 'google-native:jobs/v4:Company', @@ -434,13 +432,11 @@ def image_uri(self) -> pulumi.Output[str]: @property @pulumi.getter(name="keywordSearchableJobCustomAttributes") + @_utilities.deprecated("""This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword searches. Jobs with `string_values` under these specified field keys are returned if any of the values match the search keyword. Custom field values with parenthesis, brackets and special symbols are not searchable as-is, and those keyword queries must be surrounded by quotes.""") def keyword_searchable_job_custom_attributes(self) -> pulumi.Output[Sequence[str]]: """ This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword searches. Jobs with `string_values` under these specified field keys are returned if any of the values match the search keyword. Custom field values with parenthesis, brackets and special symbols are not searchable as-is, and those keyword queries must be surrounded by quotes. """ - warnings.warn("""This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword searches. Jobs with `string_values` under these specified field keys are returned if any of the values match the search keyword. Custom field values with parenthesis, brackets and special symbols are not searchable as-is, and those keyword queries must be surrounded by quotes.""", DeprecationWarning) - pulumi.log.warn("""keyword_searchable_job_custom_attributes is deprecated: This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword searches. Jobs with `string_values` under these specified field keys are returned if any of the values match the search keyword. Custom field values with parenthesis, brackets and special symbols are not searchable as-is, and those keyword queries must be surrounded by quotes.""") - return pulumi.get(self, "keyword_searchable_job_custom_attributes") @property diff --git a/sdk/python/pulumi_google_native/jobs/v4/get_company.py b/sdk/python/pulumi_google_native/jobs/v4/get_company.py index 8044dff807..be9e5a81fa 100644 --- a/sdk/python/pulumi_google_native/jobs/v4/get_company.py +++ b/sdk/python/pulumi_google_native/jobs/v4/get_company.py @@ -126,13 +126,11 @@ def image_uri(self) -> str: @property @pulumi.getter(name="keywordSearchableJobCustomAttributes") + @_utilities.deprecated("""This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword searches. Jobs with `string_values` under these specified field keys are returned if any of the values match the search keyword. Custom field values with parenthesis, brackets and special symbols are not searchable as-is, and those keyword queries must be surrounded by quotes.""") def keyword_searchable_job_custom_attributes(self) -> Sequence[str]: """ This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword searches. Jobs with `string_values` under these specified field keys are returned if any of the values match the search keyword. Custom field values with parenthesis, brackets and special symbols are not searchable as-is, and those keyword queries must be surrounded by quotes. """ - warnings.warn("""This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword searches. Jobs with `string_values` under these specified field keys are returned if any of the values match the search keyword. Custom field values with parenthesis, brackets and special symbols are not searchable as-is, and those keyword queries must be surrounded by quotes.""", DeprecationWarning) - pulumi.log.warn("""keyword_searchable_job_custom_attributes is deprecated: This field is deprecated. Please set the searchability of the custom attribute in the Job.custom_attributes going forward. A list of keys of filterable Job.custom_attributes, whose corresponding `string_values` are used in keyword searches. Jobs with `string_values` under these specified field keys are returned if any of the values match the search keyword. Custom field values with parenthesis, brackets and special symbols are not searchable as-is, and those keyword queries must be surrounded by quotes.""") - return pulumi.get(self, "keyword_searchable_job_custom_attributes") @property diff --git a/sdk/python/pulumi_google_native/jobs/v4/get_job.py b/sdk/python/pulumi_google_native/jobs/v4/get_job.py index b2a11a1a4d..142b02f132 100644 --- a/sdk/python/pulumi_google_native/jobs/v4/get_job.py +++ b/sdk/python/pulumi_google_native/jobs/v4/get_job.py @@ -345,13 +345,11 @@ def title(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified.""") def visibility(self) -> str: """ Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified. """ - warnings.warn("""Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified.""", DeprecationWarning) - pulumi.log.warn("""visibility is deprecated: Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified.""") - return pulumi.get(self, "visibility") diff --git a/sdk/python/pulumi_google_native/jobs/v4/job.py b/sdk/python/pulumi_google_native/jobs/v4/job.py index 9eb6f95683..b2353c9403 100644 --- a/sdk/python/pulumi_google_native/jobs/v4/job.py +++ b/sdk/python/pulumi_google_native/jobs/v4/job.py @@ -449,13 +449,11 @@ def responsibilities(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified.""") def visibility(self) -> Optional[pulumi.Input['JobVisibility']]: """ Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified. """ - warnings.warn("""Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified.""", DeprecationWarning) - pulumi.log.warn("""visibility is deprecated: Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified.""") - return pulumi.get(self, "visibility") @visibility.setter @@ -632,7 +630,7 @@ def _internal_init(__self__, __props__.__dict__["derived_info"] = None __props__.__dict__["posting_create_time"] = None __props__.__dict__["posting_update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "tenant_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "tenantId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Job, __self__).__init__( 'google-native:jobs/v4:Job', @@ -934,12 +932,10 @@ def title(self) -> pulumi.Output[str]: @property @pulumi.getter + @_utilities.deprecated("""Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified.""") def visibility(self) -> pulumi.Output[str]: """ Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified. """ - warnings.warn("""Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified.""", DeprecationWarning) - pulumi.log.warn("""visibility is deprecated: Deprecated. The job is only visible to the owner. The visibility of the job. Defaults to Visibility.ACCOUNT_ONLY if not specified.""") - return pulumi.get(self, "visibility") diff --git a/sdk/python/pulumi_google_native/logging/v2/_inputs.py b/sdk/python/pulumi_google_native/logging/v2/_inputs.py index e9684df4a8..0d7076855d 100644 --- a/sdk/python/pulumi_google_native/logging/v2/_inputs.py +++ b/sdk/python/pulumi_google_native/logging/v2/_inputs.py @@ -490,13 +490,11 @@ def ingest_delay(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="launchStage") + @_utilities.deprecated("""Deprecated. Must use the MetricDescriptor.launch_stage instead.""") def launch_stage(self) -> Optional[pulumi.Input['MetricDescriptorMetadataLaunchStage']]: """ Deprecated. Must use the MetricDescriptor.launch_stage instead. """ - warnings.warn("""Deprecated. Must use the MetricDescriptor.launch_stage instead.""", DeprecationWarning) - pulumi.log.warn("""launch_stage is deprecated: Deprecated. Must use the MetricDescriptor.launch_stage instead.""") - return pulumi.get(self, "launch_stage") @launch_stage.setter diff --git a/sdk/python/pulumi_google_native/logging/v2/billing_account_bucket.py b/sdk/python/pulumi_google_native/logging/v2/billing_account_bucket.py index 2090efc976..cbb5f33a80 100644 --- a/sdk/python/pulumi_google_native/logging/v2/billing_account_bucket.py +++ b/sdk/python/pulumi_google_native/logging/v2/billing_account_bucket.py @@ -265,7 +265,7 @@ def _internal_init(__self__, __props__.__dict__["lifecycle_state"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["billing_account_id", "bucket_id", "location"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["billingAccountId", "bucketId", "location"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(BillingAccountBucket, __self__).__init__( 'google-native:logging/v2:BillingAccountBucket', diff --git a/sdk/python/pulumi_google_native/logging/v2/billing_account_bucket_link.py b/sdk/python/pulumi_google_native/logging/v2/billing_account_bucket_link.py index f95e70b839..00cd1de1c1 100644 --- a/sdk/python/pulumi_google_native/logging/v2/billing_account_bucket_link.py +++ b/sdk/python/pulumi_google_native/logging/v2/billing_account_bucket_link.py @@ -198,7 +198,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = name __props__.__dict__["create_time"] = None __props__.__dict__["lifecycle_state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["billing_account_id", "bucket_id", "link_id", "location"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["billingAccountId", "bucketId", "linkId", "location"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(BillingAccountBucketLink, __self__).__init__( 'google-native:logging/v2:BillingAccountBucketLink', diff --git a/sdk/python/pulumi_google_native/logging/v2/billing_account_bucket_view.py b/sdk/python/pulumi_google_native/logging/v2/billing_account_bucket_view.py index 43901435eb..9cb86be7d8 100644 --- a/sdk/python/pulumi_google_native/logging/v2/billing_account_bucket_view.py +++ b/sdk/python/pulumi_google_native/logging/v2/billing_account_bucket_view.py @@ -196,7 +196,7 @@ def _internal_init(__self__, __props__.__dict__["view_id"] = view_id __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["billing_account_id", "bucket_id", "location", "view_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["billingAccountId", "bucketId", "location", "viewId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(BillingAccountBucketView, __self__).__init__( 'google-native:logging/v2:BillingAccountBucketView', diff --git a/sdk/python/pulumi_google_native/logging/v2/billing_account_exclusion.py b/sdk/python/pulumi_google_native/logging/v2/billing_account_exclusion.py index a29d818c52..3203a62d9f 100644 --- a/sdk/python/pulumi_google_native/logging/v2/billing_account_exclusion.py +++ b/sdk/python/pulumi_google_native/logging/v2/billing_account_exclusion.py @@ -163,7 +163,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = name __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["billing_account_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["billingAccountId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(BillingAccountExclusion, __self__).__init__( 'google-native:logging/v2:BillingAccountExclusion', diff --git a/sdk/python/pulumi_google_native/logging/v2/billing_account_sink.py b/sdk/python/pulumi_google_native/logging/v2/billing_account_sink.py index 5468ec1a96..c8e6654a56 100644 --- a/sdk/python/pulumi_google_native/logging/v2/billing_account_sink.py +++ b/sdk/python/pulumi_google_native/logging/v2/billing_account_sink.py @@ -188,13 +188,11 @@ def name(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="outputVersionFormat") + @_utilities.deprecated("""Deprecated. This field is unused.""") def output_version_format(self) -> Optional[pulumi.Input['BillingAccountSinkOutputVersionFormat']]: """ Deprecated. This field is unused. """ - warnings.warn("""Deprecated. This field is unused.""", DeprecationWarning) - pulumi.log.warn("""output_version_format is deprecated: Deprecated. This field is unused.""") - return pulumi.get(self, "output_version_format") @output_version_format.setter @@ -313,7 +311,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None __props__.__dict__["writer_identity"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["billing_account_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["billingAccountId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(BillingAccountSink, __self__).__init__( 'google-native:logging/v2:BillingAccountSink', @@ -441,13 +439,11 @@ def name(self) -> pulumi.Output[str]: @property @pulumi.getter(name="outputVersionFormat") + @_utilities.deprecated("""Deprecated. This field is unused.""") def output_version_format(self) -> pulumi.Output[str]: """ Deprecated. This field is unused. """ - warnings.warn("""Deprecated. This field is unused.""", DeprecationWarning) - pulumi.log.warn("""output_version_format is deprecated: Deprecated. This field is unused.""") - return pulumi.get(self, "output_version_format") @property diff --git a/sdk/python/pulumi_google_native/logging/v2/bucket.py b/sdk/python/pulumi_google_native/logging/v2/bucket.py index 51080f1bf1..ddd09537e1 100644 --- a/sdk/python/pulumi_google_native/logging/v2/bucket.py +++ b/sdk/python/pulumi_google_native/logging/v2/bucket.py @@ -264,7 +264,7 @@ def _internal_init(__self__, __props__.__dict__["lifecycle_state"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bucket_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bucketId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Bucket, __self__).__init__( 'google-native:logging/v2:Bucket', diff --git a/sdk/python/pulumi_google_native/logging/v2/bucket_view.py b/sdk/python/pulumi_google_native/logging/v2/bucket_view.py index 9b9e6008fb..5403572b20 100644 --- a/sdk/python/pulumi_google_native/logging/v2/bucket_view.py +++ b/sdk/python/pulumi_google_native/logging/v2/bucket_view.py @@ -193,7 +193,7 @@ def _internal_init(__self__, __props__.__dict__["view_id"] = view_id __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bucket_id", "location", "project", "view_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bucketId", "location", "project", "viewId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(BucketView, __self__).__init__( 'google-native:logging/v2:BucketView', diff --git a/sdk/python/pulumi_google_native/logging/v2/folder_bucket.py b/sdk/python/pulumi_google_native/logging/v2/folder_bucket.py index 9c2bf87687..94044f5bd3 100644 --- a/sdk/python/pulumi_google_native/logging/v2/folder_bucket.py +++ b/sdk/python/pulumi_google_native/logging/v2/folder_bucket.py @@ -265,7 +265,7 @@ def _internal_init(__self__, __props__.__dict__["lifecycle_state"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bucket_id", "folder_id", "location"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bucketId", "folderId", "location"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FolderBucket, __self__).__init__( 'google-native:logging/v2:FolderBucket', diff --git a/sdk/python/pulumi_google_native/logging/v2/folder_bucket_link.py b/sdk/python/pulumi_google_native/logging/v2/folder_bucket_link.py index 48267c5180..024f495239 100644 --- a/sdk/python/pulumi_google_native/logging/v2/folder_bucket_link.py +++ b/sdk/python/pulumi_google_native/logging/v2/folder_bucket_link.py @@ -198,7 +198,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = name __props__.__dict__["create_time"] = None __props__.__dict__["lifecycle_state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bucket_id", "folder_id", "link_id", "location"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bucketId", "folderId", "linkId", "location"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FolderBucketLink, __self__).__init__( 'google-native:logging/v2:FolderBucketLink', diff --git a/sdk/python/pulumi_google_native/logging/v2/folder_bucket_view.py b/sdk/python/pulumi_google_native/logging/v2/folder_bucket_view.py index 44fcbfba4c..d0f7f0253b 100644 --- a/sdk/python/pulumi_google_native/logging/v2/folder_bucket_view.py +++ b/sdk/python/pulumi_google_native/logging/v2/folder_bucket_view.py @@ -196,7 +196,7 @@ def _internal_init(__self__, __props__.__dict__["view_id"] = view_id __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bucket_id", "folder_id", "location", "view_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bucketId", "folderId", "location", "viewId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FolderBucketView, __self__).__init__( 'google-native:logging/v2:FolderBucketView', diff --git a/sdk/python/pulumi_google_native/logging/v2/folder_exclusion.py b/sdk/python/pulumi_google_native/logging/v2/folder_exclusion.py index a05dcba332..66e6702a4b 100644 --- a/sdk/python/pulumi_google_native/logging/v2/folder_exclusion.py +++ b/sdk/python/pulumi_google_native/logging/v2/folder_exclusion.py @@ -163,7 +163,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = name __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folder_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folderId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FolderExclusion, __self__).__init__( 'google-native:logging/v2:FolderExclusion', diff --git a/sdk/python/pulumi_google_native/logging/v2/folder_sink.py b/sdk/python/pulumi_google_native/logging/v2/folder_sink.py index 4b9bdda672..1ff41f77b4 100644 --- a/sdk/python/pulumi_google_native/logging/v2/folder_sink.py +++ b/sdk/python/pulumi_google_native/logging/v2/folder_sink.py @@ -188,13 +188,11 @@ def name(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="outputVersionFormat") + @_utilities.deprecated("""Deprecated. This field is unused.""") def output_version_format(self) -> Optional[pulumi.Input['FolderSinkOutputVersionFormat']]: """ Deprecated. This field is unused. """ - warnings.warn("""Deprecated. This field is unused.""", DeprecationWarning) - pulumi.log.warn("""output_version_format is deprecated: Deprecated. This field is unused.""") - return pulumi.get(self, "output_version_format") @output_version_format.setter @@ -313,7 +311,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None __props__.__dict__["writer_identity"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folder_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folderId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FolderSink, __self__).__init__( 'google-native:logging/v2:FolderSink', @@ -441,13 +439,11 @@ def name(self) -> pulumi.Output[str]: @property @pulumi.getter(name="outputVersionFormat") + @_utilities.deprecated("""Deprecated. This field is unused.""") def output_version_format(self) -> pulumi.Output[str]: """ Deprecated. This field is unused. """ - warnings.warn("""Deprecated. This field is unused.""", DeprecationWarning) - pulumi.log.warn("""output_version_format is deprecated: Deprecated. This field is unused.""") - return pulumi.get(self, "output_version_format") @property diff --git a/sdk/python/pulumi_google_native/logging/v2/get_billing_account_sink.py b/sdk/python/pulumi_google_native/logging/v2/get_billing_account_sink.py index c0e49c6058..9dc40da175 100644 --- a/sdk/python/pulumi_google_native/logging/v2/get_billing_account_sink.py +++ b/sdk/python/pulumi_google_native/logging/v2/get_billing_account_sink.py @@ -131,13 +131,11 @@ def name(self) -> str: @property @pulumi.getter(name="outputVersionFormat") + @_utilities.deprecated("""Deprecated. This field is unused.""") def output_version_format(self) -> str: """ Deprecated. This field is unused. """ - warnings.warn("""Deprecated. This field is unused.""", DeprecationWarning) - pulumi.log.warn("""output_version_format is deprecated: Deprecated. This field is unused.""") - return pulumi.get(self, "output_version_format") @property diff --git a/sdk/python/pulumi_google_native/logging/v2/get_folder_sink.py b/sdk/python/pulumi_google_native/logging/v2/get_folder_sink.py index 17048e529d..05284615ad 100644 --- a/sdk/python/pulumi_google_native/logging/v2/get_folder_sink.py +++ b/sdk/python/pulumi_google_native/logging/v2/get_folder_sink.py @@ -131,13 +131,11 @@ def name(self) -> str: @property @pulumi.getter(name="outputVersionFormat") + @_utilities.deprecated("""Deprecated. This field is unused.""") def output_version_format(self) -> str: """ Deprecated. This field is unused. """ - warnings.warn("""Deprecated. This field is unused.""", DeprecationWarning) - pulumi.log.warn("""output_version_format is deprecated: Deprecated. This field is unused.""") - return pulumi.get(self, "output_version_format") @property diff --git a/sdk/python/pulumi_google_native/logging/v2/get_metric.py b/sdk/python/pulumi_google_native/logging/v2/get_metric.py index 56567e51b9..104ed2740d 100644 --- a/sdk/python/pulumi_google_native/logging/v2/get_metric.py +++ b/sdk/python/pulumi_google_native/logging/v2/get_metric.py @@ -147,13 +147,11 @@ def value_extractor(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""Deprecated. The API version that created or updated this metric. The v2 format is used by default and cannot be changed.""") def version(self) -> str: """ Deprecated. The API version that created or updated this metric. The v2 format is used by default and cannot be changed. """ - warnings.warn("""Deprecated. The API version that created or updated this metric. The v2 format is used by default and cannot be changed.""", DeprecationWarning) - pulumi.log.warn("""version is deprecated: Deprecated. The API version that created or updated this metric. The v2 format is used by default and cannot be changed.""") - return pulumi.get(self, "version") diff --git a/sdk/python/pulumi_google_native/logging/v2/get_organization_sink.py b/sdk/python/pulumi_google_native/logging/v2/get_organization_sink.py index 8c6f7a5f16..be8fe254bf 100644 --- a/sdk/python/pulumi_google_native/logging/v2/get_organization_sink.py +++ b/sdk/python/pulumi_google_native/logging/v2/get_organization_sink.py @@ -131,13 +131,11 @@ def name(self) -> str: @property @pulumi.getter(name="outputVersionFormat") + @_utilities.deprecated("""Deprecated. This field is unused.""") def output_version_format(self) -> str: """ Deprecated. This field is unused. """ - warnings.warn("""Deprecated. This field is unused.""", DeprecationWarning) - pulumi.log.warn("""output_version_format is deprecated: Deprecated. This field is unused.""") - return pulumi.get(self, "output_version_format") @property diff --git a/sdk/python/pulumi_google_native/logging/v2/get_sink.py b/sdk/python/pulumi_google_native/logging/v2/get_sink.py index b1a5461a63..6f5683df32 100644 --- a/sdk/python/pulumi_google_native/logging/v2/get_sink.py +++ b/sdk/python/pulumi_google_native/logging/v2/get_sink.py @@ -131,13 +131,11 @@ def name(self) -> str: @property @pulumi.getter(name="outputVersionFormat") + @_utilities.deprecated("""Deprecated. This field is unused.""") def output_version_format(self) -> str: """ Deprecated. This field is unused. """ - warnings.warn("""Deprecated. This field is unused.""", DeprecationWarning) - pulumi.log.warn("""output_version_format is deprecated: Deprecated. This field is unused.""") - return pulumi.get(self, "output_version_format") @property diff --git a/sdk/python/pulumi_google_native/logging/v2/link.py b/sdk/python/pulumi_google_native/logging/v2/link.py index 914f66e8e0..b2a88b6167 100644 --- a/sdk/python/pulumi_google_native/logging/v2/link.py +++ b/sdk/python/pulumi_google_native/logging/v2/link.py @@ -195,7 +195,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["create_time"] = None __props__.__dict__["lifecycle_state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bucket_id", "link_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bucketId", "linkId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Link, __self__).__init__( 'google-native:logging/v2:Link', diff --git a/sdk/python/pulumi_google_native/logging/v2/metric.py b/sdk/python/pulumi_google_native/logging/v2/metric.py index 2c668b6e10..6bb3447895 100644 --- a/sdk/python/pulumi_google_native/logging/v2/metric.py +++ b/sdk/python/pulumi_google_native/logging/v2/metric.py @@ -185,13 +185,11 @@ def value_extractor(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""Deprecated. The API version that created or updated this metric. The v2 format is used by default and cannot be changed.""") def version(self) -> Optional[pulumi.Input['MetricVersion']]: """ Deprecated. The API version that created or updated this metric. The v2 format is used by default and cannot be changed. """ - warnings.warn("""Deprecated. The API version that created or updated this metric. The v2 format is used by default and cannot be changed.""", DeprecationWarning) - pulumi.log.warn("""version is deprecated: Deprecated. The API version that created or updated this metric. The v2 format is used by default and cannot be changed.""") - return pulumi.get(self, "version") @version.setter @@ -425,12 +423,10 @@ def value_extractor(self) -> pulumi.Output[str]: @property @pulumi.getter + @_utilities.deprecated("""Deprecated. The API version that created or updated this metric. The v2 format is used by default and cannot be changed.""") def version(self) -> pulumi.Output[str]: """ Deprecated. The API version that created or updated this metric. The v2 format is used by default and cannot be changed. """ - warnings.warn("""Deprecated. The API version that created or updated this metric. The v2 format is used by default and cannot be changed.""", DeprecationWarning) - pulumi.log.warn("""version is deprecated: Deprecated. The API version that created or updated this metric. The v2 format is used by default and cannot be changed.""") - return pulumi.get(self, "version") diff --git a/sdk/python/pulumi_google_native/logging/v2/organization_bucket.py b/sdk/python/pulumi_google_native/logging/v2/organization_bucket.py index 313bd73dd6..c55f322067 100644 --- a/sdk/python/pulumi_google_native/logging/v2/organization_bucket.py +++ b/sdk/python/pulumi_google_native/logging/v2/organization_bucket.py @@ -265,7 +265,7 @@ def _internal_init(__self__, __props__.__dict__["lifecycle_state"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bucket_id", "location", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bucketId", "location", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationBucket, __self__).__init__( 'google-native:logging/v2:OrganizationBucket', diff --git a/sdk/python/pulumi_google_native/logging/v2/organization_bucket_link.py b/sdk/python/pulumi_google_native/logging/v2/organization_bucket_link.py index 7afd3bef7e..cd511f38ca 100644 --- a/sdk/python/pulumi_google_native/logging/v2/organization_bucket_link.py +++ b/sdk/python/pulumi_google_native/logging/v2/organization_bucket_link.py @@ -198,7 +198,7 @@ def _internal_init(__self__, __props__.__dict__["organization_id"] = organization_id __props__.__dict__["create_time"] = None __props__.__dict__["lifecycle_state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bucket_id", "link_id", "location", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bucketId", "linkId", "location", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationBucketLink, __self__).__init__( 'google-native:logging/v2:OrganizationBucketLink', diff --git a/sdk/python/pulumi_google_native/logging/v2/organization_bucket_view.py b/sdk/python/pulumi_google_native/logging/v2/organization_bucket_view.py index d77db45ad8..7dfb0038de 100644 --- a/sdk/python/pulumi_google_native/logging/v2/organization_bucket_view.py +++ b/sdk/python/pulumi_google_native/logging/v2/organization_bucket_view.py @@ -196,7 +196,7 @@ def _internal_init(__self__, __props__.__dict__["view_id"] = view_id __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bucket_id", "location", "organization_id", "view_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bucketId", "location", "organizationId", "viewId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationBucketView, __self__).__init__( 'google-native:logging/v2:OrganizationBucketView', diff --git a/sdk/python/pulumi_google_native/logging/v2/organization_exclusion.py b/sdk/python/pulumi_google_native/logging/v2/organization_exclusion.py index d68777ba08..e0ed54b886 100644 --- a/sdk/python/pulumi_google_native/logging/v2/organization_exclusion.py +++ b/sdk/python/pulumi_google_native/logging/v2/organization_exclusion.py @@ -163,7 +163,7 @@ def _internal_init(__self__, __props__.__dict__["organization_id"] = organization_id __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationExclusion, __self__).__init__( 'google-native:logging/v2:OrganizationExclusion', diff --git a/sdk/python/pulumi_google_native/logging/v2/organization_sink.py b/sdk/python/pulumi_google_native/logging/v2/organization_sink.py index 690d79b968..b8bc6f5077 100644 --- a/sdk/python/pulumi_google_native/logging/v2/organization_sink.py +++ b/sdk/python/pulumi_google_native/logging/v2/organization_sink.py @@ -188,13 +188,11 @@ def name(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="outputVersionFormat") + @_utilities.deprecated("""Deprecated. This field is unused.""") def output_version_format(self) -> Optional[pulumi.Input['OrganizationSinkOutputVersionFormat']]: """ Deprecated. This field is unused. """ - warnings.warn("""Deprecated. This field is unused.""", DeprecationWarning) - pulumi.log.warn("""output_version_format is deprecated: Deprecated. This field is unused.""") - return pulumi.get(self, "output_version_format") @output_version_format.setter @@ -313,7 +311,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None __props__.__dict__["writer_identity"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationSink, __self__).__init__( 'google-native:logging/v2:OrganizationSink', @@ -441,13 +439,11 @@ def organization_id(self) -> pulumi.Output[str]: @property @pulumi.getter(name="outputVersionFormat") + @_utilities.deprecated("""Deprecated. This field is unused.""") def output_version_format(self) -> pulumi.Output[str]: """ Deprecated. This field is unused. """ - warnings.warn("""Deprecated. This field is unused.""", DeprecationWarning) - pulumi.log.warn("""output_version_format is deprecated: Deprecated. This field is unused.""") - return pulumi.get(self, "output_version_format") @property diff --git a/sdk/python/pulumi_google_native/logging/v2/outputs.py b/sdk/python/pulumi_google_native/logging/v2/outputs.py index 1ea7654908..a1fc31cd78 100644 --- a/sdk/python/pulumi_google_native/logging/v2/outputs.py +++ b/sdk/python/pulumi_google_native/logging/v2/outputs.py @@ -674,13 +674,11 @@ def ingest_delay(self) -> str: @property @pulumi.getter(name="launchStage") + @_utilities.deprecated("""Deprecated. Must use the MetricDescriptor.launch_stage instead.""") def launch_stage(self) -> str: """ Deprecated. Must use the MetricDescriptor.launch_stage instead. """ - warnings.warn("""Deprecated. Must use the MetricDescriptor.launch_stage instead.""", DeprecationWarning) - pulumi.log.warn("""launch_stage is deprecated: Deprecated. Must use the MetricDescriptor.launch_stage instead.""") - return pulumi.get(self, "launch_stage") @property diff --git a/sdk/python/pulumi_google_native/logging/v2/sink.py b/sdk/python/pulumi_google_native/logging/v2/sink.py index 058861159d..febc7652dd 100644 --- a/sdk/python/pulumi_google_native/logging/v2/sink.py +++ b/sdk/python/pulumi_google_native/logging/v2/sink.py @@ -180,13 +180,11 @@ def name(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="outputVersionFormat") + @_utilities.deprecated("""Deprecated. This field is unused.""") def output_version_format(self) -> Optional[pulumi.Input['SinkOutputVersionFormat']]: """ Deprecated. This field is unused. """ - warnings.warn("""Deprecated. This field is unused.""", DeprecationWarning) - pulumi.log.warn("""output_version_format is deprecated: Deprecated. This field is unused.""") - return pulumi.get(self, "output_version_format") @output_version_format.setter @@ -435,13 +433,11 @@ def name(self) -> pulumi.Output[str]: @property @pulumi.getter(name="outputVersionFormat") + @_utilities.deprecated("""Deprecated. This field is unused.""") def output_version_format(self) -> pulumi.Output[str]: """ Deprecated. This field is unused. """ - warnings.warn("""Deprecated. This field is unused.""", DeprecationWarning) - pulumi.log.warn("""output_version_format is deprecated: Deprecated. This field is unused.""") - return pulumi.get(self, "output_version_format") @property diff --git a/sdk/python/pulumi_google_native/looker/v1/instance.py b/sdk/python/pulumi_google_native/looker/v1/instance.py index ab6b53b8e6..625c2d3578 100644 --- a/sdk/python/pulumi_google_native/looker/v1/instance.py +++ b/sdk/python/pulumi_google_native/looker/v1/instance.py @@ -385,7 +385,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Instance, __self__).__init__( 'google-native:looker/v1:Instance', diff --git a/sdk/python/pulumi_google_native/looker/v1/instance_backup_iam_policy.py b/sdk/python/pulumi_google_native/looker/v1/instance_backup_iam_policy.py index b1f8378e0f..4365b71cc4 100644 --- a/sdk/python/pulumi_google_native/looker/v1/instance_backup_iam_policy.py +++ b/sdk/python/pulumi_google_native/looker/v1/instance_backup_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "instance_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "instanceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(InstanceBackupIamPolicy, __self__).__init__( 'google-native:looker/v1:InstanceBackupIamPolicy', diff --git a/sdk/python/pulumi_google_native/looker/v1/instance_iam_policy.py b/sdk/python/pulumi_google_native/looker/v1/instance_iam_policy.py index 7689d4f21c..d24195e546 100644 --- a/sdk/python/pulumi_google_native/looker/v1/instance_iam_policy.py +++ b/sdk/python/pulumi_google_native/looker/v1/instance_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(InstanceIamPolicy, __self__).__init__( 'google-native:looker/v1:InstanceIamPolicy', diff --git a/sdk/python/pulumi_google_native/managedidentities/v1/backup.py b/sdk/python/pulumi_google_native/managedidentities/v1/backup.py index 7f059353e7..4214424ed7 100644 --- a/sdk/python/pulumi_google_native/managedidentities/v1/backup.py +++ b/sdk/python/pulumi_google_native/managedidentities/v1/backup.py @@ -144,7 +144,7 @@ def _internal_init(__self__, __props__.__dict__["status_message"] = None __props__.__dict__["type"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "domain_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "domainId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Backup, __self__).__init__( 'google-native:managedidentities/v1:Backup', diff --git a/sdk/python/pulumi_google_native/managedidentities/v1/domain.py b/sdk/python/pulumi_google_native/managedidentities/v1/domain.py index 72d41f193b..b5cdecce61 100644 --- a/sdk/python/pulumi_google_native/managedidentities/v1/domain.py +++ b/sdk/python/pulumi_google_native/managedidentities/v1/domain.py @@ -252,7 +252,7 @@ def _internal_init(__self__, __props__.__dict__["status_message"] = None __props__.__dict__["trusts"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["domain_name", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["domainName", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Domain, __self__).__init__( 'google-native:managedidentities/v1:Domain', diff --git a/sdk/python/pulumi_google_native/managedidentities/v1/domain_backup_iam_policy.py b/sdk/python/pulumi_google_native/managedidentities/v1/domain_backup_iam_policy.py index 8c9c335afd..ab154c3ac6 100644 --- a/sdk/python/pulumi_google_native/managedidentities/v1/domain_backup_iam_policy.py +++ b/sdk/python/pulumi_google_native/managedidentities/v1/domain_backup_iam_policy.py @@ -177,7 +177,7 @@ def _internal_init(__self__, __props__.__dict__["etag"] = etag __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "domain_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "domainId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DomainBackupIamPolicy, __self__).__init__( 'google-native:managedidentities/v1:DomainBackupIamPolicy', diff --git a/sdk/python/pulumi_google_native/managedidentities/v1/domain_iam_policy.py b/sdk/python/pulumi_google_native/managedidentities/v1/domain_iam_policy.py index 2766394874..5318dea684 100644 --- a/sdk/python/pulumi_google_native/managedidentities/v1/domain_iam_policy.py +++ b/sdk/python/pulumi_google_native/managedidentities/v1/domain_iam_policy.py @@ -161,7 +161,7 @@ def _internal_init(__self__, __props__.__dict__["etag"] = etag __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["domain_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["domainId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DomainIamPolicy, __self__).__init__( 'google-native:managedidentities/v1:DomainIamPolicy', diff --git a/sdk/python/pulumi_google_native/managedidentities/v1/peering.py b/sdk/python/pulumi_google_native/managedidentities/v1/peering.py index 06d31a716a..a7c1276b3a 100644 --- a/sdk/python/pulumi_google_native/managedidentities/v1/peering.py +++ b/sdk/python/pulumi_google_native/managedidentities/v1/peering.py @@ -169,7 +169,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["status_message"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["peering_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["peeringId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Peering, __self__).__init__( 'google-native:managedidentities/v1:Peering', diff --git a/sdk/python/pulumi_google_native/managedidentities/v1/peering_iam_policy.py b/sdk/python/pulumi_google_native/managedidentities/v1/peering_iam_policy.py index 259d1a5bf1..da09173464 100644 --- a/sdk/python/pulumi_google_native/managedidentities/v1/peering_iam_policy.py +++ b/sdk/python/pulumi_google_native/managedidentities/v1/peering_iam_policy.py @@ -161,7 +161,7 @@ def _internal_init(__self__, __props__.__dict__["peering_id"] = peering_id __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["peering_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["peeringId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(PeeringIamPolicy, __self__).__init__( 'google-native:managedidentities/v1:PeeringIamPolicy', diff --git a/sdk/python/pulumi_google_native/managedidentities/v1alpha1/backup.py b/sdk/python/pulumi_google_native/managedidentities/v1alpha1/backup.py index d0f19a8dd4..6ada8df26e 100644 --- a/sdk/python/pulumi_google_native/managedidentities/v1alpha1/backup.py +++ b/sdk/python/pulumi_google_native/managedidentities/v1alpha1/backup.py @@ -164,7 +164,7 @@ def _internal_init(__self__, __props__.__dict__["status_message"] = None __props__.__dict__["type"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "domain_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "domainId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Backup, __self__).__init__( 'google-native:managedidentities/v1alpha1:Backup', diff --git a/sdk/python/pulumi_google_native/managedidentities/v1alpha1/domain_backup_iam_policy.py b/sdk/python/pulumi_google_native/managedidentities/v1alpha1/domain_backup_iam_policy.py index 1bb51048a0..2dd35b0be5 100644 --- a/sdk/python/pulumi_google_native/managedidentities/v1alpha1/domain_backup_iam_policy.py +++ b/sdk/python/pulumi_google_native/managedidentities/v1alpha1/domain_backup_iam_policy.py @@ -177,7 +177,7 @@ def _internal_init(__self__, __props__.__dict__["etag"] = etag __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "domain_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "domainId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DomainBackupIamPolicy, __self__).__init__( 'google-native:managedidentities/v1alpha1:DomainBackupIamPolicy', diff --git a/sdk/python/pulumi_google_native/managedidentities/v1alpha1/domain_iam_policy.py b/sdk/python/pulumi_google_native/managedidentities/v1alpha1/domain_iam_policy.py index 1ff349856a..25918b7a60 100644 --- a/sdk/python/pulumi_google_native/managedidentities/v1alpha1/domain_iam_policy.py +++ b/sdk/python/pulumi_google_native/managedidentities/v1alpha1/domain_iam_policy.py @@ -161,7 +161,7 @@ def _internal_init(__self__, __props__.__dict__["etag"] = etag __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["domain_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["domainId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DomainIamPolicy, __self__).__init__( 'google-native:managedidentities/v1alpha1:DomainIamPolicy', diff --git a/sdk/python/pulumi_google_native/managedidentities/v1alpha1/peering.py b/sdk/python/pulumi_google_native/managedidentities/v1alpha1/peering.py index a665d342b0..d17d278e2f 100644 --- a/sdk/python/pulumi_google_native/managedidentities/v1alpha1/peering.py +++ b/sdk/python/pulumi_google_native/managedidentities/v1alpha1/peering.py @@ -169,7 +169,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["status_message"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["peering_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["peeringId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Peering, __self__).__init__( 'google-native:managedidentities/v1alpha1:Peering', diff --git a/sdk/python/pulumi_google_native/managedidentities/v1alpha1/peering_iam_policy.py b/sdk/python/pulumi_google_native/managedidentities/v1alpha1/peering_iam_policy.py index 5da7565926..72499e90bd 100644 --- a/sdk/python/pulumi_google_native/managedidentities/v1alpha1/peering_iam_policy.py +++ b/sdk/python/pulumi_google_native/managedidentities/v1alpha1/peering_iam_policy.py @@ -161,7 +161,7 @@ def _internal_init(__self__, __props__.__dict__["peering_id"] = peering_id __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["peering_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["peeringId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(PeeringIamPolicy, __self__).__init__( 'google-native:managedidentities/v1alpha1:PeeringIamPolicy', diff --git a/sdk/python/pulumi_google_native/managedidentities/v1beta1/backup.py b/sdk/python/pulumi_google_native/managedidentities/v1beta1/backup.py index 6d054750d7..17d87abb9c 100644 --- a/sdk/python/pulumi_google_native/managedidentities/v1beta1/backup.py +++ b/sdk/python/pulumi_google_native/managedidentities/v1beta1/backup.py @@ -164,7 +164,7 @@ def _internal_init(__self__, __props__.__dict__["status_message"] = None __props__.__dict__["type"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "domain_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "domainId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Backup, __self__).__init__( 'google-native:managedidentities/v1beta1:Backup', diff --git a/sdk/python/pulumi_google_native/managedidentities/v1beta1/domain.py b/sdk/python/pulumi_google_native/managedidentities/v1beta1/domain.py index ec68a48e85..e1113aee9d 100644 --- a/sdk/python/pulumi_google_native/managedidentities/v1beta1/domain.py +++ b/sdk/python/pulumi_google_native/managedidentities/v1beta1/domain.py @@ -232,7 +232,7 @@ def _internal_init(__self__, __props__.__dict__["status_message"] = None __props__.__dict__["trusts"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["domain_name", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["domainName", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Domain, __self__).__init__( 'google-native:managedidentities/v1beta1:Domain', diff --git a/sdk/python/pulumi_google_native/managedidentities/v1beta1/domain_backup_iam_policy.py b/sdk/python/pulumi_google_native/managedidentities/v1beta1/domain_backup_iam_policy.py index a8886a7eec..826a3acb10 100644 --- a/sdk/python/pulumi_google_native/managedidentities/v1beta1/domain_backup_iam_policy.py +++ b/sdk/python/pulumi_google_native/managedidentities/v1beta1/domain_backup_iam_policy.py @@ -177,7 +177,7 @@ def _internal_init(__self__, __props__.__dict__["etag"] = etag __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "domain_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "domainId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DomainBackupIamPolicy, __self__).__init__( 'google-native:managedidentities/v1beta1:DomainBackupIamPolicy', diff --git a/sdk/python/pulumi_google_native/managedidentities/v1beta1/domain_iam_policy.py b/sdk/python/pulumi_google_native/managedidentities/v1beta1/domain_iam_policy.py index 652bd95cfa..bfe8f4ce42 100644 --- a/sdk/python/pulumi_google_native/managedidentities/v1beta1/domain_iam_policy.py +++ b/sdk/python/pulumi_google_native/managedidentities/v1beta1/domain_iam_policy.py @@ -161,7 +161,7 @@ def _internal_init(__self__, __props__.__dict__["etag"] = etag __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["domain_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["domainId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DomainIamPolicy, __self__).__init__( 'google-native:managedidentities/v1beta1:DomainIamPolicy', diff --git a/sdk/python/pulumi_google_native/managedidentities/v1beta1/peering.py b/sdk/python/pulumi_google_native/managedidentities/v1beta1/peering.py index 49ead93adf..26d26ceb69 100644 --- a/sdk/python/pulumi_google_native/managedidentities/v1beta1/peering.py +++ b/sdk/python/pulumi_google_native/managedidentities/v1beta1/peering.py @@ -169,7 +169,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["status_message"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["peering_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["peeringId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Peering, __self__).__init__( 'google-native:managedidentities/v1beta1:Peering', diff --git a/sdk/python/pulumi_google_native/managedidentities/v1beta1/peering_iam_policy.py b/sdk/python/pulumi_google_native/managedidentities/v1beta1/peering_iam_policy.py index 17661f8b36..3f22a630d0 100644 --- a/sdk/python/pulumi_google_native/managedidentities/v1beta1/peering_iam_policy.py +++ b/sdk/python/pulumi_google_native/managedidentities/v1beta1/peering_iam_policy.py @@ -161,7 +161,7 @@ def _internal_init(__self__, __props__.__dict__["peering_id"] = peering_id __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["peering_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["peeringId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(PeeringIamPolicy, __self__).__init__( 'google-native:managedidentities/v1beta1:PeeringIamPolicy', diff --git a/sdk/python/pulumi_google_native/memcache/v1/instance.py b/sdk/python/pulumi_google_native/memcache/v1/instance.py index 1293b143e0..96b946753f 100644 --- a/sdk/python/pulumi_google_native/memcache/v1/instance.py +++ b/sdk/python/pulumi_google_native/memcache/v1/instance.py @@ -367,7 +367,7 @@ def _internal_init(__self__, __props__.__dict__["memcache_nodes"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Instance, __self__).__init__( 'google-native:memcache/v1:Instance', diff --git a/sdk/python/pulumi_google_native/memcache/v1beta2/instance.py b/sdk/python/pulumi_google_native/memcache/v1beta2/instance.py index 88edc1e78f..1752fe44ef 100644 --- a/sdk/python/pulumi_google_native/memcache/v1beta2/instance.py +++ b/sdk/python/pulumi_google_native/memcache/v1beta2/instance.py @@ -368,7 +368,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["update_available"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Instance, __self__).__init__( 'google-native:memcache/v1beta2:Instance', diff --git a/sdk/python/pulumi_google_native/metastore/v1/backup.py b/sdk/python/pulumi_google_native/metastore/v1/backup.py index 9993f08e31..2465ad663d 100644 --- a/sdk/python/pulumi_google_native/metastore/v1/backup.py +++ b/sdk/python/pulumi_google_native/metastore/v1/backup.py @@ -197,7 +197,7 @@ def _internal_init(__self__, __props__.__dict__["restoring_services"] = None __props__.__dict__["service_revision"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "location", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "location", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Backup, __self__).__init__( 'google-native:metastore/v1:Backup', diff --git a/sdk/python/pulumi_google_native/metastore/v1/federation.py b/sdk/python/pulumi_google_native/metastore/v1/federation.py index c35db55d48..7eba77dcfd 100644 --- a/sdk/python/pulumi_google_native/metastore/v1/federation.py +++ b/sdk/python/pulumi_google_native/metastore/v1/federation.py @@ -221,7 +221,7 @@ def _internal_init(__self__, __props__.__dict__["state_message"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["federation_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["federationId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Federation, __self__).__init__( 'google-native:metastore/v1:Federation', diff --git a/sdk/python/pulumi_google_native/metastore/v1/federation_iam_policy.py b/sdk/python/pulumi_google_native/metastore/v1/federation_iam_policy.py index 9dfe4686fe..48c502d5be 100644 --- a/sdk/python/pulumi_google_native/metastore/v1/federation_iam_policy.py +++ b/sdk/python/pulumi_google_native/metastore/v1/federation_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["federation_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["federationId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FederationIamPolicy, __self__).__init__( 'google-native:metastore/v1:FederationIamPolicy', diff --git a/sdk/python/pulumi_google_native/metastore/v1/metadata_import.py b/sdk/python/pulumi_google_native/metastore/v1/metadata_import.py index c6ee3db9e0..3b757bd656 100644 --- a/sdk/python/pulumi_google_native/metastore/v1/metadata_import.py +++ b/sdk/python/pulumi_google_native/metastore/v1/metadata_import.py @@ -222,7 +222,7 @@ def _internal_init(__self__, __props__.__dict__["end_time"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "metadata_import_id", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "metadataImportId", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MetadataImport, __self__).__init__( 'google-native:metastore/v1:MetadataImport', diff --git a/sdk/python/pulumi_google_native/metastore/v1/service.py b/sdk/python/pulumi_google_native/metastore/v1/service.py index b5fd509e78..ba57135676 100644 --- a/sdk/python/pulumi_google_native/metastore/v1/service.py +++ b/sdk/python/pulumi_google_native/metastore/v1/service.py @@ -426,7 +426,7 @@ def _internal_init(__self__, __props__.__dict__["state_message"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Service, __self__).__init__( 'google-native:metastore/v1:Service', diff --git a/sdk/python/pulumi_google_native/metastore/v1/service_backup_iam_policy.py b/sdk/python/pulumi_google_native/metastore/v1/service_backup_iam_policy.py index 593e30a39e..a8562dbf56 100644 --- a/sdk/python/pulumi_google_native/metastore/v1/service_backup_iam_policy.py +++ b/sdk/python/pulumi_google_native/metastore/v1/service_backup_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["service_id"] = service_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "location", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "location", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceBackupIamPolicy, __self__).__init__( 'google-native:metastore/v1:ServiceBackupIamPolicy', diff --git a/sdk/python/pulumi_google_native/metastore/v1/service_iam_policy.py b/sdk/python/pulumi_google_native/metastore/v1/service_iam_policy.py index 88d6c61bbe..9407d7c186 100644 --- a/sdk/python/pulumi_google_native/metastore/v1/service_iam_policy.py +++ b/sdk/python/pulumi_google_native/metastore/v1/service_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["service_id"] = service_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceIamPolicy, __self__).__init__( 'google-native:metastore/v1:ServiceIamPolicy', diff --git a/sdk/python/pulumi_google_native/metastore/v1alpha/backup.py b/sdk/python/pulumi_google_native/metastore/v1alpha/backup.py index e087bf348a..2faf2a7c17 100644 --- a/sdk/python/pulumi_google_native/metastore/v1alpha/backup.py +++ b/sdk/python/pulumi_google_native/metastore/v1alpha/backup.py @@ -197,7 +197,7 @@ def _internal_init(__self__, __props__.__dict__["restoring_services"] = None __props__.__dict__["service_revision"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "location", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "location", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Backup, __self__).__init__( 'google-native:metastore/v1alpha:Backup', diff --git a/sdk/python/pulumi_google_native/metastore/v1alpha/federation.py b/sdk/python/pulumi_google_native/metastore/v1alpha/federation.py index 8119f393c0..b337d389e0 100644 --- a/sdk/python/pulumi_google_native/metastore/v1alpha/federation.py +++ b/sdk/python/pulumi_google_native/metastore/v1alpha/federation.py @@ -221,7 +221,7 @@ def _internal_init(__self__, __props__.__dict__["state_message"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["federation_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["federationId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Federation, __self__).__init__( 'google-native:metastore/v1alpha:Federation', diff --git a/sdk/python/pulumi_google_native/metastore/v1alpha/federation_iam_policy.py b/sdk/python/pulumi_google_native/metastore/v1alpha/federation_iam_policy.py index 58385b7199..3895862a83 100644 --- a/sdk/python/pulumi_google_native/metastore/v1alpha/federation_iam_policy.py +++ b/sdk/python/pulumi_google_native/metastore/v1alpha/federation_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["federation_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["federationId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FederationIamPolicy, __self__).__init__( 'google-native:metastore/v1alpha:FederationIamPolicy', diff --git a/sdk/python/pulumi_google_native/metastore/v1alpha/metadata_import.py b/sdk/python/pulumi_google_native/metastore/v1alpha/metadata_import.py index af6a1189de..39e4610e64 100644 --- a/sdk/python/pulumi_google_native/metastore/v1alpha/metadata_import.py +++ b/sdk/python/pulumi_google_native/metastore/v1alpha/metadata_import.py @@ -222,7 +222,7 @@ def _internal_init(__self__, __props__.__dict__["end_time"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "metadata_import_id", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "metadataImportId", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MetadataImport, __self__).__init__( 'google-native:metastore/v1alpha:MetadataImport', diff --git a/sdk/python/pulumi_google_native/metastore/v1alpha/service.py b/sdk/python/pulumi_google_native/metastore/v1alpha/service.py index 5d7da616e4..9e1b20e3f4 100644 --- a/sdk/python/pulumi_google_native/metastore/v1alpha/service.py +++ b/sdk/python/pulumi_google_native/metastore/v1alpha/service.py @@ -426,7 +426,7 @@ def _internal_init(__self__, __props__.__dict__["state_message"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Service, __self__).__init__( 'google-native:metastore/v1alpha:Service', diff --git a/sdk/python/pulumi_google_native/metastore/v1alpha/service_backup_iam_policy.py b/sdk/python/pulumi_google_native/metastore/v1alpha/service_backup_iam_policy.py index b027134d73..f12bd35822 100644 --- a/sdk/python/pulumi_google_native/metastore/v1alpha/service_backup_iam_policy.py +++ b/sdk/python/pulumi_google_native/metastore/v1alpha/service_backup_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["service_id"] = service_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "location", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "location", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceBackupIamPolicy, __self__).__init__( 'google-native:metastore/v1alpha:ServiceBackupIamPolicy', diff --git a/sdk/python/pulumi_google_native/metastore/v1alpha/service_database_iam_policy.py b/sdk/python/pulumi_google_native/metastore/v1alpha/service_database_iam_policy.py index 822fbf1a6e..8b56309abe 100644 --- a/sdk/python/pulumi_google_native/metastore/v1alpha/service_database_iam_policy.py +++ b/sdk/python/pulumi_google_native/metastore/v1alpha/service_database_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["service_id"] = service_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["database_id", "location", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["databaseId", "location", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceDatabaseIamPolicy, __self__).__init__( 'google-native:metastore/v1alpha:ServiceDatabaseIamPolicy', diff --git a/sdk/python/pulumi_google_native/metastore/v1alpha/service_database_table_iam_policy.py b/sdk/python/pulumi_google_native/metastore/v1alpha/service_database_table_iam_policy.py index ce72918937..3ddd6bfb27 100644 --- a/sdk/python/pulumi_google_native/metastore/v1alpha/service_database_table_iam_policy.py +++ b/sdk/python/pulumi_google_native/metastore/v1alpha/service_database_table_iam_policy.py @@ -249,7 +249,7 @@ def _internal_init(__self__, __props__.__dict__["table_id"] = table_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["database_id", "location", "project", "service_id", "table_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["databaseId", "location", "project", "serviceId", "tableId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceDatabaseTableIamPolicy, __self__).__init__( 'google-native:metastore/v1alpha:ServiceDatabaseTableIamPolicy', diff --git a/sdk/python/pulumi_google_native/metastore/v1alpha/service_iam_policy.py b/sdk/python/pulumi_google_native/metastore/v1alpha/service_iam_policy.py index a4610df436..c40a4e36d7 100644 --- a/sdk/python/pulumi_google_native/metastore/v1alpha/service_iam_policy.py +++ b/sdk/python/pulumi_google_native/metastore/v1alpha/service_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["service_id"] = service_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceIamPolicy, __self__).__init__( 'google-native:metastore/v1alpha:ServiceIamPolicy', diff --git a/sdk/python/pulumi_google_native/metastore/v1beta/backup.py b/sdk/python/pulumi_google_native/metastore/v1beta/backup.py index ec2977d2cb..2a2dc85ee1 100644 --- a/sdk/python/pulumi_google_native/metastore/v1beta/backup.py +++ b/sdk/python/pulumi_google_native/metastore/v1beta/backup.py @@ -197,7 +197,7 @@ def _internal_init(__self__, __props__.__dict__["restoring_services"] = None __props__.__dict__["service_revision"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "location", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "location", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Backup, __self__).__init__( 'google-native:metastore/v1beta:Backup', diff --git a/sdk/python/pulumi_google_native/metastore/v1beta/federation.py b/sdk/python/pulumi_google_native/metastore/v1beta/federation.py index 69d51f7e71..20bbf93d6a 100644 --- a/sdk/python/pulumi_google_native/metastore/v1beta/federation.py +++ b/sdk/python/pulumi_google_native/metastore/v1beta/federation.py @@ -221,7 +221,7 @@ def _internal_init(__self__, __props__.__dict__["state_message"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["federation_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["federationId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Federation, __self__).__init__( 'google-native:metastore/v1beta:Federation', diff --git a/sdk/python/pulumi_google_native/metastore/v1beta/federation_iam_policy.py b/sdk/python/pulumi_google_native/metastore/v1beta/federation_iam_policy.py index b0f34b0867..de357d5793 100644 --- a/sdk/python/pulumi_google_native/metastore/v1beta/federation_iam_policy.py +++ b/sdk/python/pulumi_google_native/metastore/v1beta/federation_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["federation_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["federationId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FederationIamPolicy, __self__).__init__( 'google-native:metastore/v1beta:FederationIamPolicy', diff --git a/sdk/python/pulumi_google_native/metastore/v1beta/metadata_import.py b/sdk/python/pulumi_google_native/metastore/v1beta/metadata_import.py index 6e4a79a5b8..673a4f3a2a 100644 --- a/sdk/python/pulumi_google_native/metastore/v1beta/metadata_import.py +++ b/sdk/python/pulumi_google_native/metastore/v1beta/metadata_import.py @@ -222,7 +222,7 @@ def _internal_init(__self__, __props__.__dict__["end_time"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "metadata_import_id", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "metadataImportId", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MetadataImport, __self__).__init__( 'google-native:metastore/v1beta:MetadataImport', diff --git a/sdk/python/pulumi_google_native/metastore/v1beta/service.py b/sdk/python/pulumi_google_native/metastore/v1beta/service.py index abd39b25dc..e0fff2d52c 100644 --- a/sdk/python/pulumi_google_native/metastore/v1beta/service.py +++ b/sdk/python/pulumi_google_native/metastore/v1beta/service.py @@ -426,7 +426,7 @@ def _internal_init(__self__, __props__.__dict__["state_message"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Service, __self__).__init__( 'google-native:metastore/v1beta:Service', diff --git a/sdk/python/pulumi_google_native/metastore/v1beta/service_backup_iam_policy.py b/sdk/python/pulumi_google_native/metastore/v1beta/service_backup_iam_policy.py index b055994a0f..41a1cbf785 100644 --- a/sdk/python/pulumi_google_native/metastore/v1beta/service_backup_iam_policy.py +++ b/sdk/python/pulumi_google_native/metastore/v1beta/service_backup_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["service_id"] = service_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "location", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "location", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceBackupIamPolicy, __self__).__init__( 'google-native:metastore/v1beta:ServiceBackupIamPolicy', diff --git a/sdk/python/pulumi_google_native/metastore/v1beta/service_database_iam_policy.py b/sdk/python/pulumi_google_native/metastore/v1beta/service_database_iam_policy.py index 002a4dca8e..de343787a5 100644 --- a/sdk/python/pulumi_google_native/metastore/v1beta/service_database_iam_policy.py +++ b/sdk/python/pulumi_google_native/metastore/v1beta/service_database_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["service_id"] = service_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["database_id", "location", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["databaseId", "location", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceDatabaseIamPolicy, __self__).__init__( 'google-native:metastore/v1beta:ServiceDatabaseIamPolicy', diff --git a/sdk/python/pulumi_google_native/metastore/v1beta/service_database_table_iam_policy.py b/sdk/python/pulumi_google_native/metastore/v1beta/service_database_table_iam_policy.py index 208816122c..2645a08c90 100644 --- a/sdk/python/pulumi_google_native/metastore/v1beta/service_database_table_iam_policy.py +++ b/sdk/python/pulumi_google_native/metastore/v1beta/service_database_table_iam_policy.py @@ -249,7 +249,7 @@ def _internal_init(__self__, __props__.__dict__["table_id"] = table_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["database_id", "location", "project", "service_id", "table_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["databaseId", "location", "project", "serviceId", "tableId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceDatabaseTableIamPolicy, __self__).__init__( 'google-native:metastore/v1beta:ServiceDatabaseTableIamPolicy', diff --git a/sdk/python/pulumi_google_native/metastore/v1beta/service_iam_policy.py b/sdk/python/pulumi_google_native/metastore/v1beta/service_iam_policy.py index caa1172153..99871890ee 100644 --- a/sdk/python/pulumi_google_native/metastore/v1beta/service_iam_policy.py +++ b/sdk/python/pulumi_google_native/metastore/v1beta/service_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["service_id"] = service_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceIamPolicy, __self__).__init__( 'google-native:metastore/v1beta:ServiceIamPolicy', diff --git a/sdk/python/pulumi_google_native/migrationcenter/v1/group.py b/sdk/python/pulumi_google_native/migrationcenter/v1/group.py index d01ed5dfd5..9a86fe4ff3 100644 --- a/sdk/python/pulumi_google_native/migrationcenter/v1/group.py +++ b/sdk/python/pulumi_google_native/migrationcenter/v1/group.py @@ -200,7 +200,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["group_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["groupId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Group, __self__).__init__( 'google-native:migrationcenter/v1:Group', diff --git a/sdk/python/pulumi_google_native/migrationcenter/v1/import_data_file.py b/sdk/python/pulumi_google_native/migrationcenter/v1/import_data_file.py index 4797400012..c6b452751e 100644 --- a/sdk/python/pulumi_google_native/migrationcenter/v1/import_data_file.py +++ b/sdk/python/pulumi_google_native/migrationcenter/v1/import_data_file.py @@ -220,7 +220,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["import_data_file_id", "import_job_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["importDataFileId", "importJobId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ImportDataFile, __self__).__init__( 'google-native:migrationcenter/v1:ImportDataFile', diff --git a/sdk/python/pulumi_google_native/migrationcenter/v1/import_job.py b/sdk/python/pulumi_google_native/migrationcenter/v1/import_job.py index aeab64dab0..d39b5e30ef 100644 --- a/sdk/python/pulumi_google_native/migrationcenter/v1/import_job.py +++ b/sdk/python/pulumi_google_native/migrationcenter/v1/import_job.py @@ -206,7 +206,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None __props__.__dict__["validation_report"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["import_job_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["importJobId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ImportJob, __self__).__init__( 'google-native:migrationcenter/v1:ImportJob', diff --git a/sdk/python/pulumi_google_native/migrationcenter/v1/outputs.py b/sdk/python/pulumi_google_native/migrationcenter/v1/outputs.py index 4013d4fcf8..30997fffdc 100644 --- a/sdk/python/pulumi_google_native/migrationcenter/v1/outputs.py +++ b/sdk/python/pulumi_google_native/migrationcenter/v1/outputs.py @@ -958,13 +958,11 @@ def display_name(self) -> str: @property @pulumi.getter(name="overlappingAssetCount") + @_utilities.deprecated("""This field is deprecated, do not rely on it having a value.""") def overlapping_asset_count(self) -> str: """ This field is deprecated, do not rely on it having a value. """ - warnings.warn("""This field is deprecated, do not rely on it having a value.""", DeprecationWarning) - pulumi.log.warn("""overlapping_asset_count is deprecated: This field is deprecated, do not rely on it having a value.""") - return pulumi.get(self, "overlapping_asset_count") @property diff --git a/sdk/python/pulumi_google_native/migrationcenter/v1/preference_set.py b/sdk/python/pulumi_google_native/migrationcenter/v1/preference_set.py index 47bb550657..94b1b3a730 100644 --- a/sdk/python/pulumi_google_native/migrationcenter/v1/preference_set.py +++ b/sdk/python/pulumi_google_native/migrationcenter/v1/preference_set.py @@ -203,7 +203,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "preference_set_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "preferenceSetId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(PreferenceSet, __self__).__init__( 'google-native:migrationcenter/v1:PreferenceSet', diff --git a/sdk/python/pulumi_google_native/migrationcenter/v1/report.py b/sdk/python/pulumi_google_native/migrationcenter/v1/report.py index 1b9a940ea1..48ff674a85 100644 --- a/sdk/python/pulumi_google_native/migrationcenter/v1/report.py +++ b/sdk/python/pulumi_google_native/migrationcenter/v1/report.py @@ -239,7 +239,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["summary"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "report_config_id", "report_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "reportConfigId", "reportId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Report, __self__).__init__( 'google-native:migrationcenter/v1:Report', diff --git a/sdk/python/pulumi_google_native/migrationcenter/v1/report_config.py b/sdk/python/pulumi_google_native/migrationcenter/v1/report_config.py index 9497e9dbaa..6088df484f 100644 --- a/sdk/python/pulumi_google_native/migrationcenter/v1/report_config.py +++ b/sdk/python/pulumi_google_native/migrationcenter/v1/report_config.py @@ -203,7 +203,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "report_config_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "reportConfigId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ReportConfig, __self__).__init__( 'google-native:migrationcenter/v1:ReportConfig', diff --git a/sdk/python/pulumi_google_native/migrationcenter/v1/source.py b/sdk/python/pulumi_google_native/migrationcenter/v1/source.py index 33f612a108..6758581d8d 100644 --- a/sdk/python/pulumi_google_native/migrationcenter/v1/source.py +++ b/sdk/python/pulumi_google_native/migrationcenter/v1/source.py @@ -244,7 +244,7 @@ def _internal_init(__self__, __props__.__dict__["pending_frame_count"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "source_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "sourceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Source, __self__).__init__( 'google-native:migrationcenter/v1:Source', diff --git a/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/group.py b/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/group.py index 32d01bc672..7f12f55ef0 100644 --- a/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/group.py +++ b/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/group.py @@ -200,7 +200,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["group_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["groupId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Group, __self__).__init__( 'google-native:migrationcenter/v1alpha1:Group', diff --git a/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/import_data_file.py b/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/import_data_file.py index 77877da9f6..54135878e0 100644 --- a/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/import_data_file.py +++ b/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/import_data_file.py @@ -220,7 +220,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["import_data_file_id", "import_job_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["importDataFileId", "importJobId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ImportDataFile, __self__).__init__( 'google-native:migrationcenter/v1alpha1:ImportDataFile', diff --git a/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/import_job.py b/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/import_job.py index e93666f0fb..8fd4e696ad 100644 --- a/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/import_job.py +++ b/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/import_job.py @@ -248,7 +248,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None __props__.__dict__["validation_report"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["import_job_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["importJobId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ImportJob, __self__).__init__( 'google-native:migrationcenter/v1alpha1:ImportJob', diff --git a/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/outputs.py b/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/outputs.py index cbb2cfc437..3cd17a5a2d 100644 --- a/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/outputs.py +++ b/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/outputs.py @@ -179,13 +179,11 @@ def frames_reported(self) -> int: @property @pulumi.getter(name="jobErrors") + @_utilities.deprecated("""List of job-level errors. Deprecated, use the job errors under execution_errors instead.""") def job_errors(self) -> Sequence['outputs.ImportErrorResponse']: """ List of job-level errors. Deprecated, use the job errors under execution_errors instead. """ - warnings.warn("""List of job-level errors. Deprecated, use the job errors under execution_errors instead.""", DeprecationWarning) - pulumi.log.warn("""job_errors is deprecated: List of job-level errors. Deprecated, use the job errors under execution_errors instead.""") - return pulumi.get(self, "job_errors") @property @@ -1052,13 +1050,11 @@ def display_name(self) -> str: @property @pulumi.getter(name="overlappingAssetCount") + @_utilities.deprecated("""This field is deprecated, do not rely on it having a value.""") def overlapping_asset_count(self) -> str: """ This field is deprecated, do not rely on it having a value. """ - warnings.warn("""This field is deprecated, do not rely on it having a value.""", DeprecationWarning) - pulumi.log.warn("""overlapping_asset_count is deprecated: This field is deprecated, do not rely on it having a value.""") - return pulumi.get(self, "overlapping_asset_count") @property diff --git a/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/report.py b/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/report.py index 2189bc21cf..29b82842b2 100644 --- a/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/report.py +++ b/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/report.py @@ -239,7 +239,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["summary"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "report_config_id", "report_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "reportConfigId", "reportId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Report, __self__).__init__( 'google-native:migrationcenter/v1alpha1:Report', diff --git a/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/report_config.py b/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/report_config.py index b89855ce3b..3e97e390ef 100644 --- a/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/report_config.py +++ b/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/report_config.py @@ -203,7 +203,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "report_config_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "reportConfigId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ReportConfig, __self__).__init__( 'google-native:migrationcenter/v1alpha1:ReportConfig', diff --git a/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/source.py b/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/source.py index a4deba513b..cfc8c45f41 100644 --- a/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/source.py +++ b/sdk/python/pulumi_google_native/migrationcenter/v1alpha1/source.py @@ -244,7 +244,7 @@ def _internal_init(__self__, __props__.__dict__["pending_frame_count"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "source_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "sourceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Source, __self__).__init__( 'google-native:migrationcenter/v1alpha1:Source', diff --git a/sdk/python/pulumi_google_native/ml/v1/job_iam_policy.py b/sdk/python/pulumi_google_native/ml/v1/job_iam_policy.py index 9d529bc25e..b495bbf2e8 100644 --- a/sdk/python/pulumi_google_native/ml/v1/job_iam_policy.py +++ b/sdk/python/pulumi_google_native/ml/v1/job_iam_policy.py @@ -202,7 +202,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["job_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["jobId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(JobIamPolicy, __self__).__init__( 'google-native:ml/v1:JobIamPolicy', diff --git a/sdk/python/pulumi_google_native/ml/v1/model_iam_policy.py b/sdk/python/pulumi_google_native/ml/v1/model_iam_policy.py index 0c0f51c7b8..6be496ec43 100644 --- a/sdk/python/pulumi_google_native/ml/v1/model_iam_policy.py +++ b/sdk/python/pulumi_google_native/ml/v1/model_iam_policy.py @@ -202,7 +202,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["model_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["modelId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ModelIamPolicy, __self__).__init__( 'google-native:ml/v1:ModelIamPolicy', diff --git a/sdk/python/pulumi_google_native/ml/v1/study.py b/sdk/python/pulumi_google_native/ml/v1/study.py index ada968717b..8e696089f4 100644 --- a/sdk/python/pulumi_google_native/ml/v1/study.py +++ b/sdk/python/pulumi_google_native/ml/v1/study.py @@ -145,7 +145,7 @@ def _internal_init(__self__, __props__.__dict__["inactive_reason"] = None __props__.__dict__["name"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "study_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "studyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Study, __self__).__init__( 'google-native:ml/v1:Study', diff --git a/sdk/python/pulumi_google_native/ml/v1/trial.py b/sdk/python/pulumi_google_native/ml/v1/trial.py index cd5accb373..3af54ebaf9 100644 --- a/sdk/python/pulumi_google_native/ml/v1/trial.py +++ b/sdk/python/pulumi_google_native/ml/v1/trial.py @@ -201,7 +201,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["start_time"] = None __props__.__dict__["trial_infeasible"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "study_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "studyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Trial, __self__).__init__( 'google-native:ml/v1:Trial', diff --git a/sdk/python/pulumi_google_native/ml/v1/version.py b/sdk/python/pulumi_google_native/ml/v1/version.py index fe48b260cb..64668840ee 100644 --- a/sdk/python/pulumi_google_native/ml/v1/version.py +++ b/sdk/python/pulumi_google_native/ml/v1/version.py @@ -487,7 +487,7 @@ def _internal_init(__self__, __props__.__dict__["last_migration_time"] = None __props__.__dict__["last_use_time"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["model_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["modelId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Version, __self__).__init__( 'google-native:ml/v1:Version', diff --git a/sdk/python/pulumi_google_native/monitoring/v1/_inputs.py b/sdk/python/pulumi_google_native/monitoring/v1/_inputs.py index 625fc4e87b..68e55d3bb2 100644 --- a/sdk/python/pulumi_google_native/monitoring/v1/_inputs.py +++ b/sdk/python/pulumi_google_native/monitoring/v1/_inputs.py @@ -2173,13 +2173,11 @@ def secondary_aggregation(self, value: Optional[pulumi.Input['AggregationArgs']] @property @pulumi.getter(name="statisticalTimeSeriesFilter") + @_utilities.deprecated("""Statistics based time series filter. Note: This field is deprecated and completely ignored by the API.""") def statistical_time_series_filter(self) -> Optional[pulumi.Input['StatisticalTimeSeriesFilterArgs']]: """ Statistics based time series filter. Note: This field is deprecated and completely ignored by the API. """ - warnings.warn("""Statistics based time series filter. Note: This field is deprecated and completely ignored by the API.""", DeprecationWarning) - pulumi.log.warn("""statistical_time_series_filter is deprecated: Statistics based time series filter. Note: This field is deprecated and completely ignored by the API.""") - return pulumi.get(self, "statistical_time_series_filter") @statistical_time_series_filter.setter @@ -2266,13 +2264,11 @@ def secondary_aggregation(self, value: Optional[pulumi.Input['AggregationArgs']] @property @pulumi.getter(name="statisticalTimeSeriesFilter") + @_utilities.deprecated("""Statistics based time series filter. Note: This field is deprecated and completely ignored by the API.""") def statistical_time_series_filter(self) -> Optional[pulumi.Input['StatisticalTimeSeriesFilterArgs']]: """ Statistics based time series filter. Note: This field is deprecated and completely ignored by the API. """ - warnings.warn("""Statistics based time series filter. Note: This field is deprecated and completely ignored by the API.""", DeprecationWarning) - pulumi.log.warn("""statistical_time_series_filter is deprecated: Statistics based time series filter. Note: This field is deprecated and completely ignored by the API.""") - return pulumi.get(self, "statistical_time_series_filter") @statistical_time_series_filter.setter diff --git a/sdk/python/pulumi_google_native/monitoring/v1/outputs.py b/sdk/python/pulumi_google_native/monitoring/v1/outputs.py index 16a121c04e..ecea56c95f 100644 --- a/sdk/python/pulumi_google_native/monitoring/v1/outputs.py +++ b/sdk/python/pulumi_google_native/monitoring/v1/outputs.py @@ -2237,13 +2237,11 @@ def secondary_aggregation(self) -> 'outputs.AggregationResponse': @property @pulumi.getter(name="statisticalTimeSeriesFilter") + @_utilities.deprecated("""Statistics based time series filter. Note: This field is deprecated and completely ignored by the API.""") def statistical_time_series_filter(self) -> 'outputs.StatisticalTimeSeriesFilterResponse': """ Statistics based time series filter. Note: This field is deprecated and completely ignored by the API. """ - warnings.warn("""Statistics based time series filter. Note: This field is deprecated and completely ignored by the API.""", DeprecationWarning) - pulumi.log.warn("""statistical_time_series_filter is deprecated: Statistics based time series filter. Note: This field is deprecated and completely ignored by the API.""") - return pulumi.get(self, "statistical_time_series_filter") @@ -2327,13 +2325,11 @@ def secondary_aggregation(self) -> 'outputs.AggregationResponse': @property @pulumi.getter(name="statisticalTimeSeriesFilter") + @_utilities.deprecated("""Statistics based time series filter. Note: This field is deprecated and completely ignored by the API.""") def statistical_time_series_filter(self) -> 'outputs.StatisticalTimeSeriesFilterResponse': """ Statistics based time series filter. Note: This field is deprecated and completely ignored by the API. """ - warnings.warn("""Statistics based time series filter. Note: This field is deprecated and completely ignored by the API.""", DeprecationWarning) - pulumi.log.warn("""statistical_time_series_filter is deprecated: Statistics based time series filter. Note: This field is deprecated and completely ignored by the API.""") - return pulumi.get(self, "statistical_time_series_filter") diff --git a/sdk/python/pulumi_google_native/monitoring/v3/_inputs.py b/sdk/python/pulumi_google_native/monitoring/v3/_inputs.py index 7df4cd8063..a8ba0cd407 100644 --- a/sdk/python/pulumi_google_native/monitoring/v3/_inputs.py +++ b/sdk/python/pulumi_google_native/monitoring/v3/_inputs.py @@ -1837,13 +1837,11 @@ def ingest_delay(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="launchStage") + @_utilities.deprecated("""Deprecated. Must use the MetricDescriptor.launch_stage instead.""") def launch_stage(self) -> Optional[pulumi.Input['MetricDescriptorMetadataLaunchStage']]: """ Deprecated. Must use the MetricDescriptor.launch_stage instead. """ - warnings.warn("""Deprecated. Must use the MetricDescriptor.launch_stage instead.""", DeprecationWarning) - pulumi.log.warn("""launch_stage is deprecated: Deprecated. Must use the MetricDescriptor.launch_stage instead.""") - return pulumi.get(self, "launch_stage") @launch_stage.setter diff --git a/sdk/python/pulumi_google_native/monitoring/v3/outputs.py b/sdk/python/pulumi_google_native/monitoring/v3/outputs.py index 6f875a9a08..f745e8c01a 100644 --- a/sdk/python/pulumi_google_native/monitoring/v3/outputs.py +++ b/sdk/python/pulumi_google_native/monitoring/v3/outputs.py @@ -1970,13 +1970,11 @@ def ingest_delay(self) -> str: @property @pulumi.getter(name="launchStage") + @_utilities.deprecated("""Deprecated. Must use the MetricDescriptor.launch_stage instead.""") def launch_stage(self) -> str: """ Deprecated. Must use the MetricDescriptor.launch_stage instead. """ - warnings.warn("""Deprecated. Must use the MetricDescriptor.launch_stage instead.""", DeprecationWarning) - pulumi.log.warn("""launch_stage is deprecated: Deprecated. Must use the MetricDescriptor.launch_stage instead.""") - return pulumi.get(self, "launch_stage") @property diff --git a/sdk/python/pulumi_google_native/monitoring/v3/service.py b/sdk/python/pulumi_google_native/monitoring/v3/service.py index 9c17b152d6..ff09b0d7b0 100644 --- a/sdk/python/pulumi_google_native/monitoring/v3/service.py +++ b/sdk/python/pulumi_google_native/monitoring/v3/service.py @@ -420,7 +420,7 @@ def _internal_init(__self__, if v3_id1 is None and not opts.urn: raise TypeError("Missing required property 'v3_id1'") __props__.__dict__["v3_id1"] = v3_id1 - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["v3_id", "v3_id1"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["v3Id", "v3Id1"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Service, __self__).__init__( 'google-native:monitoring/v3:Service', diff --git a/sdk/python/pulumi_google_native/monitoring/v3/service_level_objective.py b/sdk/python/pulumi_google_native/monitoring/v3/service_level_objective.py index 11e8f1e348..e5f4c69b02 100644 --- a/sdk/python/pulumi_google_native/monitoring/v3/service_level_objective.py +++ b/sdk/python/pulumi_google_native/monitoring/v3/service_level_objective.py @@ -277,7 +277,7 @@ def _internal_init(__self__, if v3_id1 is None and not opts.urn: raise TypeError("Missing required property 'v3_id1'") __props__.__dict__["v3_id1"] = v3_id1 - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["service_id", "v3_id", "v3_id1"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["serviceId", "v3Id", "v3Id1"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceLevelObjective, __self__).__init__( 'google-native:monitoring/v3:ServiceLevelObjective', diff --git a/sdk/python/pulumi_google_native/networkconnectivity/v1/hub.py b/sdk/python/pulumi_google_native/networkconnectivity/v1/hub.py index 37df792566..74885f8216 100644 --- a/sdk/python/pulumi_google_native/networkconnectivity/v1/hub.py +++ b/sdk/python/pulumi_google_native/networkconnectivity/v1/hub.py @@ -210,7 +210,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["unique_id"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["hub_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["hubId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Hub, __self__).__init__( 'google-native:networkconnectivity/v1:Hub', diff --git a/sdk/python/pulumi_google_native/networkconnectivity/v1/hub_group_iam_policy.py b/sdk/python/pulumi_google_native/networkconnectivity/v1/hub_group_iam_policy.py index 71ed060a6a..8c027deb68 100644 --- a/sdk/python/pulumi_google_native/networkconnectivity/v1/hub_group_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkconnectivity/v1/hub_group_iam_policy.py @@ -218,7 +218,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["group_id", "hub_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["groupId", "hubId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(HubGroupIamPolicy, __self__).__init__( 'google-native:networkconnectivity/v1:HubGroupIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkconnectivity/v1/hub_iam_policy.py b/sdk/python/pulumi_google_native/networkconnectivity/v1/hub_iam_policy.py index f129784330..5b131340aa 100644 --- a/sdk/python/pulumi_google_native/networkconnectivity/v1/hub_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkconnectivity/v1/hub_iam_policy.py @@ -202,7 +202,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["hub_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["hubId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(HubIamPolicy, __self__).__init__( 'google-native:networkconnectivity/v1:HubIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkconnectivity/v1/policy_based_route.py b/sdk/python/pulumi_google_native/networkconnectivity/v1/policy_based_route.py index 086c89bc74..7bf6bb2057 100644 --- a/sdk/python/pulumi_google_native/networkconnectivity/v1/policy_based_route.py +++ b/sdk/python/pulumi_google_native/networkconnectivity/v1/policy_based_route.py @@ -332,7 +332,7 @@ def _internal_init(__self__, __props__.__dict__["self_link"] = None __props__.__dict__["update_time"] = None __props__.__dict__["warnings"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["policy_based_route_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["policyBasedRouteId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(PolicyBasedRoute, __self__).__init__( 'google-native:networkconnectivity/v1:PolicyBasedRoute', diff --git a/sdk/python/pulumi_google_native/networkconnectivity/v1/policy_based_route_iam_policy.py b/sdk/python/pulumi_google_native/networkconnectivity/v1/policy_based_route_iam_policy.py index 5e2afc1f90..98f4a3a358 100644 --- a/sdk/python/pulumi_google_native/networkconnectivity/v1/policy_based_route_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkconnectivity/v1/policy_based_route_iam_policy.py @@ -202,7 +202,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["policy_based_route_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["policyBasedRouteId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(PolicyBasedRouteIamPolicy, __self__).__init__( 'google-native:networkconnectivity/v1:PolicyBasedRouteIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkconnectivity/v1/service_class_iam_policy.py b/sdk/python/pulumi_google_native/networkconnectivity/v1/service_class_iam_policy.py index 6e7e716db4..b7484d8896 100644 --- a/sdk/python/pulumi_google_native/networkconnectivity/v1/service_class_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkconnectivity/v1/service_class_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["service_class_id"] = service_class_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "service_class_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "serviceClassId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceClassIamPolicy, __self__).__init__( 'google-native:networkconnectivity/v1:ServiceClassIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkconnectivity/v1/service_connection_map_iam_policy.py b/sdk/python/pulumi_google_native/networkconnectivity/v1/service_connection_map_iam_policy.py index 3aedfddc45..8f7bd3558c 100644 --- a/sdk/python/pulumi_google_native/networkconnectivity/v1/service_connection_map_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkconnectivity/v1/service_connection_map_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["service_connection_map_id"] = service_connection_map_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "service_connection_map_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "serviceConnectionMapId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceConnectionMapIamPolicy, __self__).__init__( 'google-native:networkconnectivity/v1:ServiceConnectionMapIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkconnectivity/v1/service_connection_policy_iam_policy.py b/sdk/python/pulumi_google_native/networkconnectivity/v1/service_connection_policy_iam_policy.py index 7bcb485ccd..2d23f1979f 100644 --- a/sdk/python/pulumi_google_native/networkconnectivity/v1/service_connection_policy_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkconnectivity/v1/service_connection_policy_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["service_connection_policy_id"] = service_connection_policy_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "service_connection_policy_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "serviceConnectionPolicyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceConnectionPolicyIamPolicy, __self__).__init__( 'google-native:networkconnectivity/v1:ServiceConnectionPolicyIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkconnectivity/v1/spoke.py b/sdk/python/pulumi_google_native/networkconnectivity/v1/spoke.py index 59cffc88a0..d880469ec3 100644 --- a/sdk/python/pulumi_google_native/networkconnectivity/v1/spoke.py +++ b/sdk/python/pulumi_google_native/networkconnectivity/v1/spoke.py @@ -323,7 +323,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["unique_id"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "spoke_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "spokeId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Spoke, __self__).__init__( 'google-native:networkconnectivity/v1:Spoke', diff --git a/sdk/python/pulumi_google_native/networkconnectivity/v1/spoke_iam_policy.py b/sdk/python/pulumi_google_native/networkconnectivity/v1/spoke_iam_policy.py index b169b5a85b..ba18c873bf 100644 --- a/sdk/python/pulumi_google_native/networkconnectivity/v1/spoke_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkconnectivity/v1/spoke_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["spoke_id"] = spoke_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "spoke_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "spokeId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SpokeIamPolicy, __self__).__init__( 'google-native:networkconnectivity/v1:SpokeIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkconnectivity/v1alpha1/get_hub.py b/sdk/python/pulumi_google_native/networkconnectivity/v1alpha1/get_hub.py index f70974a2f6..24ecdd15af 100644 --- a/sdk/python/pulumi_google_native/networkconnectivity/v1alpha1/get_hub.py +++ b/sdk/python/pulumi_google_native/networkconnectivity/v1alpha1/get_hub.py @@ -78,13 +78,11 @@ def name(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""Output only. A list of the URIs of all attached spokes. This field is deprecated and will not be included in future API versions. Call ListSpokes on each region instead.""") def spokes(self) -> Sequence[str]: """ A list of the URIs of all attached spokes. This field is deprecated and will not be included in future API versions. Call ListSpokes on each region instead. """ - warnings.warn("""Output only. A list of the URIs of all attached spokes. This field is deprecated and will not be included in future API versions. Call ListSpokes on each region instead.""", DeprecationWarning) - pulumi.log.warn("""spokes is deprecated: Output only. A list of the URIs of all attached spokes. This field is deprecated and will not be included in future API versions. Call ListSpokes on each region instead.""") - return pulumi.get(self, "spokes") @property diff --git a/sdk/python/pulumi_google_native/networkconnectivity/v1alpha1/hub.py b/sdk/python/pulumi_google_native/networkconnectivity/v1alpha1/hub.py index 12d7eda694..1be7042252 100644 --- a/sdk/python/pulumi_google_native/networkconnectivity/v1alpha1/hub.py +++ b/sdk/python/pulumi_google_native/networkconnectivity/v1alpha1/hub.py @@ -314,13 +314,11 @@ def request_id(self) -> pulumi.Output[Optional[str]]: @property @pulumi.getter + @_utilities.deprecated("""Output only. A list of the URIs of all attached spokes. This field is deprecated and will not be included in future API versions. Call ListSpokes on each region instead.""") def spokes(self) -> pulumi.Output[Sequence[str]]: """ A list of the URIs of all attached spokes. This field is deprecated and will not be included in future API versions. Call ListSpokes on each region instead. """ - warnings.warn("""Output only. A list of the URIs of all attached spokes. This field is deprecated and will not be included in future API versions. Call ListSpokes on each region instead.""", DeprecationWarning) - pulumi.log.warn("""spokes is deprecated: Output only. A list of the URIs of all attached spokes. This field is deprecated and will not be included in future API versions. Call ListSpokes on each region instead.""") - return pulumi.get(self, "spokes") @property diff --git a/sdk/python/pulumi_google_native/networkconnectivity/v1alpha1/hub_iam_policy.py b/sdk/python/pulumi_google_native/networkconnectivity/v1alpha1/hub_iam_policy.py index beed5f311f..2e58d60fd2 100644 --- a/sdk/python/pulumi_google_native/networkconnectivity/v1alpha1/hub_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkconnectivity/v1alpha1/hub_iam_policy.py @@ -202,7 +202,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["hub_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["hubId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(HubIamPolicy, __self__).__init__( 'google-native:networkconnectivity/v1alpha1:HubIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkconnectivity/v1alpha1/internal_range_iam_policy.py b/sdk/python/pulumi_google_native/networkconnectivity/v1alpha1/internal_range_iam_policy.py index 6671263fa1..e612ce0a5f 100644 --- a/sdk/python/pulumi_google_native/networkconnectivity/v1alpha1/internal_range_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkconnectivity/v1alpha1/internal_range_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["internal_range_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["internalRangeId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(InternalRangeIamPolicy, __self__).__init__( 'google-native:networkconnectivity/v1alpha1:InternalRangeIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkconnectivity/v1alpha1/spoke_iam_policy.py b/sdk/python/pulumi_google_native/networkconnectivity/v1alpha1/spoke_iam_policy.py index 5ded5b72fa..75fd60c907 100644 --- a/sdk/python/pulumi_google_native/networkconnectivity/v1alpha1/spoke_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkconnectivity/v1alpha1/spoke_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["spoke_id"] = spoke_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "spoke_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "spokeId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SpokeIamPolicy, __self__).__init__( 'google-native:networkconnectivity/v1alpha1:SpokeIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkmanagement/v1/connectivity_test.py b/sdk/python/pulumi_google_native/networkmanagement/v1/connectivity_test.py index 615a2901b9..824cf43d37 100644 --- a/sdk/python/pulumi_google_native/networkmanagement/v1/connectivity_test.py +++ b/sdk/python/pulumi_google_native/networkmanagement/v1/connectivity_test.py @@ -253,7 +253,7 @@ def _internal_init(__self__, __props__.__dict__["probing_details"] = None __props__.__dict__["reachability_details"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "test_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "testId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ConnectivityTest, __self__).__init__( 'google-native:networkmanagement/v1:ConnectivityTest', diff --git a/sdk/python/pulumi_google_native/networkmanagement/v1/connectivity_test_iam_policy.py b/sdk/python/pulumi_google_native/networkmanagement/v1/connectivity_test_iam_policy.py index 55768c39e4..6db5893432 100644 --- a/sdk/python/pulumi_google_native/networkmanagement/v1/connectivity_test_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkmanagement/v1/connectivity_test_iam_policy.py @@ -202,7 +202,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connectivity_test_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connectivityTestId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ConnectivityTestIamPolicy, __self__).__init__( 'google-native:networkmanagement/v1:ConnectivityTestIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkmanagement/v1/outputs.py b/sdk/python/pulumi_google_native/networkmanagement/v1/outputs.py index 33cb226006..3982578605 100644 --- a/sdk/python/pulumi_google_native/networkmanagement/v1/outputs.py +++ b/sdk/python/pulumi_google_native/networkmanagement/v1/outputs.py @@ -1996,13 +1996,11 @@ def backends(self) -> Sequence['outputs.LoadBalancerBackendResponse']: @property @pulumi.getter(name="healthCheckUri") + @_utilities.deprecated("""URI of the health check for the load balancer. Deprecated and no longer populated as different load balancer backends might have different health checks.""") def health_check_uri(self) -> str: """ URI of the health check for the load balancer. Deprecated and no longer populated as different load balancer backends might have different health checks. """ - warnings.warn("""URI of the health check for the load balancer. Deprecated and no longer populated as different load balancer backends might have different health checks.""", DeprecationWarning) - pulumi.log.warn("""health_check_uri is deprecated: URI of the health check for the load balancer. Deprecated and no longer populated as different load balancer backends might have different health checks.""") - return pulumi.get(self, "health_check_uri") @property diff --git a/sdk/python/pulumi_google_native/networkmanagement/v1beta1/connectivity_test.py b/sdk/python/pulumi_google_native/networkmanagement/v1beta1/connectivity_test.py index b7a0757c00..6662a99573 100644 --- a/sdk/python/pulumi_google_native/networkmanagement/v1beta1/connectivity_test.py +++ b/sdk/python/pulumi_google_native/networkmanagement/v1beta1/connectivity_test.py @@ -253,7 +253,7 @@ def _internal_init(__self__, __props__.__dict__["probing_details"] = None __props__.__dict__["reachability_details"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "test_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "testId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ConnectivityTest, __self__).__init__( 'google-native:networkmanagement/v1beta1:ConnectivityTest', diff --git a/sdk/python/pulumi_google_native/networkmanagement/v1beta1/connectivity_test_iam_policy.py b/sdk/python/pulumi_google_native/networkmanagement/v1beta1/connectivity_test_iam_policy.py index 05dab656a0..61c499911b 100644 --- a/sdk/python/pulumi_google_native/networkmanagement/v1beta1/connectivity_test_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkmanagement/v1beta1/connectivity_test_iam_policy.py @@ -202,7 +202,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connectivity_test_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connectivityTestId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ConnectivityTestIamPolicy, __self__).__init__( 'google-native:networkmanagement/v1beta1:ConnectivityTestIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkmanagement/v1beta1/outputs.py b/sdk/python/pulumi_google_native/networkmanagement/v1beta1/outputs.py index 4fe21e9160..9d5300acf4 100644 --- a/sdk/python/pulumi_google_native/networkmanagement/v1beta1/outputs.py +++ b/sdk/python/pulumi_google_native/networkmanagement/v1beta1/outputs.py @@ -2009,13 +2009,11 @@ def backends(self) -> Sequence['outputs.LoadBalancerBackendResponse']: @property @pulumi.getter(name="healthCheckUri") + @_utilities.deprecated("""URI of the health check for the load balancer. Deprecated and no longer populated as different load balancer backends might have different health checks.""") def health_check_uri(self) -> str: """ URI of the health check for the load balancer. Deprecated and no longer populated as different load balancer backends might have different health checks. """ - warnings.warn("""URI of the health check for the load balancer. Deprecated and no longer populated as different load balancer backends might have different health checks.""", DeprecationWarning) - pulumi.log.warn("""health_check_uri is deprecated: URI of the health check for the load balancer. Deprecated and no longer populated as different load balancer backends might have different health checks.""") - return pulumi.get(self, "health_check_uri") @property diff --git a/sdk/python/pulumi_google_native/networksecurity/v1/address_group.py b/sdk/python/pulumi_google_native/networksecurity/v1/address_group.py index 6c0b4412a0..cfba2dcd08 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1/address_group.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1/address_group.py @@ -261,7 +261,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["self_link"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["address_group_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["addressGroupId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AddressGroup, __self__).__init__( 'google-native:networksecurity/v1:AddressGroup', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1/address_group_iam_policy.py b/sdk/python/pulumi_google_native/networksecurity/v1/address_group_iam_policy.py index 09b464f6fa..f1a7714293 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1/address_group_iam_policy.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1/address_group_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["address_group_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["addressGroupId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AddressGroupIamPolicy, __self__).__init__( 'google-native:networksecurity/v1:AddressGroupIamPolicy', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1/authorization_policy.py b/sdk/python/pulumi_google_native/networksecurity/v1/authorization_policy.py index fd91d0a123..a1229e342d 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1/authorization_policy.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1/authorization_policy.py @@ -221,7 +221,7 @@ def _internal_init(__self__, __props__.__dict__["rules"] = rules __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["authorization_policy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["authorizationPolicyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AuthorizationPolicy, __self__).__init__( 'google-native:networksecurity/v1:AuthorizationPolicy', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1/authorization_policy_iam_policy.py b/sdk/python/pulumi_google_native/networksecurity/v1/authorization_policy_iam_policy.py index da1e9d13ea..4d084d56c0 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1/authorization_policy_iam_policy.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1/authorization_policy_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["authorization_policy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["authorizationPolicyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AuthorizationPolicyIamPolicy, __self__).__init__( 'google-native:networksecurity/v1:AuthorizationPolicyIamPolicy', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1/client_tls_policy.py b/sdk/python/pulumi_google_native/networksecurity/v1/client_tls_policy.py index de5251b3b2..f8b8a215c4 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1/client_tls_policy.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1/client_tls_policy.py @@ -239,7 +239,7 @@ def _internal_init(__self__, __props__.__dict__["sni"] = sni __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["client_tls_policy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clientTlsPolicyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ClientTlsPolicy, __self__).__init__( 'google-native:networksecurity/v1:ClientTlsPolicy', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1/client_tls_policy_iam_policy.py b/sdk/python/pulumi_google_native/networksecurity/v1/client_tls_policy_iam_policy.py index ce985b15a0..a41856dd5c 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1/client_tls_policy_iam_policy.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1/client_tls_policy_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["client_tls_policy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clientTlsPolicyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ClientTlsPolicyIamPolicy, __self__).__init__( 'google-native:networksecurity/v1:ClientTlsPolicyIamPolicy', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1/gateway_security_policy.py b/sdk/python/pulumi_google_native/networksecurity/v1/gateway_security_policy.py index 85fc1645c1..bd4bb221e5 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1/gateway_security_policy.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1/gateway_security_policy.py @@ -177,7 +177,7 @@ def _internal_init(__self__, __props__.__dict__["tls_inspection_policy"] = tls_inspection_policy __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gateway_security_policy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gatewaySecurityPolicyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(GatewaySecurityPolicy, __self__).__init__( 'google-native:networksecurity/v1:GatewaySecurityPolicy', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1/organization_address_group.py b/sdk/python/pulumi_google_native/networksecurity/v1/organization_address_group.py index d903c0ede3..a47db4d2eb 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1/organization_address_group.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1/organization_address_group.py @@ -265,7 +265,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["self_link"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["address_group_id", "location", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["addressGroupId", "location", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationAddressGroup, __self__).__init__( 'google-native:networksecurity/v1:OrganizationAddressGroup', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1/rule.py b/sdk/python/pulumi_google_native/networksecurity/v1/rule.py index 4f19a8360c..b0eb4a131f 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1/rule.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1/rule.py @@ -300,7 +300,7 @@ def _internal_init(__self__, __props__.__dict__["tls_inspection_enabled"] = tls_inspection_enabled __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gateway_security_policy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gatewaySecurityPolicyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Rule, __self__).__init__( 'google-native:networksecurity/v1:Rule', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1/server_tls_policy.py b/sdk/python/pulumi_google_native/networksecurity/v1/server_tls_policy.py index 703e73b5cf..bf3d933a6b 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1/server_tls_policy.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1/server_tls_policy.py @@ -240,7 +240,7 @@ def _internal_init(__self__, __props__.__dict__["server_tls_policy_id"] = server_tls_policy_id __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "server_tls_policy_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "serverTlsPolicyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServerTlsPolicy, __self__).__init__( 'google-native:networksecurity/v1:ServerTlsPolicy', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1/server_tls_policy_iam_policy.py b/sdk/python/pulumi_google_native/networksecurity/v1/server_tls_policy_iam_policy.py index 030ae01b04..9d21764138 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1/server_tls_policy_iam_policy.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1/server_tls_policy_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["server_tls_policy_id"] = server_tls_policy_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "server_tls_policy_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "serverTlsPolicyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServerTlsPolicyIamPolicy, __self__).__init__( 'google-native:networksecurity/v1:ServerTlsPolicyIamPolicy', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1/tls_inspection_policy.py b/sdk/python/pulumi_google_native/networksecurity/v1/tls_inspection_policy.py index cbba929beb..42364a12f2 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1/tls_inspection_policy.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1/tls_inspection_policy.py @@ -279,7 +279,7 @@ def _internal_init(__self__, __props__.__dict__["trust_config"] = trust_config __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tls_inspection_policy_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tlsInspectionPolicyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TlsInspectionPolicy, __self__).__init__( 'google-native:networksecurity/v1:TlsInspectionPolicy', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1/url_list.py b/sdk/python/pulumi_google_native/networksecurity/v1/url_list.py index 43566318b1..7e51758953 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1/url_list.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1/url_list.py @@ -178,7 +178,7 @@ def _internal_init(__self__, __props__.__dict__["values"] = values __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "url_list_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "urlListId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(UrlList, __self__).__init__( 'google-native:networksecurity/v1:UrlList', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1beta1/address_group.py b/sdk/python/pulumi_google_native/networksecurity/v1beta1/address_group.py index 1db9619383..cf1143d06b 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1beta1/address_group.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1beta1/address_group.py @@ -261,7 +261,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["self_link"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["address_group_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["addressGroupId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AddressGroup, __self__).__init__( 'google-native:networksecurity/v1beta1:AddressGroup', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1beta1/address_group_iam_policy.py b/sdk/python/pulumi_google_native/networksecurity/v1beta1/address_group_iam_policy.py index 949d56bd42..440e425ef5 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1beta1/address_group_iam_policy.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1beta1/address_group_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["address_group_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["addressGroupId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AddressGroupIamPolicy, __self__).__init__( 'google-native:networksecurity/v1beta1:AddressGroupIamPolicy', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1beta1/authorization_policy.py b/sdk/python/pulumi_google_native/networksecurity/v1beta1/authorization_policy.py index 72304cbda4..90a5eaa1da 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1beta1/authorization_policy.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1beta1/authorization_policy.py @@ -221,7 +221,7 @@ def _internal_init(__self__, __props__.__dict__["rules"] = rules __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["authorization_policy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["authorizationPolicyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AuthorizationPolicy, __self__).__init__( 'google-native:networksecurity/v1beta1:AuthorizationPolicy', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1beta1/authorization_policy_iam_policy.py b/sdk/python/pulumi_google_native/networksecurity/v1beta1/authorization_policy_iam_policy.py index 4b1af61004..d8c3487b3c 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1beta1/authorization_policy_iam_policy.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1beta1/authorization_policy_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["authorization_policy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["authorizationPolicyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AuthorizationPolicyIamPolicy, __self__).__init__( 'google-native:networksecurity/v1beta1:AuthorizationPolicyIamPolicy', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1beta1/client_tls_policy.py b/sdk/python/pulumi_google_native/networksecurity/v1beta1/client_tls_policy.py index e44ce7092b..01dbcfc8bf 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1beta1/client_tls_policy.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1beta1/client_tls_policy.py @@ -239,7 +239,7 @@ def _internal_init(__self__, __props__.__dict__["sni"] = sni __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["client_tls_policy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clientTlsPolicyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ClientTlsPolicy, __self__).__init__( 'google-native:networksecurity/v1beta1:ClientTlsPolicy', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1beta1/client_tls_policy_iam_policy.py b/sdk/python/pulumi_google_native/networksecurity/v1beta1/client_tls_policy_iam_policy.py index 933d12191a..76182729da 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1beta1/client_tls_policy_iam_policy.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1beta1/client_tls_policy_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["client_tls_policy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clientTlsPolicyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ClientTlsPolicyIamPolicy, __self__).__init__( 'google-native:networksecurity/v1beta1:ClientTlsPolicyIamPolicy', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1beta1/firewall_endpoint.py b/sdk/python/pulumi_google_native/networksecurity/v1beta1/firewall_endpoint.py index a619670656..db7779c031 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1beta1/firewall_endpoint.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1beta1/firewall_endpoint.py @@ -204,7 +204,7 @@ def _internal_init(__self__, __props__.__dict__["reconciling"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["firewall_endpoint_id", "location", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["firewallEndpointId", "location", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FirewallEndpoint, __self__).__init__( 'google-native:networksecurity/v1beta1:FirewallEndpoint', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1beta1/gateway_security_policy.py b/sdk/python/pulumi_google_native/networksecurity/v1beta1/gateway_security_policy.py index 32d1e9a2e7..82c8d2b421 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1beta1/gateway_security_policy.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1beta1/gateway_security_policy.py @@ -177,7 +177,7 @@ def _internal_init(__self__, __props__.__dict__["tls_inspection_policy"] = tls_inspection_policy __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gateway_security_policy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gatewaySecurityPolicyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(GatewaySecurityPolicy, __self__).__init__( 'google-native:networksecurity/v1beta1:GatewaySecurityPolicy', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1beta1/organization_address_group.py b/sdk/python/pulumi_google_native/networksecurity/v1beta1/organization_address_group.py index c765b27153..40d54f0dc9 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1beta1/organization_address_group.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1beta1/organization_address_group.py @@ -265,7 +265,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["self_link"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["address_group_id", "location", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["addressGroupId", "location", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationAddressGroup, __self__).__init__( 'google-native:networksecurity/v1beta1:OrganizationAddressGroup', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1beta1/rule.py b/sdk/python/pulumi_google_native/networksecurity/v1beta1/rule.py index 13f96f04ab..3a06fec83d 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1beta1/rule.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1beta1/rule.py @@ -300,7 +300,7 @@ def _internal_init(__self__, __props__.__dict__["tls_inspection_enabled"] = tls_inspection_enabled __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gateway_security_policy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gatewaySecurityPolicyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Rule, __self__).__init__( 'google-native:networksecurity/v1beta1:Rule', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1beta1/security_profile.py b/sdk/python/pulumi_google_native/networksecurity/v1beta1/security_profile.py index 63aa867f03..3e798c687a 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1beta1/security_profile.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1beta1/security_profile.py @@ -224,7 +224,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["etag"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organization_id", "security_profile_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organizationId", "securityProfileId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SecurityProfile, __self__).__init__( 'google-native:networksecurity/v1beta1:SecurityProfile', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1beta1/security_profile_group.py b/sdk/python/pulumi_google_native/networksecurity/v1beta1/security_profile_group.py index ede271976d..2e180b7667 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1beta1/security_profile_group.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1beta1/security_profile_group.py @@ -201,7 +201,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["etag"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organization_id", "security_profile_group_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organizationId", "securityProfileGroupId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SecurityProfileGroup, __self__).__init__( 'google-native:networksecurity/v1beta1:SecurityProfileGroup', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1beta1/server_tls_policy.py b/sdk/python/pulumi_google_native/networksecurity/v1beta1/server_tls_policy.py index f98cd008b5..8d199d4785 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1beta1/server_tls_policy.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1beta1/server_tls_policy.py @@ -240,7 +240,7 @@ def _internal_init(__self__, __props__.__dict__["server_tls_policy_id"] = server_tls_policy_id __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "server_tls_policy_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "serverTlsPolicyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServerTlsPolicy, __self__).__init__( 'google-native:networksecurity/v1beta1:ServerTlsPolicy', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1beta1/server_tls_policy_iam_policy.py b/sdk/python/pulumi_google_native/networksecurity/v1beta1/server_tls_policy_iam_policy.py index f8380db611..10c6abaf57 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1beta1/server_tls_policy_iam_policy.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1beta1/server_tls_policy_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["server_tls_policy_id"] = server_tls_policy_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "server_tls_policy_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "serverTlsPolicyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServerTlsPolicyIamPolicy, __self__).__init__( 'google-native:networksecurity/v1beta1:ServerTlsPolicyIamPolicy', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1beta1/tls_inspection_policy.py b/sdk/python/pulumi_google_native/networksecurity/v1beta1/tls_inspection_policy.py index b8ed195ec4..917e5ea135 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1beta1/tls_inspection_policy.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1beta1/tls_inspection_policy.py @@ -279,7 +279,7 @@ def _internal_init(__self__, __props__.__dict__["trust_config"] = trust_config __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tls_inspection_policy_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tlsInspectionPolicyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TlsInspectionPolicy, __self__).__init__( 'google-native:networksecurity/v1beta1:TlsInspectionPolicy', diff --git a/sdk/python/pulumi_google_native/networksecurity/v1beta1/url_list.py b/sdk/python/pulumi_google_native/networksecurity/v1beta1/url_list.py index b10aedfba5..9881c071dd 100644 --- a/sdk/python/pulumi_google_native/networksecurity/v1beta1/url_list.py +++ b/sdk/python/pulumi_google_native/networksecurity/v1beta1/url_list.py @@ -178,7 +178,7 @@ def _internal_init(__self__, __props__.__dict__["values"] = values __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "url_list_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "urlListId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(UrlList, __self__).__init__( 'google-native:networksecurity/v1beta1:UrlList', diff --git a/sdk/python/pulumi_google_native/networkservices/v1/edge_cache_keyset_iam_policy.py b/sdk/python/pulumi_google_native/networkservices/v1/edge_cache_keyset_iam_policy.py index 68d13f5609..dfc9d9b43b 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1/edge_cache_keyset_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkservices/v1/edge_cache_keyset_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["edge_cache_keyset_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["edgeCacheKeysetId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EdgeCacheKeysetIamPolicy, __self__).__init__( 'google-native:networkservices/v1:EdgeCacheKeysetIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkservices/v1/edge_cache_origin_iam_policy.py b/sdk/python/pulumi_google_native/networkservices/v1/edge_cache_origin_iam_policy.py index b1490dbc00..66b853fb5c 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1/edge_cache_origin_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkservices/v1/edge_cache_origin_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["edge_cache_origin_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["edgeCacheOriginId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EdgeCacheOriginIamPolicy, __self__).__init__( 'google-native:networkservices/v1:EdgeCacheOriginIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkservices/v1/edge_cache_service_iam_policy.py b/sdk/python/pulumi_google_native/networkservices/v1/edge_cache_service_iam_policy.py index 87938404c4..e677aed714 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1/edge_cache_service_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkservices/v1/edge_cache_service_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["edge_cache_service_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["edgeCacheServiceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EdgeCacheServiceIamPolicy, __self__).__init__( 'google-native:networkservices/v1:EdgeCacheServiceIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkservices/v1/endpoint_policy.py b/sdk/python/pulumi_google_native/networkservices/v1/endpoint_policy.py index 1ff36d25f8..2f837002b3 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1/endpoint_policy.py +++ b/sdk/python/pulumi_google_native/networkservices/v1/endpoint_policy.py @@ -302,7 +302,7 @@ def _internal_init(__self__, __props__.__dict__["type"] = type __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["endpoint_policy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["endpointPolicyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EndpointPolicy, __self__).__init__( 'google-native:networkservices/v1:EndpointPolicy', diff --git a/sdk/python/pulumi_google_native/networkservices/v1/endpoint_policy_iam_policy.py b/sdk/python/pulumi_google_native/networkservices/v1/endpoint_policy_iam_policy.py index 82b01a311e..bc80e7b541 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1/endpoint_policy_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkservices/v1/endpoint_policy_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["endpoint_policy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["endpointPolicyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EndpointPolicyIamPolicy, __self__).__init__( 'google-native:networkservices/v1:EndpointPolicyIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkservices/v1/gateway.py b/sdk/python/pulumi_google_native/networkservices/v1/gateway.py index 71badc7583..0fe7821501 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1/gateway.py +++ b/sdk/python/pulumi_google_native/networkservices/v1/gateway.py @@ -360,7 +360,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["self_link"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gateway_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gatewayId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Gateway, __self__).__init__( 'google-native:networkservices/v1:Gateway', diff --git a/sdk/python/pulumi_google_native/networkservices/v1/gateway_iam_policy.py b/sdk/python/pulumi_google_native/networkservices/v1/gateway_iam_policy.py index ccceef7248..256b8d821e 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1/gateway_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkservices/v1/gateway_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gateway_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gatewayId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(GatewayIamPolicy, __self__).__init__( 'google-native:networkservices/v1:GatewayIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkservices/v1/grpc_route.py b/sdk/python/pulumi_google_native/networkservices/v1/grpc_route.py index 47fa7d06e9..379048c31c 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1/grpc_route.py +++ b/sdk/python/pulumi_google_native/networkservices/v1/grpc_route.py @@ -263,7 +263,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["self_link"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["grpc_route_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["grpcRouteId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(GrpcRoute, __self__).__init__( 'google-native:networkservices/v1:GrpcRoute', diff --git a/sdk/python/pulumi_google_native/networkservices/v1/http_route.py b/sdk/python/pulumi_google_native/networkservices/v1/http_route.py index f7e9d38d02..76c209072b 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1/http_route.py +++ b/sdk/python/pulumi_google_native/networkservices/v1/http_route.py @@ -263,7 +263,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["self_link"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["http_route_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["httpRouteId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(HttpRoute, __self__).__init__( 'google-native:networkservices/v1:HttpRoute', diff --git a/sdk/python/pulumi_google_native/networkservices/v1/mesh.py b/sdk/python/pulumi_google_native/networkservices/v1/mesh.py index 387217ce03..eadec146d9 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1/mesh.py +++ b/sdk/python/pulumi_google_native/networkservices/v1/mesh.py @@ -198,7 +198,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["self_link"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "mesh_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "meshId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Mesh, __self__).__init__( 'google-native:networkservices/v1:Mesh', diff --git a/sdk/python/pulumi_google_native/networkservices/v1/mesh_iam_policy.py b/sdk/python/pulumi_google_native/networkservices/v1/mesh_iam_policy.py index 277bb9fbb1..9466953dca 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1/mesh_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkservices/v1/mesh_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "mesh_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "meshId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MeshIamPolicy, __self__).__init__( 'google-native:networkservices/v1:MeshIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkservices/v1/service_binding.py b/sdk/python/pulumi_google_native/networkservices/v1/service_binding.py index b373a6e739..c50c70b3ad 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1/service_binding.py +++ b/sdk/python/pulumi_google_native/networkservices/v1/service_binding.py @@ -199,7 +199,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["service_id"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "service_binding_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "serviceBindingId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceBinding, __self__).__init__( 'google-native:networkservices/v1:ServiceBinding', diff --git a/sdk/python/pulumi_google_native/networkservices/v1/service_binding_iam_policy.py b/sdk/python/pulumi_google_native/networkservices/v1/service_binding_iam_policy.py index 710e8e709a..03fd803bc7 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1/service_binding_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkservices/v1/service_binding_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["service_binding_id"] = service_binding_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "service_binding_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "serviceBindingId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceBindingIamPolicy, __self__).__init__( 'google-native:networkservices/v1:ServiceBindingIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkservices/v1/tcp_route.py b/sdk/python/pulumi_google_native/networkservices/v1/tcp_route.py index 355ea0d727..737e4989ad 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1/tcp_route.py +++ b/sdk/python/pulumi_google_native/networkservices/v1/tcp_route.py @@ -241,7 +241,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["self_link"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tcp_route_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tcpRouteId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TcpRoute, __self__).__init__( 'google-native:networkservices/v1:TcpRoute', diff --git a/sdk/python/pulumi_google_native/networkservices/v1/tls_route.py b/sdk/python/pulumi_google_native/networkservices/v1/tls_route.py index f1d6cfb18b..c17ef9d345 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1/tls_route.py +++ b/sdk/python/pulumi_google_native/networkservices/v1/tls_route.py @@ -241,7 +241,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["self_link"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tls_route_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tlsRouteId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TlsRoute, __self__).__init__( 'google-native:networkservices/v1:TlsRoute', diff --git a/sdk/python/pulumi_google_native/networkservices/v1beta1/endpoint_policy.py b/sdk/python/pulumi_google_native/networkservices/v1beta1/endpoint_policy.py index 69ca773ad0..7a296ed245 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1beta1/endpoint_policy.py +++ b/sdk/python/pulumi_google_native/networkservices/v1beta1/endpoint_policy.py @@ -302,7 +302,7 @@ def _internal_init(__self__, __props__.__dict__["type"] = type __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["endpoint_policy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["endpointPolicyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EndpointPolicy, __self__).__init__( 'google-native:networkservices/v1beta1:EndpointPolicy', diff --git a/sdk/python/pulumi_google_native/networkservices/v1beta1/endpoint_policy_iam_policy.py b/sdk/python/pulumi_google_native/networkservices/v1beta1/endpoint_policy_iam_policy.py index 43b9033042..b387d3aada 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1beta1/endpoint_policy_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkservices/v1beta1/endpoint_policy_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["endpoint_policy_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["endpointPolicyId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(EndpointPolicyIamPolicy, __self__).__init__( 'google-native:networkservices/v1beta1:EndpointPolicyIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkservices/v1beta1/gateway.py b/sdk/python/pulumi_google_native/networkservices/v1beta1/gateway.py index 988d539f2e..8fb810a050 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1beta1/gateway.py +++ b/sdk/python/pulumi_google_native/networkservices/v1beta1/gateway.py @@ -360,7 +360,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["self_link"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gateway_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gatewayId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Gateway, __self__).__init__( 'google-native:networkservices/v1beta1:Gateway', diff --git a/sdk/python/pulumi_google_native/networkservices/v1beta1/gateway_iam_policy.py b/sdk/python/pulumi_google_native/networkservices/v1beta1/gateway_iam_policy.py index ee152884d2..4be78cb95e 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1beta1/gateway_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkservices/v1beta1/gateway_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gateway_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["gatewayId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(GatewayIamPolicy, __self__).__init__( 'google-native:networkservices/v1beta1:GatewayIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkservices/v1beta1/grpc_route.py b/sdk/python/pulumi_google_native/networkservices/v1beta1/grpc_route.py index 2795a808eb..3515599611 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1beta1/grpc_route.py +++ b/sdk/python/pulumi_google_native/networkservices/v1beta1/grpc_route.py @@ -263,7 +263,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["self_link"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["grpc_route_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["grpcRouteId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(GrpcRoute, __self__).__init__( 'google-native:networkservices/v1beta1:GrpcRoute', diff --git a/sdk/python/pulumi_google_native/networkservices/v1beta1/http_route.py b/sdk/python/pulumi_google_native/networkservices/v1beta1/http_route.py index ed828bd907..4a0c0b8ad5 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1beta1/http_route.py +++ b/sdk/python/pulumi_google_native/networkservices/v1beta1/http_route.py @@ -263,7 +263,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["self_link"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["http_route_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["httpRouteId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(HttpRoute, __self__).__init__( 'google-native:networkservices/v1beta1:HttpRoute', diff --git a/sdk/python/pulumi_google_native/networkservices/v1beta1/lb_route_extension.py b/sdk/python/pulumi_google_native/networkservices/v1beta1/lb_route_extension.py index ba955b65da..814f539c21 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1beta1/lb_route_extension.py +++ b/sdk/python/pulumi_google_native/networkservices/v1beta1/lb_route_extension.py @@ -263,7 +263,7 @@ def _internal_init(__self__, __props__.__dict__["request_id"] = request_id __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["lb_route_extension_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["lbRouteExtensionId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(LbRouteExtension, __self__).__init__( 'google-native:networkservices/v1beta1:LbRouteExtension', diff --git a/sdk/python/pulumi_google_native/networkservices/v1beta1/lb_traffic_extension.py b/sdk/python/pulumi_google_native/networkservices/v1beta1/lb_traffic_extension.py index 134a50f880..ff7f0e5811 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1beta1/lb_traffic_extension.py +++ b/sdk/python/pulumi_google_native/networkservices/v1beta1/lb_traffic_extension.py @@ -263,7 +263,7 @@ def _internal_init(__self__, __props__.__dict__["request_id"] = request_id __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["lb_traffic_extension_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["lbTrafficExtensionId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(LbTrafficExtension, __self__).__init__( 'google-native:networkservices/v1beta1:LbTrafficExtension', diff --git a/sdk/python/pulumi_google_native/networkservices/v1beta1/mesh.py b/sdk/python/pulumi_google_native/networkservices/v1beta1/mesh.py index 01ac4ac7c4..49dbca5d21 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1beta1/mesh.py +++ b/sdk/python/pulumi_google_native/networkservices/v1beta1/mesh.py @@ -198,7 +198,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["self_link"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "mesh_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "meshId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Mesh, __self__).__init__( 'google-native:networkservices/v1beta1:Mesh', diff --git a/sdk/python/pulumi_google_native/networkservices/v1beta1/mesh_iam_policy.py b/sdk/python/pulumi_google_native/networkservices/v1beta1/mesh_iam_policy.py index e3492b7717..892e98bc92 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1beta1/mesh_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkservices/v1beta1/mesh_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "mesh_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "meshId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MeshIamPolicy, __self__).__init__( 'google-native:networkservices/v1beta1:MeshIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkservices/v1beta1/service_binding.py b/sdk/python/pulumi_google_native/networkservices/v1beta1/service_binding.py index 7249db8fc4..4379702050 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1beta1/service_binding.py +++ b/sdk/python/pulumi_google_native/networkservices/v1beta1/service_binding.py @@ -199,7 +199,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["service_id"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "service_binding_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "serviceBindingId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceBinding, __self__).__init__( 'google-native:networkservices/v1beta1:ServiceBinding', diff --git a/sdk/python/pulumi_google_native/networkservices/v1beta1/service_binding_iam_policy.py b/sdk/python/pulumi_google_native/networkservices/v1beta1/service_binding_iam_policy.py index 70e436bfb9..dd28656b37 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1beta1/service_binding_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkservices/v1beta1/service_binding_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["service_binding_id"] = service_binding_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "service_binding_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "serviceBindingId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceBindingIamPolicy, __self__).__init__( 'google-native:networkservices/v1beta1:ServiceBindingIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkservices/v1beta1/service_lb_policy.py b/sdk/python/pulumi_google_native/networkservices/v1beta1/service_lb_policy.py index 41b02bbbb8..b3eb8968e6 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1beta1/service_lb_policy.py +++ b/sdk/python/pulumi_google_native/networkservices/v1beta1/service_lb_policy.py @@ -240,7 +240,7 @@ def _internal_init(__self__, __props__.__dict__["service_lb_policy_id"] = service_lb_policy_id __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "service_lb_policy_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "serviceLbPolicyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceLbPolicy, __self__).__init__( 'google-native:networkservices/v1beta1:ServiceLbPolicy', diff --git a/sdk/python/pulumi_google_native/networkservices/v1beta1/service_lb_policy_iam_policy.py b/sdk/python/pulumi_google_native/networkservices/v1beta1/service_lb_policy_iam_policy.py index 8792256ba3..5ddeb838b9 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1beta1/service_lb_policy_iam_policy.py +++ b/sdk/python/pulumi_google_native/networkservices/v1beta1/service_lb_policy_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["service_lb_policy_id"] = service_lb_policy_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "service_lb_policy_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "serviceLbPolicyId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceLbPolicyIamPolicy, __self__).__init__( 'google-native:networkservices/v1beta1:ServiceLbPolicyIamPolicy', diff --git a/sdk/python/pulumi_google_native/networkservices/v1beta1/tcp_route.py b/sdk/python/pulumi_google_native/networkservices/v1beta1/tcp_route.py index da38058b61..50af91bbda 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1beta1/tcp_route.py +++ b/sdk/python/pulumi_google_native/networkservices/v1beta1/tcp_route.py @@ -241,7 +241,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["self_link"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tcp_route_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tcpRouteId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TcpRoute, __self__).__init__( 'google-native:networkservices/v1beta1:TcpRoute', diff --git a/sdk/python/pulumi_google_native/networkservices/v1beta1/tls_route.py b/sdk/python/pulumi_google_native/networkservices/v1beta1/tls_route.py index 09583b745e..c668d35220 100644 --- a/sdk/python/pulumi_google_native/networkservices/v1beta1/tls_route.py +++ b/sdk/python/pulumi_google_native/networkservices/v1beta1/tls_route.py @@ -241,7 +241,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["self_link"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tls_route_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "tlsRouteId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TlsRoute, __self__).__init__( 'google-native:networkservices/v1beta1:TlsRoute', diff --git a/sdk/python/pulumi_google_native/notebooks/v1/_inputs.py b/sdk/python/pulumi_google_native/notebooks/v1/_inputs.py index e6e2f81a22..13b4180bd7 100644 --- a/sdk/python/pulumi_google_native/notebooks/v1/_inputs.py +++ b/sdk/python/pulumi_google_native/notebooks/v1/_inputs.py @@ -298,13 +298,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="scaleTier") + @_utilities.deprecated("""Required. Scale tier of the hardware used for notebook execution. DEPRECATED Will be discontinued. As right now only CUSTOM is supported.""") def scale_tier(self) -> pulumi.Input['ExecutionTemplateScaleTier']: """ Scale tier of the hardware used for notebook execution. DEPRECATED Will be discontinued. As right now only CUSTOM is supported. """ - warnings.warn("""Required. Scale tier of the hardware used for notebook execution. DEPRECATED Will be discontinued. As right now only CUSTOM is supported.""", DeprecationWarning) - pulumi.log.warn("""scale_tier is deprecated: Required. Scale tier of the hardware used for notebook execution. DEPRECATED Will be discontinued. As right now only CUSTOM is supported.""") - return pulumi.get(self, "scale_tier") @scale_tier.setter diff --git a/sdk/python/pulumi_google_native/notebooks/v1/environment.py b/sdk/python/pulumi_google_native/notebooks/v1/environment.py index d95576d46c..621a815e44 100644 --- a/sdk/python/pulumi_google_native/notebooks/v1/environment.py +++ b/sdk/python/pulumi_google_native/notebooks/v1/environment.py @@ -221,7 +221,7 @@ def _internal_init(__self__, __props__.__dict__["vm_image"] = vm_image __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environment_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["environmentId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Environment, __self__).__init__( 'google-native:notebooks/v1:Environment', diff --git a/sdk/python/pulumi_google_native/notebooks/v1/execution.py b/sdk/python/pulumi_google_native/notebooks/v1/execution.py index 346e594d24..3e2cf15d3b 100644 --- a/sdk/python/pulumi_google_native/notebooks/v1/execution.py +++ b/sdk/python/pulumi_google_native/notebooks/v1/execution.py @@ -186,7 +186,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["execution_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["executionId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Execution, __self__).__init__( 'google-native:notebooks/v1:Execution', diff --git a/sdk/python/pulumi_google_native/notebooks/v1/instance.py b/sdk/python/pulumi_google_native/notebooks/v1/instance.py index 6fae1eedae..7a760fe4ed 100644 --- a/sdk/python/pulumi_google_native/notebooks/v1/instance.py +++ b/sdk/python/pulumi_google_native/notebooks/v1/instance.py @@ -710,7 +710,7 @@ def _internal_init(__self__, __props__.__dict__["proxy_uri"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Instance, __self__).__init__( 'google-native:notebooks/v1:Instance', diff --git a/sdk/python/pulumi_google_native/notebooks/v1/instance_iam_policy.py b/sdk/python/pulumi_google_native/notebooks/v1/instance_iam_policy.py index 73dcb34bdc..d309c6cb64 100644 --- a/sdk/python/pulumi_google_native/notebooks/v1/instance_iam_policy.py +++ b/sdk/python/pulumi_google_native/notebooks/v1/instance_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(InstanceIamPolicy, __self__).__init__( 'google-native:notebooks/v1:InstanceIamPolicy', diff --git a/sdk/python/pulumi_google_native/notebooks/v1/outputs.py b/sdk/python/pulumi_google_native/notebooks/v1/outputs.py index fc316f9c53..d2f4f7af64 100644 --- a/sdk/python/pulumi_google_native/notebooks/v1/outputs.py +++ b/sdk/python/pulumi_google_native/notebooks/v1/outputs.py @@ -730,13 +730,11 @@ def params_yaml_file(self) -> str: @property @pulumi.getter(name="scaleTier") + @_utilities.deprecated("""Required. Scale tier of the hardware used for notebook execution. DEPRECATED Will be discontinued. As right now only CUSTOM is supported.""") def scale_tier(self) -> str: """ Scale tier of the hardware used for notebook execution. DEPRECATED Will be discontinued. As right now only CUSTOM is supported. """ - warnings.warn("""Required. Scale tier of the hardware used for notebook execution. DEPRECATED Will be discontinued. As right now only CUSTOM is supported.""", DeprecationWarning) - pulumi.log.warn("""scale_tier is deprecated: Required. Scale tier of the hardware used for notebook execution. DEPRECATED Will be discontinued. As right now only CUSTOM is supported.""") - return pulumi.get(self, "scale_tier") @property diff --git a/sdk/python/pulumi_google_native/notebooks/v1/runtime.py b/sdk/python/pulumi_google_native/notebooks/v1/runtime.py index 63b2ba989d..1e08a4610f 100644 --- a/sdk/python/pulumi_google_native/notebooks/v1/runtime.py +++ b/sdk/python/pulumi_google_native/notebooks/v1/runtime.py @@ -228,7 +228,7 @@ def _internal_init(__self__, __props__.__dict__["runtime_migration_eligibility"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "runtime_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "runtimeId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Runtime, __self__).__init__( 'google-native:notebooks/v1:Runtime', diff --git a/sdk/python/pulumi_google_native/notebooks/v1/runtime_iam_policy.py b/sdk/python/pulumi_google_native/notebooks/v1/runtime_iam_policy.py index 453c73671b..dba120e102 100644 --- a/sdk/python/pulumi_google_native/notebooks/v1/runtime_iam_policy.py +++ b/sdk/python/pulumi_google_native/notebooks/v1/runtime_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'runtime_id'") __props__.__dict__["runtime_id"] = runtime_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "runtime_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "runtimeId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RuntimeIamPolicy, __self__).__init__( 'google-native:notebooks/v1:RuntimeIamPolicy', diff --git a/sdk/python/pulumi_google_native/notebooks/v1/schedule.py b/sdk/python/pulumi_google_native/notebooks/v1/schedule.py index 0232d6d138..26831c761a 100644 --- a/sdk/python/pulumi_google_native/notebooks/v1/schedule.py +++ b/sdk/python/pulumi_google_native/notebooks/v1/schedule.py @@ -220,7 +220,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["recent_executions"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "schedule_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "scheduleId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Schedule, __self__).__init__( 'google-native:notebooks/v1:Schedule', diff --git a/sdk/python/pulumi_google_native/notebooks/v2/instance.py b/sdk/python/pulumi_google_native/notebooks/v2/instance.py index 7850f77dae..a87eb9df8b 100644 --- a/sdk/python/pulumi_google_native/notebooks/v2/instance.py +++ b/sdk/python/pulumi_google_native/notebooks/v2/instance.py @@ -229,7 +229,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None __props__.__dict__["upgrade_history"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Instance, __self__).__init__( 'google-native:notebooks/v2:Instance', diff --git a/sdk/python/pulumi_google_native/notebooks/v2/instance_iam_policy.py b/sdk/python/pulumi_google_native/notebooks/v2/instance_iam_policy.py index 009b7db786..ecc58a0987 100644 --- a/sdk/python/pulumi_google_native/notebooks/v2/instance_iam_policy.py +++ b/sdk/python/pulumi_google_native/notebooks/v2/instance_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(InstanceIamPolicy, __self__).__init__( 'google-native:notebooks/v2:InstanceIamPolicy', diff --git a/sdk/python/pulumi_google_native/orgpolicy/v2/custom_constraint.py b/sdk/python/pulumi_google_native/orgpolicy/v2/custom_constraint.py index a574d42694..6c4a785eab 100644 --- a/sdk/python/pulumi_google_native/orgpolicy/v2/custom_constraint.py +++ b/sdk/python/pulumi_google_native/orgpolicy/v2/custom_constraint.py @@ -222,7 +222,7 @@ def _internal_init(__self__, __props__.__dict__["organization_id"] = organization_id __props__.__dict__["resource_types"] = resource_types __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CustomConstraint, __self__).__init__( 'google-native:orgpolicy/v2:CustomConstraint', diff --git a/sdk/python/pulumi_google_native/orgpolicy/v2/folder_policy.py b/sdk/python/pulumi_google_native/orgpolicy/v2/folder_policy.py index ac544606df..bdac55a20b 100644 --- a/sdk/python/pulumi_google_native/orgpolicy/v2/folder_policy.py +++ b/sdk/python/pulumi_google_native/orgpolicy/v2/folder_policy.py @@ -52,13 +52,11 @@ def folder_id(self, value: pulumi.Input[str]): @property @pulumi.getter + @_utilities.deprecated("""Deprecated.""") def alternate(self) -> Optional[pulumi.Input['GoogleCloudOrgpolicyV2AlternatePolicySpecArgs']]: """ Deprecated. """ - warnings.warn("""Deprecated.""", DeprecationWarning) - pulumi.log.warn("""alternate is deprecated: Deprecated.""") - return pulumi.get(self, "alternate") @alternate.setter @@ -170,7 +168,7 @@ def _internal_init(__self__, __props__.__dict__["folder_id"] = folder_id __props__.__dict__["name"] = name __props__.__dict__["spec"] = spec - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folder_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folderId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FolderPolicy, __self__).__init__( 'google-native:orgpolicy/v2:FolderPolicy', @@ -203,13 +201,11 @@ def get(resource_name: str, @property @pulumi.getter + @_utilities.deprecated("""Deprecated.""") def alternate(self) -> pulumi.Output['outputs.GoogleCloudOrgpolicyV2AlternatePolicySpecResponse']: """ Deprecated. """ - warnings.warn("""Deprecated.""", DeprecationWarning) - pulumi.log.warn("""alternate is deprecated: Deprecated.""") - return pulumi.get(self, "alternate") @property diff --git a/sdk/python/pulumi_google_native/orgpolicy/v2/get_folder_policy.py b/sdk/python/pulumi_google_native/orgpolicy/v2/get_folder_policy.py index a75ea945e1..88b17e8251 100644 --- a/sdk/python/pulumi_google_native/orgpolicy/v2/get_folder_policy.py +++ b/sdk/python/pulumi_google_native/orgpolicy/v2/get_folder_policy.py @@ -35,13 +35,11 @@ def __init__(__self__, alternate=None, dry_run_spec=None, name=None, spec=None): @property @pulumi.getter + @_utilities.deprecated("""Deprecated.""") def alternate(self) -> 'outputs.GoogleCloudOrgpolicyV2AlternatePolicySpecResponse': """ Deprecated. """ - warnings.warn("""Deprecated.""", DeprecationWarning) - pulumi.log.warn("""alternate is deprecated: Deprecated.""") - return pulumi.get(self, "alternate") @property diff --git a/sdk/python/pulumi_google_native/orgpolicy/v2/get_organization_policy.py b/sdk/python/pulumi_google_native/orgpolicy/v2/get_organization_policy.py index dd5fea4fcc..74f9ddf3af 100644 --- a/sdk/python/pulumi_google_native/orgpolicy/v2/get_organization_policy.py +++ b/sdk/python/pulumi_google_native/orgpolicy/v2/get_organization_policy.py @@ -35,13 +35,11 @@ def __init__(__self__, alternate=None, dry_run_spec=None, name=None, spec=None): @property @pulumi.getter + @_utilities.deprecated("""Deprecated.""") def alternate(self) -> 'outputs.GoogleCloudOrgpolicyV2AlternatePolicySpecResponse': """ Deprecated. """ - warnings.warn("""Deprecated.""", DeprecationWarning) - pulumi.log.warn("""alternate is deprecated: Deprecated.""") - return pulumi.get(self, "alternate") @property diff --git a/sdk/python/pulumi_google_native/orgpolicy/v2/get_policy.py b/sdk/python/pulumi_google_native/orgpolicy/v2/get_policy.py index f1038823af..84912e624f 100644 --- a/sdk/python/pulumi_google_native/orgpolicy/v2/get_policy.py +++ b/sdk/python/pulumi_google_native/orgpolicy/v2/get_policy.py @@ -35,13 +35,11 @@ def __init__(__self__, alternate=None, dry_run_spec=None, name=None, spec=None): @property @pulumi.getter + @_utilities.deprecated("""Deprecated.""") def alternate(self) -> 'outputs.GoogleCloudOrgpolicyV2AlternatePolicySpecResponse': """ Deprecated. """ - warnings.warn("""Deprecated.""", DeprecationWarning) - pulumi.log.warn("""alternate is deprecated: Deprecated.""") - return pulumi.get(self, "alternate") @property diff --git a/sdk/python/pulumi_google_native/orgpolicy/v2/organization_policy.py b/sdk/python/pulumi_google_native/orgpolicy/v2/organization_policy.py index 147a16b17b..a09068b37d 100644 --- a/sdk/python/pulumi_google_native/orgpolicy/v2/organization_policy.py +++ b/sdk/python/pulumi_google_native/orgpolicy/v2/organization_policy.py @@ -52,13 +52,11 @@ def organization_id(self, value: pulumi.Input[str]): @property @pulumi.getter + @_utilities.deprecated("""Deprecated.""") def alternate(self) -> Optional[pulumi.Input['GoogleCloudOrgpolicyV2AlternatePolicySpecArgs']]: """ Deprecated. """ - warnings.warn("""Deprecated.""", DeprecationWarning) - pulumi.log.warn("""alternate is deprecated: Deprecated.""") - return pulumi.get(self, "alternate") @alternate.setter @@ -170,7 +168,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'organization_id'") __props__.__dict__["organization_id"] = organization_id __props__.__dict__["spec"] = spec - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationPolicy, __self__).__init__( 'google-native:orgpolicy/v2:OrganizationPolicy', @@ -203,13 +201,11 @@ def get(resource_name: str, @property @pulumi.getter + @_utilities.deprecated("""Deprecated.""") def alternate(self) -> pulumi.Output['outputs.GoogleCloudOrgpolicyV2AlternatePolicySpecResponse']: """ Deprecated. """ - warnings.warn("""Deprecated.""", DeprecationWarning) - pulumi.log.warn("""alternate is deprecated: Deprecated.""") - return pulumi.get(self, "alternate") @property diff --git a/sdk/python/pulumi_google_native/orgpolicy/v2/policy.py b/sdk/python/pulumi_google_native/orgpolicy/v2/policy.py index 2db5542bd1..fc5d330656 100644 --- a/sdk/python/pulumi_google_native/orgpolicy/v2/policy.py +++ b/sdk/python/pulumi_google_native/orgpolicy/v2/policy.py @@ -44,13 +44,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""Deprecated.""") def alternate(self) -> Optional[pulumi.Input['GoogleCloudOrgpolicyV2AlternatePolicySpecArgs']]: """ Deprecated. """ - warnings.warn("""Deprecated.""", DeprecationWarning) - pulumi.log.warn("""alternate is deprecated: Deprecated.""") - return pulumi.get(self, "alternate") @alternate.setter @@ -200,13 +198,11 @@ def get(resource_name: str, @property @pulumi.getter + @_utilities.deprecated("""Deprecated.""") def alternate(self) -> pulumi.Output['outputs.GoogleCloudOrgpolicyV2AlternatePolicySpecResponse']: """ Deprecated. """ - warnings.warn("""Deprecated.""", DeprecationWarning) - pulumi.log.warn("""alternate is deprecated: Deprecated.""") - return pulumi.get(self, "alternate") @property diff --git a/sdk/python/pulumi_google_native/osconfig/v1/os_policy_assignment.py b/sdk/python/pulumi_google_native/osconfig/v1/os_policy_assignment.py index a6017cb9c8..404ad5063b 100644 --- a/sdk/python/pulumi_google_native/osconfig/v1/os_policy_assignment.py +++ b/sdk/python/pulumi_google_native/osconfig/v1/os_policy_assignment.py @@ -248,7 +248,7 @@ def _internal_init(__self__, __props__.__dict__["revision_id"] = None __props__.__dict__["rollout_state"] = None __props__.__dict__["uid"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "os_policy_assignment_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "osPolicyAssignmentId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OsPolicyAssignment, __self__).__init__( 'google-native:osconfig/v1:OsPolicyAssignment', diff --git a/sdk/python/pulumi_google_native/osconfig/v1/patch_deployment.py b/sdk/python/pulumi_google_native/osconfig/v1/patch_deployment.py index 85fa80f2c3..f0b3d9efb0 100644 --- a/sdk/python/pulumi_google_native/osconfig/v1/patch_deployment.py +++ b/sdk/python/pulumi_google_native/osconfig/v1/patch_deployment.py @@ -270,7 +270,7 @@ def _internal_init(__self__, __props__.__dict__["last_execute_time"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["patch_deployment_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["patchDeploymentId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(PatchDeployment, __self__).__init__( 'google-native:osconfig/v1:PatchDeployment', diff --git a/sdk/python/pulumi_google_native/osconfig/v1alpha/_inputs.py b/sdk/python/pulumi_google_native/osconfig/v1alpha/_inputs.py index f05fcc0b11..d22e7c882d 100644 --- a/sdk/python/pulumi_google_native/osconfig/v1alpha/_inputs.py +++ b/sdk/python/pulumi_google_native/osconfig/v1alpha/_inputs.py @@ -201,13 +201,11 @@ def inventories(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OSPoli @property @pulumi.getter(name="osShortNames") + @_utilities.deprecated("""Deprecated. Use the `inventories` field instead. A VM is selected if it's OS short name matches with any of the values provided in this list.""") def os_short_names(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]: """ Deprecated. Use the `inventories` field instead. A VM is selected if it's OS short name matches with any of the values provided in this list. """ - warnings.warn("""Deprecated. Use the `inventories` field instead. A VM is selected if it's OS short name matches with any of the values provided in this list.""", DeprecationWarning) - pulumi.log.warn("""os_short_names is deprecated: Deprecated. Use the `inventories` field instead. A VM is selected if it's OS short name matches with any of the values provided in this list.""") - return pulumi.get(self, "os_short_names") @os_short_names.setter @@ -780,13 +778,11 @@ def inventory_filters(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[' @property @pulumi.getter(name="osFilter") + @_utilities.deprecated("""Deprecated. Use the `inventory_filters` field instead. Used to specify the OS filter for a resource group""") def os_filter(self) -> Optional[pulumi.Input['OSPolicyOSFilterArgs']]: """ Deprecated. Use the `inventory_filters` field instead. Used to specify the OS filter for a resource group """ - warnings.warn("""Deprecated. Use the `inventory_filters` field instead. Used to specify the OS filter for a resource group""", DeprecationWarning) - pulumi.log.warn("""os_filter is deprecated: Deprecated. Use the `inventory_filters` field instead. Used to specify the OS filter for a resource group""") - return pulumi.get(self, "os_filter") @os_filter.setter diff --git a/sdk/python/pulumi_google_native/osconfig/v1alpha/os_policy_assignment.py b/sdk/python/pulumi_google_native/osconfig/v1alpha/os_policy_assignment.py index 5cb26e1213..5d9631d37c 100644 --- a/sdk/python/pulumi_google_native/osconfig/v1alpha/os_policy_assignment.py +++ b/sdk/python/pulumi_google_native/osconfig/v1alpha/os_policy_assignment.py @@ -248,7 +248,7 @@ def _internal_init(__self__, __props__.__dict__["revision_id"] = None __props__.__dict__["rollout_state"] = None __props__.__dict__["uid"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "os_policy_assignment_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "osPolicyAssignmentId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OsPolicyAssignment, __self__).__init__( 'google-native:osconfig/v1alpha:OsPolicyAssignment', diff --git a/sdk/python/pulumi_google_native/osconfig/v1alpha/outputs.py b/sdk/python/pulumi_google_native/osconfig/v1alpha/outputs.py index b20e556d58..35eda13ed2 100644 --- a/sdk/python/pulumi_google_native/osconfig/v1alpha/outputs.py +++ b/sdk/python/pulumi_google_native/osconfig/v1alpha/outputs.py @@ -208,13 +208,11 @@ def inventories(self) -> Sequence['outputs.OSPolicyAssignmentInstanceFilterInven @property @pulumi.getter(name="osShortNames") + @_utilities.deprecated("""Deprecated. Use the `inventories` field instead. A VM is selected if it's OS short name matches with any of the values provided in this list.""") def os_short_names(self) -> Sequence[str]: """ Deprecated. Use the `inventories` field instead. A VM is selected if it's OS short name matches with any of the values provided in this list. """ - warnings.warn("""Deprecated. Use the `inventories` field instead. A VM is selected if it's OS short name matches with any of the values provided in this list.""", DeprecationWarning) - pulumi.log.warn("""os_short_names is deprecated: Deprecated. Use the `inventories` field instead. A VM is selected if it's OS short name matches with any of the values provided in this list.""") - return pulumi.get(self, "os_short_names") @@ -794,13 +792,11 @@ def inventory_filters(self) -> Sequence['outputs.OSPolicyInventoryFilterResponse @property @pulumi.getter(name="osFilter") + @_utilities.deprecated("""Deprecated. Use the `inventory_filters` field instead. Used to specify the OS filter for a resource group""") def os_filter(self) -> 'outputs.OSPolicyOSFilterResponse': """ Deprecated. Use the `inventory_filters` field instead. Used to specify the OS filter for a resource group """ - warnings.warn("""Deprecated. Use the `inventory_filters` field instead. Used to specify the OS filter for a resource group""", DeprecationWarning) - pulumi.log.warn("""os_filter is deprecated: Deprecated. Use the `inventory_filters` field instead. Used to specify the OS filter for a resource group""") - return pulumi.get(self, "os_filter") @property diff --git a/sdk/python/pulumi_google_native/osconfig/v1beta/guest_policy.py b/sdk/python/pulumi_google_native/osconfig/v1beta/guest_policy.py index c7e7cc6cd6..9bd3913f11 100644 --- a/sdk/python/pulumi_google_native/osconfig/v1beta/guest_policy.py +++ b/sdk/python/pulumi_google_native/osconfig/v1beta/guest_policy.py @@ -246,7 +246,7 @@ def _internal_init(__self__, __props__.__dict__["recipes"] = recipes __props__.__dict__["create_time"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["guest_policy_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["guestPolicyId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(GuestPolicy, __self__).__init__( 'google-native:osconfig/v1beta:GuestPolicy', diff --git a/sdk/python/pulumi_google_native/osconfig/v1beta/patch_deployment.py b/sdk/python/pulumi_google_native/osconfig/v1beta/patch_deployment.py index 8509cbc282..8a22a27c99 100644 --- a/sdk/python/pulumi_google_native/osconfig/v1beta/patch_deployment.py +++ b/sdk/python/pulumi_google_native/osconfig/v1beta/patch_deployment.py @@ -270,7 +270,7 @@ def _internal_init(__self__, __props__.__dict__["last_execute_time"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["patch_deployment_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["patchDeploymentId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(PatchDeployment, __self__).__init__( 'google-native:osconfig/v1beta:PatchDeployment', diff --git a/sdk/python/pulumi_google_native/oslogin/v1/ssh_public_key.py b/sdk/python/pulumi_google_native/oslogin/v1/ssh_public_key.py index 1c6060fc88..68051bd28e 100644 --- a/sdk/python/pulumi_google_native/oslogin/v1/ssh_public_key.py +++ b/sdk/python/pulumi_google_native/oslogin/v1/ssh_public_key.py @@ -124,7 +124,7 @@ def _internal_init(__self__, __props__.__dict__["user_id"] = user_id __props__.__dict__["fingerprint"] = None __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["user_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["userId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SshPublicKey, __self__).__init__( 'google-native:oslogin/v1:SshPublicKey', diff --git a/sdk/python/pulumi_google_native/oslogin/v1alpha/ssh_public_key.py b/sdk/python/pulumi_google_native/oslogin/v1alpha/ssh_public_key.py index 48972c4e9e..95b25b2ecd 100644 --- a/sdk/python/pulumi_google_native/oslogin/v1alpha/ssh_public_key.py +++ b/sdk/python/pulumi_google_native/oslogin/v1alpha/ssh_public_key.py @@ -124,7 +124,7 @@ def _internal_init(__self__, __props__.__dict__["user_id"] = user_id __props__.__dict__["fingerprint"] = None __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["user_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["userId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SshPublicKey, __self__).__init__( 'google-native:oslogin/v1alpha:SshPublicKey', diff --git a/sdk/python/pulumi_google_native/oslogin/v1beta/ssh_public_key.py b/sdk/python/pulumi_google_native/oslogin/v1beta/ssh_public_key.py index e9bb0d2615..39b8261677 100644 --- a/sdk/python/pulumi_google_native/oslogin/v1beta/ssh_public_key.py +++ b/sdk/python/pulumi_google_native/oslogin/v1beta/ssh_public_key.py @@ -124,7 +124,7 @@ def _internal_init(__self__, __props__.__dict__["user_id"] = user_id __props__.__dict__["fingerprint"] = None __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["user_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["userId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SshPublicKey, __self__).__init__( 'google-native:oslogin/v1beta:SshPublicKey', diff --git a/sdk/python/pulumi_google_native/policysimulator/v1/folder_replay.py b/sdk/python/pulumi_google_native/policysimulator/v1/folder_replay.py index 13875c841b..560bef9f44 100644 --- a/sdk/python/pulumi_google_native/policysimulator/v1/folder_replay.py +++ b/sdk/python/pulumi_google_native/policysimulator/v1/folder_replay.py @@ -128,7 +128,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["results_summary"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folder_id", "location"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folderId", "location"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FolderReplay, __self__).__init__( 'google-native:policysimulator/v1:FolderReplay', diff --git a/sdk/python/pulumi_google_native/policysimulator/v1/organization_replay.py b/sdk/python/pulumi_google_native/policysimulator/v1/organization_replay.py index 275d57be8d..5346c26b1d 100644 --- a/sdk/python/pulumi_google_native/policysimulator/v1/organization_replay.py +++ b/sdk/python/pulumi_google_native/policysimulator/v1/organization_replay.py @@ -128,7 +128,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["results_summary"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationReplay, __self__).__init__( 'google-native:policysimulator/v1:OrganizationReplay', diff --git a/sdk/python/pulumi_google_native/policysimulator/v1alpha/folder_replay.py b/sdk/python/pulumi_google_native/policysimulator/v1alpha/folder_replay.py index c57314a11f..e9f9012fbb 100644 --- a/sdk/python/pulumi_google_native/policysimulator/v1alpha/folder_replay.py +++ b/sdk/python/pulumi_google_native/policysimulator/v1alpha/folder_replay.py @@ -128,7 +128,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["results_summary"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folder_id", "location"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folderId", "location"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FolderReplay, __self__).__init__( 'google-native:policysimulator/v1alpha:FolderReplay', diff --git a/sdk/python/pulumi_google_native/policysimulator/v1alpha/organization_replay.py b/sdk/python/pulumi_google_native/policysimulator/v1alpha/organization_replay.py index 92a5e17e6b..cede384bd5 100644 --- a/sdk/python/pulumi_google_native/policysimulator/v1alpha/organization_replay.py +++ b/sdk/python/pulumi_google_native/policysimulator/v1alpha/organization_replay.py @@ -128,7 +128,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["results_summary"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationReplay, __self__).__init__( 'google-native:policysimulator/v1alpha:OrganizationReplay', diff --git a/sdk/python/pulumi_google_native/policysimulator/v1beta/folder_replay.py b/sdk/python/pulumi_google_native/policysimulator/v1beta/folder_replay.py index 074ce5b7f8..4131f87a94 100644 --- a/sdk/python/pulumi_google_native/policysimulator/v1beta/folder_replay.py +++ b/sdk/python/pulumi_google_native/policysimulator/v1beta/folder_replay.py @@ -128,7 +128,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["results_summary"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folder_id", "location"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folderId", "location"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FolderReplay, __self__).__init__( 'google-native:policysimulator/v1beta:FolderReplay', diff --git a/sdk/python/pulumi_google_native/policysimulator/v1beta/organization_replay.py b/sdk/python/pulumi_google_native/policysimulator/v1beta/organization_replay.py index c87484bf89..12f6d47da0 100644 --- a/sdk/python/pulumi_google_native/policysimulator/v1beta/organization_replay.py +++ b/sdk/python/pulumi_google_native/policysimulator/v1beta/organization_replay.py @@ -128,7 +128,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["results_summary"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationReplay, __self__).__init__( 'google-native:policysimulator/v1beta:OrganizationReplay', diff --git a/sdk/python/pulumi_google_native/policysimulator/v1beta1/folder_replay.py b/sdk/python/pulumi_google_native/policysimulator/v1beta1/folder_replay.py index f882905e3c..48006c4713 100644 --- a/sdk/python/pulumi_google_native/policysimulator/v1beta1/folder_replay.py +++ b/sdk/python/pulumi_google_native/policysimulator/v1beta1/folder_replay.py @@ -128,7 +128,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["results_summary"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folder_id", "location"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folderId", "location"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FolderReplay, __self__).__init__( 'google-native:policysimulator/v1beta1:FolderReplay', diff --git a/sdk/python/pulumi_google_native/policysimulator/v1beta1/organization_replay.py b/sdk/python/pulumi_google_native/policysimulator/v1beta1/organization_replay.py index 2bb11cffab..03168bf998 100644 --- a/sdk/python/pulumi_google_native/policysimulator/v1beta1/organization_replay.py +++ b/sdk/python/pulumi_google_native/policysimulator/v1beta1/organization_replay.py @@ -128,7 +128,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["results_summary"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationReplay, __self__).__init__( 'google-native:policysimulator/v1beta1:OrganizationReplay', diff --git a/sdk/python/pulumi_google_native/privateca/v1/ca_pool.py b/sdk/python/pulumi_google_native/privateca/v1/ca_pool.py index 36dd92c0c1..5817aa791d 100644 --- a/sdk/python/pulumi_google_native/privateca/v1/ca_pool.py +++ b/sdk/python/pulumi_google_native/privateca/v1/ca_pool.py @@ -222,7 +222,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'tier'") __props__.__dict__["tier"] = tier __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["ca_pool_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["caPoolId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CaPool, __self__).__init__( 'google-native:privateca/v1:CaPool', diff --git a/sdk/python/pulumi_google_native/privateca/v1/ca_pool_certificate_authority_certificate_revocation_list_iam_policy.py b/sdk/python/pulumi_google_native/privateca/v1/ca_pool_certificate_authority_certificate_revocation_list_iam_policy.py index 57d6dd5eb6..a2d74a8837 100644 --- a/sdk/python/pulumi_google_native/privateca/v1/ca_pool_certificate_authority_certificate_revocation_list_iam_policy.py +++ b/sdk/python/pulumi_google_native/privateca/v1/ca_pool_certificate_authority_certificate_revocation_list_iam_policy.py @@ -249,7 +249,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["ca_pool_id", "certificate_authority_id", "certificate_revocation_list_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["caPoolId", "certificateAuthorityId", "certificateRevocationListId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CaPoolCertificateAuthorityCertificateRevocationListIamPolicy, __self__).__init__( 'google-native:privateca/v1:CaPoolCertificateAuthorityCertificateRevocationListIamPolicy', diff --git a/sdk/python/pulumi_google_native/privateca/v1/ca_pool_iam_policy.py b/sdk/python/pulumi_google_native/privateca/v1/ca_pool_iam_policy.py index 6cd79a7972..ee2514dadc 100644 --- a/sdk/python/pulumi_google_native/privateca/v1/ca_pool_iam_policy.py +++ b/sdk/python/pulumi_google_native/privateca/v1/ca_pool_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["ca_pool_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["caPoolId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CaPoolIamPolicy, __self__).__init__( 'google-native:privateca/v1:CaPoolIamPolicy', diff --git a/sdk/python/pulumi_google_native/privateca/v1/certificate.py b/sdk/python/pulumi_google_native/privateca/v1/certificate.py index 263adaf05d..c6e37f27ff 100644 --- a/sdk/python/pulumi_google_native/privateca/v1/certificate.py +++ b/sdk/python/pulumi_google_native/privateca/v1/certificate.py @@ -308,7 +308,7 @@ def _internal_init(__self__, __props__.__dict__["pem_certificate_chain"] = None __props__.__dict__["revocation_details"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["ca_pool_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["caPoolId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Certificate, __self__).__init__( 'google-native:privateca/v1:Certificate', diff --git a/sdk/python/pulumi_google_native/privateca/v1/certificate_authority.py b/sdk/python/pulumi_google_native/privateca/v1/certificate_authority.py index 8bc78b0b1e..bc8693cbc4 100644 --- a/sdk/python/pulumi_google_native/privateca/v1/certificate_authority.py +++ b/sdk/python/pulumi_google_native/privateca/v1/certificate_authority.py @@ -310,7 +310,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["tier"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["ca_pool_id", "certificate_authority_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["caPoolId", "certificateAuthorityId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CertificateAuthority, __self__).__init__( 'google-native:privateca/v1:CertificateAuthority', diff --git a/sdk/python/pulumi_google_native/privateca/v1/certificate_template.py b/sdk/python/pulumi_google_native/privateca/v1/certificate_template.py index aaf1371643..abf7daa7d1 100644 --- a/sdk/python/pulumi_google_native/privateca/v1/certificate_template.py +++ b/sdk/python/pulumi_google_native/privateca/v1/certificate_template.py @@ -263,7 +263,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["certificate_template_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["certificateTemplateId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CertificateTemplate, __self__).__init__( 'google-native:privateca/v1:CertificateTemplate', diff --git a/sdk/python/pulumi_google_native/privateca/v1/certificate_template_iam_policy.py b/sdk/python/pulumi_google_native/privateca/v1/certificate_template_iam_policy.py index ce0ec115b8..e328b54d60 100644 --- a/sdk/python/pulumi_google_native/privateca/v1/certificate_template_iam_policy.py +++ b/sdk/python/pulumi_google_native/privateca/v1/certificate_template_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["certificate_template_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["certificateTemplateId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CertificateTemplateIamPolicy, __self__).__init__( 'google-native:privateca/v1:CertificateTemplateIamPolicy', diff --git a/sdk/python/pulumi_google_native/privateca/v1beta1/certificate_authority_certificate_revocation_list_iam_policy.py b/sdk/python/pulumi_google_native/privateca/v1beta1/certificate_authority_certificate_revocation_list_iam_policy.py index a037099b64..84d560ef92 100644 --- a/sdk/python/pulumi_google_native/privateca/v1beta1/certificate_authority_certificate_revocation_list_iam_policy.py +++ b/sdk/python/pulumi_google_native/privateca/v1beta1/certificate_authority_certificate_revocation_list_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["certificate_authority_id", "certificate_revocation_list_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["certificateAuthorityId", "certificateRevocationListId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CertificateAuthorityCertificateRevocationListIamPolicy, __self__).__init__( 'google-native:privateca/v1beta1:CertificateAuthorityCertificateRevocationListIamPolicy', diff --git a/sdk/python/pulumi_google_native/privateca/v1beta1/certificate_authority_iam_policy.py b/sdk/python/pulumi_google_native/privateca/v1beta1/certificate_authority_iam_policy.py index 70fa601dea..9a006cd764 100644 --- a/sdk/python/pulumi_google_native/privateca/v1beta1/certificate_authority_iam_policy.py +++ b/sdk/python/pulumi_google_native/privateca/v1beta1/certificate_authority_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["certificate_authority_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["certificateAuthorityId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CertificateAuthorityIamPolicy, __self__).__init__( 'google-native:privateca/v1beta1:CertificateAuthorityIamPolicy', diff --git a/sdk/python/pulumi_google_native/privateca/v1beta1/reusable_config_iam_policy.py b/sdk/python/pulumi_google_native/privateca/v1beta1/reusable_config_iam_policy.py index dcac9fc20b..6788090a99 100644 --- a/sdk/python/pulumi_google_native/privateca/v1beta1/reusable_config_iam_policy.py +++ b/sdk/python/pulumi_google_native/privateca/v1beta1/reusable_config_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["reusable_config_id"] = reusable_config_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "reusable_config_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "reusableConfigId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ReusableConfigIamPolicy, __self__).__init__( 'google-native:privateca/v1beta1:ReusableConfigIamPolicy', diff --git a/sdk/python/pulumi_google_native/pubsub/v1/schema_iam_policy.py b/sdk/python/pulumi_google_native/pubsub/v1/schema_iam_policy.py index 4c239a83cf..8076b97d7f 100644 --- a/sdk/python/pulumi_google_native/pubsub/v1/schema_iam_policy.py +++ b/sdk/python/pulumi_google_native/pubsub/v1/schema_iam_policy.py @@ -161,7 +161,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'schema_id'") __props__.__dict__["schema_id"] = schema_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "schema_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "schemaId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SchemaIamPolicy, __self__).__init__( 'google-native:pubsub/v1:SchemaIamPolicy', diff --git a/sdk/python/pulumi_google_native/pubsub/v1/snapshot.py b/sdk/python/pulumi_google_native/pubsub/v1/snapshot.py index 7484a1fad2..4cb32f6a5c 100644 --- a/sdk/python/pulumi_google_native/pubsub/v1/snapshot.py +++ b/sdk/python/pulumi_google_native/pubsub/v1/snapshot.py @@ -141,7 +141,7 @@ def _internal_init(__self__, __props__.__dict__["expire_time"] = None __props__.__dict__["name"] = None __props__.__dict__["topic"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "snapshot_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "snapshotId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Snapshot, __self__).__init__( 'google-native:pubsub/v1:Snapshot', diff --git a/sdk/python/pulumi_google_native/pubsub/v1/snapshot_iam_policy.py b/sdk/python/pulumi_google_native/pubsub/v1/snapshot_iam_policy.py index b341e2b1b6..8ae8a08ac1 100644 --- a/sdk/python/pulumi_google_native/pubsub/v1/snapshot_iam_policy.py +++ b/sdk/python/pulumi_google_native/pubsub/v1/snapshot_iam_policy.py @@ -161,7 +161,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'snapshot_id'") __props__.__dict__["snapshot_id"] = snapshot_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "snapshot_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "snapshotId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SnapshotIamPolicy, __self__).__init__( 'google-native:pubsub/v1:SnapshotIamPolicy', diff --git a/sdk/python/pulumi_google_native/pubsub/v1/subscription.py b/sdk/python/pulumi_google_native/pubsub/v1/subscription.py index cc127b7c84..9cde24f7da 100644 --- a/sdk/python/pulumi_google_native/pubsub/v1/subscription.py +++ b/sdk/python/pulumi_google_native/pubsub/v1/subscription.py @@ -420,7 +420,7 @@ def _internal_init(__self__, __props__.__dict__["topic"] = topic __props__.__dict__["state"] = None __props__.__dict__["topic_message_retention_duration"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "subscription_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "subscriptionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Subscription, __self__).__init__( 'google-native:pubsub/v1:Subscription', diff --git a/sdk/python/pulumi_google_native/pubsub/v1/subscription_iam_policy.py b/sdk/python/pulumi_google_native/pubsub/v1/subscription_iam_policy.py index 99f9f9a54a..8f50cb94b8 100644 --- a/sdk/python/pulumi_google_native/pubsub/v1/subscription_iam_policy.py +++ b/sdk/python/pulumi_google_native/pubsub/v1/subscription_iam_policy.py @@ -161,7 +161,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'subscription_id'") __props__.__dict__["subscription_id"] = subscription_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "subscription_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "subscriptionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SubscriptionIamPolicy, __self__).__init__( 'google-native:pubsub/v1:SubscriptionIamPolicy', diff --git a/sdk/python/pulumi_google_native/pubsub/v1/topic.py b/sdk/python/pulumi_google_native/pubsub/v1/topic.py index 5664c060a7..1ab466caec 100644 --- a/sdk/python/pulumi_google_native/pubsub/v1/topic.py +++ b/sdk/python/pulumi_google_native/pubsub/v1/topic.py @@ -238,7 +238,7 @@ def _internal_init(__self__, if topic_id is None and not opts.urn: raise TypeError("Missing required property 'topic_id'") __props__.__dict__["topic_id"] = topic_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "topic_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "topicId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Topic, __self__).__init__( 'google-native:pubsub/v1:Topic', diff --git a/sdk/python/pulumi_google_native/pubsub/v1/topic_iam_policy.py b/sdk/python/pulumi_google_native/pubsub/v1/topic_iam_policy.py index 7bfe73bf2d..99f011891b 100644 --- a/sdk/python/pulumi_google_native/pubsub/v1/topic_iam_policy.py +++ b/sdk/python/pulumi_google_native/pubsub/v1/topic_iam_policy.py @@ -161,7 +161,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'topic_id'") __props__.__dict__["topic_id"] = topic_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "topic_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "topicId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TopicIamPolicy, __self__).__init__( 'google-native:pubsub/v1:TopicIamPolicy', diff --git a/sdk/python/pulumi_google_native/pubsub/v1beta2/subscription.py b/sdk/python/pulumi_google_native/pubsub/v1beta2/subscription.py index 077cc67980..b58497d428 100644 --- a/sdk/python/pulumi_google_native/pubsub/v1beta2/subscription.py +++ b/sdk/python/pulumi_google_native/pubsub/v1beta2/subscription.py @@ -177,7 +177,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'subscription_id'") __props__.__dict__["subscription_id"] = subscription_id __props__.__dict__["topic"] = topic - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "subscription_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "subscriptionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Subscription, __self__).__init__( 'google-native:pubsub/v1beta2:Subscription', diff --git a/sdk/python/pulumi_google_native/pubsub/v1beta2/subscription_iam_policy.py b/sdk/python/pulumi_google_native/pubsub/v1beta2/subscription_iam_policy.py index 0b748a03fb..7e685fdcd3 100644 --- a/sdk/python/pulumi_google_native/pubsub/v1beta2/subscription_iam_policy.py +++ b/sdk/python/pulumi_google_native/pubsub/v1beta2/subscription_iam_policy.py @@ -161,7 +161,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'subscription_id'") __props__.__dict__["subscription_id"] = subscription_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "subscription_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "subscriptionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SubscriptionIamPolicy, __self__).__init__( 'google-native:pubsub/v1beta2:SubscriptionIamPolicy', diff --git a/sdk/python/pulumi_google_native/pubsub/v1beta2/topic.py b/sdk/python/pulumi_google_native/pubsub/v1beta2/topic.py index 4128eade7d..3ce52e5988 100644 --- a/sdk/python/pulumi_google_native/pubsub/v1beta2/topic.py +++ b/sdk/python/pulumi_google_native/pubsub/v1beta2/topic.py @@ -115,7 +115,7 @@ def _internal_init(__self__, if topic_id is None and not opts.urn: raise TypeError("Missing required property 'topic_id'") __props__.__dict__["topic_id"] = topic_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "topic_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "topicId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Topic, __self__).__init__( 'google-native:pubsub/v1beta2:Topic', diff --git a/sdk/python/pulumi_google_native/pubsub/v1beta2/topic_iam_policy.py b/sdk/python/pulumi_google_native/pubsub/v1beta2/topic_iam_policy.py index d20b80c079..8453048680 100644 --- a/sdk/python/pulumi_google_native/pubsub/v1beta2/topic_iam_policy.py +++ b/sdk/python/pulumi_google_native/pubsub/v1beta2/topic_iam_policy.py @@ -161,7 +161,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'topic_id'") __props__.__dict__["topic_id"] = topic_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "topic_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "topicId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TopicIamPolicy, __self__).__init__( 'google-native:pubsub/v1beta2:TopicIamPolicy', diff --git a/sdk/python/pulumi_google_native/pubsublite/v1/_inputs.py b/sdk/python/pulumi_google_native/pubsublite/v1/_inputs.py index 945cabefd3..0e421ed63e 100644 --- a/sdk/python/pulumi_google_native/pubsublite/v1/_inputs.py +++ b/sdk/python/pulumi_google_native/pubsublite/v1/_inputs.py @@ -188,13 +188,11 @@ def count(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""DEPRECATED: Use capacity instead which can express a superset of configurations. Every partition in the topic is allocated throughput equivalent to `scale` times the standard partition throughput (4 MiB/s). This is also reflected in the cost of this topic; a topic with `scale` of 2 and count of 10 is charged for 20 partitions. This value must be in the range [1,4].""") def scale(self) -> Optional[pulumi.Input[int]]: """ DEPRECATED: Use capacity instead which can express a superset of configurations. Every partition in the topic is allocated throughput equivalent to `scale` times the standard partition throughput (4 MiB/s). This is also reflected in the cost of this topic; a topic with `scale` of 2 and count of 10 is charged for 20 partitions. This value must be in the range [1,4]. """ - warnings.warn("""DEPRECATED: Use capacity instead which can express a superset of configurations. Every partition in the topic is allocated throughput equivalent to `scale` times the standard partition throughput (4 MiB/s). This is also reflected in the cost of this topic; a topic with `scale` of 2 and count of 10 is charged for 20 partitions. This value must be in the range [1,4].""", DeprecationWarning) - pulumi.log.warn("""scale is deprecated: DEPRECATED: Use capacity instead which can express a superset of configurations. Every partition in the topic is allocated throughput equivalent to `scale` times the standard partition throughput (4 MiB/s). This is also reflected in the cost of this topic; a topic with `scale` of 2 and count of 10 is charged for 20 partitions. This value must be in the range [1,4].""") - return pulumi.get(self, "scale") @scale.setter diff --git a/sdk/python/pulumi_google_native/pubsublite/v1/outputs.py b/sdk/python/pulumi_google_native/pubsublite/v1/outputs.py index 3fccdcb53a..fe06e9732c 100644 --- a/sdk/python/pulumi_google_native/pubsublite/v1/outputs.py +++ b/sdk/python/pulumi_google_native/pubsublite/v1/outputs.py @@ -227,13 +227,11 @@ def count(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""DEPRECATED: Use capacity instead which can express a superset of configurations. Every partition in the topic is allocated throughput equivalent to `scale` times the standard partition throughput (4 MiB/s). This is also reflected in the cost of this topic; a topic with `scale` of 2 and count of 10 is charged for 20 partitions. This value must be in the range [1,4].""") def scale(self) -> int: """ DEPRECATED: Use capacity instead which can express a superset of configurations. Every partition in the topic is allocated throughput equivalent to `scale` times the standard partition throughput (4 MiB/s). This is also reflected in the cost of this topic; a topic with `scale` of 2 and count of 10 is charged for 20 partitions. This value must be in the range [1,4]. """ - warnings.warn("""DEPRECATED: Use capacity instead which can express a superset of configurations. Every partition in the topic is allocated throughput equivalent to `scale` times the standard partition throughput (4 MiB/s). This is also reflected in the cost of this topic; a topic with `scale` of 2 and count of 10 is charged for 20 partitions. This value must be in the range [1,4].""", DeprecationWarning) - pulumi.log.warn("""scale is deprecated: DEPRECATED: Use capacity instead which can express a superset of configurations. Every partition in the topic is allocated throughput equivalent to `scale` times the standard partition throughput (4 MiB/s). This is also reflected in the cost of this topic; a topic with `scale` of 2 and count of 10 is charged for 20 partitions. This value must be in the range [1,4].""") - return pulumi.get(self, "scale") diff --git a/sdk/python/pulumi_google_native/pubsublite/v1/reservation.py b/sdk/python/pulumi_google_native/pubsublite/v1/reservation.py index 46807bdfaa..9f2ad1225e 100644 --- a/sdk/python/pulumi_google_native/pubsublite/v1/reservation.py +++ b/sdk/python/pulumi_google_native/pubsublite/v1/reservation.py @@ -155,7 +155,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'reservation_id'") __props__.__dict__["reservation_id"] = reservation_id __props__.__dict__["throughput_capacity"] = throughput_capacity - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "reservation_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "reservationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Reservation, __self__).__init__( 'google-native:pubsublite/v1:Reservation', diff --git a/sdk/python/pulumi_google_native/pubsublite/v1/subscription.py b/sdk/python/pulumi_google_native/pubsublite/v1/subscription.py index 69655ea3c0..1bb7e1711a 100644 --- a/sdk/python/pulumi_google_native/pubsublite/v1/subscription.py +++ b/sdk/python/pulumi_google_native/pubsublite/v1/subscription.py @@ -218,7 +218,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'subscription_id'") __props__.__dict__["subscription_id"] = subscription_id __props__.__dict__["topic"] = topic - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "subscription_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "subscriptionId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Subscription, __self__).__init__( 'google-native:pubsublite/v1:Subscription', diff --git a/sdk/python/pulumi_google_native/pubsublite/v1/topic.py b/sdk/python/pulumi_google_native/pubsublite/v1/topic.py index 8addf3e49e..b2c4df4332 100644 --- a/sdk/python/pulumi_google_native/pubsublite/v1/topic.py +++ b/sdk/python/pulumi_google_native/pubsublite/v1/topic.py @@ -197,7 +197,7 @@ def _internal_init(__self__, if topic_id is None and not opts.urn: raise TypeError("Missing required property 'topic_id'") __props__.__dict__["topic_id"] = topic_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "topic_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "topicId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Topic, __self__).__init__( 'google-native:pubsublite/v1:Topic', diff --git a/sdk/python/pulumi_google_native/pulumi-plugin.json b/sdk/python/pulumi_google_native/pulumi-plugin.json index b5986d128c..62865ea91e 100644 --- a/sdk/python/pulumi_google_native/pulumi-plugin.json +++ b/sdk/python/pulumi_google_native/pulumi-plugin.json @@ -1,4 +1,5 @@ { "resource": true, - "name": "google-native" + "name": "google-native", + "version": "0.0.1-alpha.0+dev" } diff --git a/sdk/python/pulumi_google_native/rapidmigrationassessment/v1/collector.py b/sdk/python/pulumi_google_native/rapidmigrationassessment/v1/collector.py index 4e03bfa5b2..19a69486fd 100644 --- a/sdk/python/pulumi_google_native/rapidmigrationassessment/v1/collector.py +++ b/sdk/python/pulumi_google_native/rapidmigrationassessment/v1/collector.py @@ -303,7 +303,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None __props__.__dict__["vsphere_scan"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["collector_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["collectorId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Collector, __self__).__init__( 'google-native:rapidmigrationassessment/v1:Collector', diff --git a/sdk/python/pulumi_google_native/recommendationengine/v1beta1/catalog_item.py b/sdk/python/pulumi_google_native/recommendationengine/v1beta1/catalog_item.py index a768c2e5d3..9360bbff35 100644 --- a/sdk/python/pulumi_google_native/recommendationengine/v1beta1/catalog_item.py +++ b/sdk/python/pulumi_google_native/recommendationengine/v1beta1/catalog_item.py @@ -148,13 +148,11 @@ def item_group_id(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="languageCode") + @_utilities.deprecated("""Optional. Deprecated. The model automatically detects the text language. Your catalog can include text in different languages, but duplicating catalog items to provide text in multiple languages can result in degraded model performance.""") def language_code(self) -> Optional[pulumi.Input[str]]: """ Optional. Deprecated. The model automatically detects the text language. Your catalog can include text in different languages, but duplicating catalog items to provide text in multiple languages can result in degraded model performance. """ - warnings.warn("""Optional. Deprecated. The model automatically detects the text language. Your catalog can include text in different languages, but duplicating catalog items to provide text in multiple languages can result in degraded model performance.""", DeprecationWarning) - pulumi.log.warn("""language_code is deprecated: Optional. Deprecated. The model automatically detects the text language. Your catalog can include text in different languages, but duplicating catalog items to provide text in multiple languages can result in degraded model performance.""") - return pulumi.get(self, "language_code") @language_code.setter @@ -304,7 +302,7 @@ def _internal_init(__self__, if title is None and not opts.urn: raise TypeError("Missing required property 'title'") __props__.__dict__["title"] = title - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalog_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalogId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CatalogItem, __self__).__init__( 'google-native:recommendationengine/v1beta1:CatalogItem', @@ -380,13 +378,11 @@ def item_group_id(self) -> pulumi.Output[str]: @property @pulumi.getter(name="languageCode") + @_utilities.deprecated("""Optional. Deprecated. The model automatically detects the text language. Your catalog can include text in different languages, but duplicating catalog items to provide text in multiple languages can result in degraded model performance.""") def language_code(self) -> pulumi.Output[str]: """ Optional. Deprecated. The model automatically detects the text language. Your catalog can include text in different languages, but duplicating catalog items to provide text in multiple languages can result in degraded model performance. """ - warnings.warn("""Optional. Deprecated. The model automatically detects the text language. Your catalog can include text in different languages, but duplicating catalog items to provide text in multiple languages can result in degraded model performance.""", DeprecationWarning) - pulumi.log.warn("""language_code is deprecated: Optional. Deprecated. The model automatically detects the text language. Your catalog can include text in different languages, but duplicating catalog items to provide text in multiple languages can result in degraded model performance.""") - return pulumi.get(self, "language_code") @property diff --git a/sdk/python/pulumi_google_native/recommendationengine/v1beta1/get_catalog_item.py b/sdk/python/pulumi_google_native/recommendationengine/v1beta1/get_catalog_item.py index ce9d484a55..a1993e387d 100644 --- a/sdk/python/pulumi_google_native/recommendationengine/v1beta1/get_catalog_item.py +++ b/sdk/python/pulumi_google_native/recommendationengine/v1beta1/get_catalog_item.py @@ -79,13 +79,11 @@ def item_group_id(self) -> str: @property @pulumi.getter(name="languageCode") + @_utilities.deprecated("""Optional. Deprecated. The model automatically detects the text language. Your catalog can include text in different languages, but duplicating catalog items to provide text in multiple languages can result in degraded model performance.""") def language_code(self) -> str: """ Optional. Deprecated. The model automatically detects the text language. Your catalog can include text in different languages, but duplicating catalog items to provide text in multiple languages can result in degraded model performance. """ - warnings.warn("""Optional. Deprecated. The model automatically detects the text language. Your catalog can include text in different languages, but duplicating catalog items to provide text in multiple languages can result in degraded model performance.""", DeprecationWarning) - pulumi.log.warn("""language_code is deprecated: Optional. Deprecated. The model automatically detects the text language. Your catalog can include text in different languages, but duplicating catalog items to provide text in multiple languages can result in degraded model performance.""") - return pulumi.get(self, "language_code") @property diff --git a/sdk/python/pulumi_google_native/redis/v1/cluster.py b/sdk/python/pulumi_google_native/redis/v1/cluster.py index be72473b60..146a1cb777 100644 --- a/sdk/python/pulumi_google_native/redis/v1/cluster.py +++ b/sdk/python/pulumi_google_native/redis/v1/cluster.py @@ -267,7 +267,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["state_info"] = None __props__.__dict__["uid"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cluster_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clusterId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Cluster, __self__).__init__( 'google-native:redis/v1:Cluster', diff --git a/sdk/python/pulumi_google_native/redis/v1/instance.py b/sdk/python/pulumi_google_native/redis/v1/instance.py index 1f77302fed..0352bb77a4 100644 --- a/sdk/python/pulumi_google_native/redis/v1/instance.py +++ b/sdk/python/pulumi_google_native/redis/v1/instance.py @@ -579,7 +579,7 @@ def _internal_init(__self__, __props__.__dict__["server_ca_certs"] = None __props__.__dict__["state"] = None __props__.__dict__["status_message"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Instance, __self__).__init__( 'google-native:redis/v1:Instance', diff --git a/sdk/python/pulumi_google_native/redis/v1beta1/cluster.py b/sdk/python/pulumi_google_native/redis/v1beta1/cluster.py index 9b511b49f7..20a173ce1f 100644 --- a/sdk/python/pulumi_google_native/redis/v1beta1/cluster.py +++ b/sdk/python/pulumi_google_native/redis/v1beta1/cluster.py @@ -267,7 +267,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["state_info"] = None __props__.__dict__["uid"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cluster_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clusterId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Cluster, __self__).__init__( 'google-native:redis/v1beta1:Cluster', diff --git a/sdk/python/pulumi_google_native/redis/v1beta1/instance.py b/sdk/python/pulumi_google_native/redis/v1beta1/instance.py index 5c6dadb0de..e09cbb236d 100644 --- a/sdk/python/pulumi_google_native/redis/v1beta1/instance.py +++ b/sdk/python/pulumi_google_native/redis/v1beta1/instance.py @@ -579,7 +579,7 @@ def _internal_init(__self__, __props__.__dict__["server_ca_certs"] = None __props__.__dict__["state"] = None __props__.__dict__["status_message"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Instance, __self__).__init__( 'google-native:redis/v1beta1:Instance', diff --git a/sdk/python/pulumi_google_native/remotebuildexecution/v1alpha/worker_pool.py b/sdk/python/pulumi_google_native/remotebuildexecution/v1alpha/worker_pool.py index d07f2bfbd5..5e84ca9116 100644 --- a/sdk/python/pulumi_google_native/remotebuildexecution/v1alpha/worker_pool.py +++ b/sdk/python/pulumi_google_native/remotebuildexecution/v1alpha/worker_pool.py @@ -238,7 +238,7 @@ def _internal_init(__self__, __props__.__dict__["worker_config"] = worker_config __props__.__dict__["worker_count"] = worker_count __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(WorkerPool, __self__).__init__( 'google-native:remotebuildexecution/v1alpha:WorkerPool', diff --git a/sdk/python/pulumi_google_native/retail/v2/control.py b/sdk/python/pulumi_google_native/retail/v2/control.py index 5a37bab3c2..5906471b75 100644 --- a/sdk/python/pulumi_google_native/retail/v2/control.py +++ b/sdk/python/pulumi_google_native/retail/v2/control.py @@ -239,7 +239,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'solution_types'") __props__.__dict__["solution_types"] = solution_types __props__.__dict__["associated_serving_config_ids"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalog_id", "control_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalogId", "controlId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Control, __self__).__init__( 'google-native:retail/v2:Control', diff --git a/sdk/python/pulumi_google_native/retail/v2/get_product.py b/sdk/python/pulumi_google_native/retail/v2/get_product.py index d6b4bc55ff..1bd8e2e736 100644 --- a/sdk/python/pulumi_google_native/retail/v2/get_product.py +++ b/sdk/python/pulumi_google_native/retail/v2/get_product.py @@ -322,13 +322,11 @@ def rating(self) -> 'outputs.GoogleCloudRetailV2RatingResponse': @property @pulumi.getter(name="retrievableFields") + @_utilities.deprecated("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") def retrievable_fields(self) -> str: """ Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form "attributes.key" where "key" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead. """ - warnings.warn("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""", DeprecationWarning) - pulumi.log.warn("""retrievable_fields is deprecated: Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") - return pulumi.get(self, "retrievable_fields") @property diff --git a/sdk/python/pulumi_google_native/retail/v2/model.py b/sdk/python/pulumi_google_native/retail/v2/model.py index cf8f5251e9..c863d1ac1b 100644 --- a/sdk/python/pulumi_google_native/retail/v2/model.py +++ b/sdk/python/pulumi_google_native/retail/v2/model.py @@ -302,7 +302,7 @@ def _internal_init(__self__, __props__.__dict__["serving_state"] = None __props__.__dict__["tuning_operation"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalog_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalogId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Model, __self__).__init__( 'google-native:retail/v2:Model', diff --git a/sdk/python/pulumi_google_native/retail/v2/outputs.py b/sdk/python/pulumi_google_native/retail/v2/outputs.py index 8ceb659181..ecd5a99532 100644 --- a/sdk/python/pulumi_google_native/retail/v2/outputs.py +++ b/sdk/python/pulumi_google_native/retail/v2/outputs.py @@ -1186,13 +1186,11 @@ def rating(self) -> 'outputs.GoogleCloudRetailV2RatingResponse': @property @pulumi.getter(name="retrievableFields") + @_utilities.deprecated("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") def retrievable_fields(self) -> str: """ Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form "attributes.key" where "key" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead. """ - warnings.warn("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""", DeprecationWarning) - pulumi.log.warn("""retrievable_fields is deprecated: Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") - return pulumi.get(self, "retrievable_fields") @property diff --git a/sdk/python/pulumi_google_native/retail/v2/product.py b/sdk/python/pulumi_google_native/retail/v2/product.py index 1ee2cde39b..b016634ae4 100644 --- a/sdk/python/pulumi_google_native/retail/v2/product.py +++ b/sdk/python/pulumi_google_native/retail/v2/product.py @@ -526,13 +526,11 @@ def rating(self, value: Optional[pulumi.Input['GoogleCloudRetailV2RatingArgs']]) @property @pulumi.getter(name="retrievableFields") + @_utilities.deprecated("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") def retrievable_fields(self) -> Optional[pulumi.Input[str]]: """ Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form "attributes.key" where "key" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead. """ - warnings.warn("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""", DeprecationWarning) - pulumi.log.warn("""retrievable_fields is deprecated: Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") - return pulumi.get(self, "retrievable_fields") @retrievable_fields.setter @@ -799,7 +797,7 @@ def _internal_init(__self__, __props__.__dict__["uri"] = uri __props__.__dict__["local_inventories"] = None __props__.__dict__["variants"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["branch_id", "catalog_id", "location", "product_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["branchId", "catalogId", "location", "productId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Product, __self__).__init__( 'google-native:retail/v2:Product', @@ -1093,13 +1091,11 @@ def rating(self) -> pulumi.Output['outputs.GoogleCloudRetailV2RatingResponse']: @property @pulumi.getter(name="retrievableFields") + @_utilities.deprecated("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") def retrievable_fields(self) -> pulumi.Output[str]: """ Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form "attributes.key" where "key" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead. """ - warnings.warn("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""", DeprecationWarning) - pulumi.log.warn("""retrievable_fields is deprecated: Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") - return pulumi.get(self, "retrievable_fields") @property diff --git a/sdk/python/pulumi_google_native/retail/v2/serving_config.py b/sdk/python/pulumi_google_native/retail/v2/serving_config.py index 5b60fe7343..359a0c712c 100644 --- a/sdk/python/pulumi_google_native/retail/v2/serving_config.py +++ b/sdk/python/pulumi_google_native/retail/v2/serving_config.py @@ -518,7 +518,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'solution_types'") __props__.__dict__["solution_types"] = solution_types __props__.__dict__["twoway_synonyms_control_ids"] = twoway_synonyms_control_ids - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalog_id", "location", "project", "serving_config_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalogId", "location", "project", "servingConfigId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServingConfig, __self__).__init__( 'google-native:retail/v2:ServingConfig', diff --git a/sdk/python/pulumi_google_native/retail/v2alpha/control.py b/sdk/python/pulumi_google_native/retail/v2alpha/control.py index dcbfe4e75e..bae35f4074 100644 --- a/sdk/python/pulumi_google_native/retail/v2alpha/control.py +++ b/sdk/python/pulumi_google_native/retail/v2alpha/control.py @@ -259,7 +259,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'solution_types'") __props__.__dict__["solution_types"] = solution_types __props__.__dict__["associated_serving_config_ids"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalog_id", "control_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalogId", "controlId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Control, __self__).__init__( 'google-native:retail/v2alpha:Control', diff --git a/sdk/python/pulumi_google_native/retail/v2alpha/get_product.py b/sdk/python/pulumi_google_native/retail/v2alpha/get_product.py index 23b1d2c80f..3f3fefdf00 100644 --- a/sdk/python/pulumi_google_native/retail/v2alpha/get_product.py +++ b/sdk/python/pulumi_google_native/retail/v2alpha/get_product.py @@ -322,13 +322,11 @@ def rating(self) -> 'outputs.GoogleCloudRetailV2alphaRatingResponse': @property @pulumi.getter(name="retrievableFields") + @_utilities.deprecated("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") def retrievable_fields(self) -> str: """ Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form "attributes.key" where "key" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead. """ - warnings.warn("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""", DeprecationWarning) - pulumi.log.warn("""retrievable_fields is deprecated: Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") - return pulumi.get(self, "retrievable_fields") @property diff --git a/sdk/python/pulumi_google_native/retail/v2alpha/model.py b/sdk/python/pulumi_google_native/retail/v2alpha/model.py index ff4269373e..f5c8046ef0 100644 --- a/sdk/python/pulumi_google_native/retail/v2alpha/model.py +++ b/sdk/python/pulumi_google_native/retail/v2alpha/model.py @@ -322,7 +322,7 @@ def _internal_init(__self__, __props__.__dict__["serving_state"] = None __props__.__dict__["tuning_operation"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalog_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalogId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Model, __self__).__init__( 'google-native:retail/v2alpha:Model', diff --git a/sdk/python/pulumi_google_native/retail/v2alpha/outputs.py b/sdk/python/pulumi_google_native/retail/v2alpha/outputs.py index 2b3fd57c9d..0a2d9a5675 100644 --- a/sdk/python/pulumi_google_native/retail/v2alpha/outputs.py +++ b/sdk/python/pulumi_google_native/retail/v2alpha/outputs.py @@ -1354,13 +1354,11 @@ def rating(self) -> 'outputs.GoogleCloudRetailV2alphaRatingResponse': @property @pulumi.getter(name="retrievableFields") + @_utilities.deprecated("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") def retrievable_fields(self) -> str: """ Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form "attributes.key" where "key" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead. """ - warnings.warn("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""", DeprecationWarning) - pulumi.log.warn("""retrievable_fields is deprecated: Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") - return pulumi.get(self, "retrievable_fields") @property diff --git a/sdk/python/pulumi_google_native/retail/v2alpha/product.py b/sdk/python/pulumi_google_native/retail/v2alpha/product.py index 18617ffd99..825729cd8a 100644 --- a/sdk/python/pulumi_google_native/retail/v2alpha/product.py +++ b/sdk/python/pulumi_google_native/retail/v2alpha/product.py @@ -526,13 +526,11 @@ def rating(self, value: Optional[pulumi.Input['GoogleCloudRetailV2alphaRatingArg @property @pulumi.getter(name="retrievableFields") + @_utilities.deprecated("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") def retrievable_fields(self) -> Optional[pulumi.Input[str]]: """ Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form "attributes.key" where "key" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead. """ - warnings.warn("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""", DeprecationWarning) - pulumi.log.warn("""retrievable_fields is deprecated: Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") - return pulumi.get(self, "retrievable_fields") @retrievable_fields.setter @@ -799,7 +797,7 @@ def _internal_init(__self__, __props__.__dict__["uri"] = uri __props__.__dict__["local_inventories"] = None __props__.__dict__["variants"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["branch_id", "catalog_id", "location", "product_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["branchId", "catalogId", "location", "productId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Product, __self__).__init__( 'google-native:retail/v2alpha:Product', @@ -1093,13 +1091,11 @@ def rating(self) -> pulumi.Output['outputs.GoogleCloudRetailV2alphaRatingRespons @property @pulumi.getter(name="retrievableFields") + @_utilities.deprecated("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") def retrievable_fields(self) -> pulumi.Output[str]: """ Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form "attributes.key" where "key" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead. """ - warnings.warn("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""", DeprecationWarning) - pulumi.log.warn("""retrievable_fields is deprecated: Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") - return pulumi.get(self, "retrievable_fields") @property diff --git a/sdk/python/pulumi_google_native/retail/v2alpha/serving_config.py b/sdk/python/pulumi_google_native/retail/v2alpha/serving_config.py index 28aa1ddcb9..5fff3cb848 100644 --- a/sdk/python/pulumi_google_native/retail/v2alpha/serving_config.py +++ b/sdk/python/pulumi_google_native/retail/v2alpha/serving_config.py @@ -518,7 +518,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'solution_types'") __props__.__dict__["solution_types"] = solution_types __props__.__dict__["twoway_synonyms_control_ids"] = twoway_synonyms_control_ids - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalog_id", "location", "project", "serving_config_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalogId", "location", "project", "servingConfigId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServingConfig, __self__).__init__( 'google-native:retail/v2alpha:ServingConfig', diff --git a/sdk/python/pulumi_google_native/retail/v2beta/control.py b/sdk/python/pulumi_google_native/retail/v2beta/control.py index 137c13f7c2..218f3847af 100644 --- a/sdk/python/pulumi_google_native/retail/v2beta/control.py +++ b/sdk/python/pulumi_google_native/retail/v2beta/control.py @@ -259,7 +259,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'solution_types'") __props__.__dict__["solution_types"] = solution_types __props__.__dict__["associated_serving_config_ids"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalog_id", "control_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalogId", "controlId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Control, __self__).__init__( 'google-native:retail/v2beta:Control', diff --git a/sdk/python/pulumi_google_native/retail/v2beta/get_product.py b/sdk/python/pulumi_google_native/retail/v2beta/get_product.py index e3a6de3726..98c4cae995 100644 --- a/sdk/python/pulumi_google_native/retail/v2beta/get_product.py +++ b/sdk/python/pulumi_google_native/retail/v2beta/get_product.py @@ -322,13 +322,11 @@ def rating(self) -> 'outputs.GoogleCloudRetailV2betaRatingResponse': @property @pulumi.getter(name="retrievableFields") + @_utilities.deprecated("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") def retrievable_fields(self) -> str: """ Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form "attributes.key" where "key" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead. """ - warnings.warn("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""", DeprecationWarning) - pulumi.log.warn("""retrievable_fields is deprecated: Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") - return pulumi.get(self, "retrievable_fields") @property diff --git a/sdk/python/pulumi_google_native/retail/v2beta/model.py b/sdk/python/pulumi_google_native/retail/v2beta/model.py index 106da4170e..6d54570f53 100644 --- a/sdk/python/pulumi_google_native/retail/v2beta/model.py +++ b/sdk/python/pulumi_google_native/retail/v2beta/model.py @@ -302,7 +302,7 @@ def _internal_init(__self__, __props__.__dict__["serving_state"] = None __props__.__dict__["tuning_operation"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalog_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalogId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Model, __self__).__init__( 'google-native:retail/v2beta:Model', diff --git a/sdk/python/pulumi_google_native/retail/v2beta/outputs.py b/sdk/python/pulumi_google_native/retail/v2beta/outputs.py index bf22526ada..1d65899e87 100644 --- a/sdk/python/pulumi_google_native/retail/v2beta/outputs.py +++ b/sdk/python/pulumi_google_native/retail/v2beta/outputs.py @@ -1188,13 +1188,11 @@ def rating(self) -> 'outputs.GoogleCloudRetailV2betaRatingResponse': @property @pulumi.getter(name="retrievableFields") + @_utilities.deprecated("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") def retrievable_fields(self) -> str: """ Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form "attributes.key" where "key" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead. """ - warnings.warn("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""", DeprecationWarning) - pulumi.log.warn("""retrievable_fields is deprecated: Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") - return pulumi.get(self, "retrievable_fields") @property diff --git a/sdk/python/pulumi_google_native/retail/v2beta/product.py b/sdk/python/pulumi_google_native/retail/v2beta/product.py index cb58ffafe9..d2b21c3a70 100644 --- a/sdk/python/pulumi_google_native/retail/v2beta/product.py +++ b/sdk/python/pulumi_google_native/retail/v2beta/product.py @@ -526,13 +526,11 @@ def rating(self, value: Optional[pulumi.Input['GoogleCloudRetailV2betaRatingArgs @property @pulumi.getter(name="retrievableFields") + @_utilities.deprecated("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") def retrievable_fields(self) -> Optional[pulumi.Input[str]]: """ Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form "attributes.key" where "key" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead. """ - warnings.warn("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""", DeprecationWarning) - pulumi.log.warn("""retrievable_fields is deprecated: Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") - return pulumi.get(self, "retrievable_fields") @retrievable_fields.setter @@ -799,7 +797,7 @@ def _internal_init(__self__, __props__.__dict__["uri"] = uri __props__.__dict__["local_inventories"] = None __props__.__dict__["variants"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["branch_id", "catalog_id", "location", "product_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["branchId", "catalogId", "location", "productId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Product, __self__).__init__( 'google-native:retail/v2beta:Product', @@ -1093,13 +1091,11 @@ def rating(self) -> pulumi.Output['outputs.GoogleCloudRetailV2betaRatingResponse @property @pulumi.getter(name="retrievableFields") + @_utilities.deprecated("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") def retrievable_fields(self) -> pulumi.Output[str]: """ Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form "attributes.key" where "key" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead. """ - warnings.warn("""Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""", DeprecationWarning) - pulumi.log.warn("""retrievable_fields is deprecated: Indicates which fields in the Products are returned in SearchResponse. Supported fields for all types: * audience * availability * brands * color_info * conditions * gtin * materials * name * patterns * price_info * rating * sizes * title * uri Supported fields only for Type.PRIMARY and Type.COLLECTION: * categories * description * images Supported fields only for Type.VARIANT: * Only the first image in images To mark attributes as retrievable, include paths of the form \"attributes.key\" where \"key\" is the key of a custom attribute, as specified in attributes. For Type.PRIMARY and Type.COLLECTION, the following fields are always returned in SearchResponse by default: * name For Type.VARIANT, the following fields are always returned in by default: * name * color_info The maximum number of paths is 30. Otherwise, an INVALID_ARGUMENT error is returned. Note: Returning more fields in SearchResponse can increase response payload size and serving latency. This field is deprecated. Use the retrievable site-wide control instead.""") - return pulumi.get(self, "retrievable_fields") @property diff --git a/sdk/python/pulumi_google_native/retail/v2beta/serving_config.py b/sdk/python/pulumi_google_native/retail/v2beta/serving_config.py index 4c6e428465..4ff6315d72 100644 --- a/sdk/python/pulumi_google_native/retail/v2beta/serving_config.py +++ b/sdk/python/pulumi_google_native/retail/v2beta/serving_config.py @@ -518,7 +518,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'solution_types'") __props__.__dict__["solution_types"] = solution_types __props__.__dict__["twoway_synonyms_control_ids"] = twoway_synonyms_control_ids - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalog_id", "location", "project", "serving_config_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["catalogId", "location", "project", "servingConfigId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServingConfig, __self__).__init__( 'google-native:retail/v2beta:ServingConfig', diff --git a/sdk/python/pulumi_google_native/run/v1/_inputs.py b/sdk/python/pulumi_google_native/run/v1/_inputs.py index 897348d83a..e4edec0b3a 100644 --- a/sdk/python/pulumi_google_native/run/v1/_inputs.py +++ b/sdk/python/pulumi_google_native/run/v1/_inputs.py @@ -2340,13 +2340,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="configurationName") + @_utilities.deprecated("""[Deprecated] Not supported in Cloud Run. It must be empty.""") def configuration_name(self) -> Optional[pulumi.Input[str]]: """ [Deprecated] Not supported in Cloud Run. It must be empty. """ - warnings.warn("""[Deprecated] Not supported in Cloud Run. It must be empty.""", DeprecationWarning) - pulumi.log.warn("""configuration_name is deprecated: [Deprecated] Not supported in Cloud Run. It must be empty.""") - return pulumi.get(self, "configuration_name") @configuration_name.setter diff --git a/sdk/python/pulumi_google_native/run/v1/job_iam_policy.py b/sdk/python/pulumi_google_native/run/v1/job_iam_policy.py index 5aa865f9f1..153daa1d42 100644 --- a/sdk/python/pulumi_google_native/run/v1/job_iam_policy.py +++ b/sdk/python/pulumi_google_native/run/v1/job_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["job_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["jobId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(JobIamPolicy, __self__).__init__( 'google-native:run/v1:JobIamPolicy', diff --git a/sdk/python/pulumi_google_native/run/v1/outputs.py b/sdk/python/pulumi_google_native/run/v1/outputs.py index 35cec5d87a..1436f9984c 100644 --- a/sdk/python/pulumi_google_native/run/v1/outputs.py +++ b/sdk/python/pulumi_google_native/run/v1/outputs.py @@ -2909,13 +2909,11 @@ def __init__(__self__, *, @property @pulumi.getter(name="configurationName") + @_utilities.deprecated("""[Deprecated] Not supported in Cloud Run. It must be empty.""") def configuration_name(self) -> str: """ [Deprecated] Not supported in Cloud Run. It must be empty. """ - warnings.warn("""[Deprecated] Not supported in Cloud Run. It must be empty.""", DeprecationWarning) - pulumi.log.warn("""configuration_name is deprecated: [Deprecated] Not supported in Cloud Run. It must be empty.""") - return pulumi.get(self, "configuration_name") @property diff --git a/sdk/python/pulumi_google_native/run/v1/service_iam_policy.py b/sdk/python/pulumi_google_native/run/v1/service_iam_policy.py index fe158bae79..1a482724ae 100644 --- a/sdk/python/pulumi_google_native/run/v1/service_iam_policy.py +++ b/sdk/python/pulumi_google_native/run/v1/service_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["service_id"] = service_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceIamPolicy, __self__).__init__( 'google-native:run/v1:ServiceIamPolicy', diff --git a/sdk/python/pulumi_google_native/run/v2/job.py b/sdk/python/pulumi_google_native/run/v2/job.py index 5320065847..d91f725262 100644 --- a/sdk/python/pulumi_google_native/run/v2/job.py +++ b/sdk/python/pulumi_google_native/run/v2/job.py @@ -295,7 +295,7 @@ def _internal_init(__self__, __props__.__dict__["terminal_condition"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["job_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["jobId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Job, __self__).__init__( 'google-native:run/v2:Job', diff --git a/sdk/python/pulumi_google_native/run/v2/job_iam_policy.py b/sdk/python/pulumi_google_native/run/v2/job_iam_policy.py index ee214f8606..8760937d02 100644 --- a/sdk/python/pulumi_google_native/run/v2/job_iam_policy.py +++ b/sdk/python/pulumi_google_native/run/v2/job_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["job_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["jobId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(JobIamPolicy, __self__).__init__( 'google-native:run/v2:JobIamPolicy', diff --git a/sdk/python/pulumi_google_native/run/v2/service.py b/sdk/python/pulumi_google_native/run/v2/service.py index d93efa7f85..96f16c2a22 100644 --- a/sdk/python/pulumi_google_native/run/v2/service.py +++ b/sdk/python/pulumi_google_native/run/v2/service.py @@ -397,7 +397,7 @@ def _internal_init(__self__, __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None __props__.__dict__["uri"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Service, __self__).__init__( 'google-native:run/v2:Service', diff --git a/sdk/python/pulumi_google_native/run/v2/service_iam_policy.py b/sdk/python/pulumi_google_native/run/v2/service_iam_policy.py index 9c41bd2db9..c60b7f43c6 100644 --- a/sdk/python/pulumi_google_native/run/v2/service_iam_policy.py +++ b/sdk/python/pulumi_google_native/run/v2/service_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["service_id"] = service_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceIamPolicy, __self__).__init__( 'google-native:run/v2:ServiceIamPolicy', diff --git a/sdk/python/pulumi_google_native/runtimeconfig/v1beta1/config_iam_policy.py b/sdk/python/pulumi_google_native/runtimeconfig/v1beta1/config_iam_policy.py index 4f417c6cc5..1b0e95546e 100644 --- a/sdk/python/pulumi_google_native/runtimeconfig/v1beta1/config_iam_policy.py +++ b/sdk/python/pulumi_google_native/runtimeconfig/v1beta1/config_iam_policy.py @@ -161,7 +161,7 @@ def _internal_init(__self__, __props__.__dict__["etag"] = etag __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["config_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["configId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ConfigIamPolicy, __self__).__init__( 'google-native:runtimeconfig/v1beta1:ConfigIamPolicy', diff --git a/sdk/python/pulumi_google_native/runtimeconfig/v1beta1/variable.py b/sdk/python/pulumi_google_native/runtimeconfig/v1beta1/variable.py index 0e53d46a72..78f1ebdefe 100644 --- a/sdk/python/pulumi_google_native/runtimeconfig/v1beta1/variable.py +++ b/sdk/python/pulumi_google_native/runtimeconfig/v1beta1/variable.py @@ -177,7 +177,7 @@ def _internal_init(__self__, __props__.__dict__["value"] = value __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["config_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["configId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Variable, __self__).__init__( 'google-native:runtimeconfig/v1beta1:Variable', diff --git a/sdk/python/pulumi_google_native/runtimeconfig/v1beta1/waiter.py b/sdk/python/pulumi_google_native/runtimeconfig/v1beta1/waiter.py index 2f09fee64b..b2e495bdee 100644 --- a/sdk/python/pulumi_google_native/runtimeconfig/v1beta1/waiter.py +++ b/sdk/python/pulumi_google_native/runtimeconfig/v1beta1/waiter.py @@ -200,7 +200,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["done"] = None __props__.__dict__["error"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["config_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["configId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Waiter, __self__).__init__( 'google-native:runtimeconfig/v1beta1:Waiter', diff --git a/sdk/python/pulumi_google_native/secretmanager/v1/secret.py b/sdk/python/pulumi_google_native/secretmanager/v1/secret.py index dc9ee022e8..631e70bac0 100644 --- a/sdk/python/pulumi_google_native/secretmanager/v1/secret.py +++ b/sdk/python/pulumi_google_native/secretmanager/v1/secret.py @@ -287,7 +287,7 @@ def _internal_init(__self__, __props__.__dict__["version_aliases"] = version_aliases __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "secret_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "secretId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Secret, __self__).__init__( 'google-native:secretmanager/v1:Secret', diff --git a/sdk/python/pulumi_google_native/secretmanager/v1/secret_iam_policy.py b/sdk/python/pulumi_google_native/secretmanager/v1/secret_iam_policy.py index 8d9a351bcb..d0b90c945c 100644 --- a/sdk/python/pulumi_google_native/secretmanager/v1/secret_iam_policy.py +++ b/sdk/python/pulumi_google_native/secretmanager/v1/secret_iam_policy.py @@ -202,7 +202,7 @@ def _internal_init(__self__, __props__.__dict__["secret_id"] = secret_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "secret_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "secretId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SecretIamPolicy, __self__).__init__( 'google-native:secretmanager/v1:SecretIamPolicy', diff --git a/sdk/python/pulumi_google_native/secretmanager/v1beta1/secret.py b/sdk/python/pulumi_google_native/secretmanager/v1beta1/secret.py index b55533543f..beb16b6a65 100644 --- a/sdk/python/pulumi_google_native/secretmanager/v1beta1/secret.py +++ b/sdk/python/pulumi_google_native/secretmanager/v1beta1/secret.py @@ -147,7 +147,7 @@ def _internal_init(__self__, __props__.__dict__["secret_id"] = secret_id __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "secret_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "secretId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Secret, __self__).__init__( 'google-native:secretmanager/v1beta1:Secret', diff --git a/sdk/python/pulumi_google_native/secretmanager/v1beta1/secret_iam_policy.py b/sdk/python/pulumi_google_native/secretmanager/v1beta1/secret_iam_policy.py index 0f2250463e..00c59f0c3d 100644 --- a/sdk/python/pulumi_google_native/secretmanager/v1beta1/secret_iam_policy.py +++ b/sdk/python/pulumi_google_native/secretmanager/v1beta1/secret_iam_policy.py @@ -202,7 +202,7 @@ def _internal_init(__self__, __props__.__dict__["secret_id"] = secret_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "secret_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "secretId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(SecretIamPolicy, __self__).__init__( 'google-native:secretmanager/v1beta1:SecretIamPolicy', diff --git a/sdk/python/pulumi_google_native/securitycenter/v1/folder_big_query_export.py b/sdk/python/pulumi_google_native/securitycenter/v1/folder_big_query_export.py index 76e2223750..2fa601922f 100644 --- a/sdk/python/pulumi_google_native/securitycenter/v1/folder_big_query_export.py +++ b/sdk/python/pulumi_google_native/securitycenter/v1/folder_big_query_export.py @@ -187,7 +187,7 @@ def _internal_init(__self__, __props__.__dict__["most_recent_editor"] = None __props__.__dict__["principal"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["big_query_export_id", "folder_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bigQueryExportId", "folderId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FolderBigQueryExport, __self__).__init__( 'google-native:securitycenter/v1:FolderBigQueryExport', diff --git a/sdk/python/pulumi_google_native/securitycenter/v1/folder_notification_config.py b/sdk/python/pulumi_google_native/securitycenter/v1/folder_notification_config.py index d1c6e88253..157c46708e 100644 --- a/sdk/python/pulumi_google_native/securitycenter/v1/folder_notification_config.py +++ b/sdk/python/pulumi_google_native/securitycenter/v1/folder_notification_config.py @@ -186,7 +186,7 @@ def _internal_init(__self__, __props__.__dict__["pubsub_topic"] = pubsub_topic __props__.__dict__["streaming_config"] = streaming_config __props__.__dict__["service_account"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["config_id", "folder_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["configId", "folderId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FolderNotificationConfig, __self__).__init__( 'google-native:securitycenter/v1:FolderNotificationConfig', diff --git a/sdk/python/pulumi_google_native/securitycenter/v1/folder_security_health_analytics_setting_custom_module.py b/sdk/python/pulumi_google_native/securitycenter/v1/folder_security_health_analytics_setting_custom_module.py index 2064e722f2..a64cc4c865 100644 --- a/sdk/python/pulumi_google_native/securitycenter/v1/folder_security_health_analytics_setting_custom_module.py +++ b/sdk/python/pulumi_google_native/securitycenter/v1/folder_security_health_analytics_setting_custom_module.py @@ -168,7 +168,7 @@ def _internal_init(__self__, __props__.__dict__["ancestor_module"] = None __props__.__dict__["last_editor"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folder_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["folderId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(FolderSecurityHealthAnalyticsSettingCustomModule, __self__).__init__( 'google-native:securitycenter/v1:FolderSecurityHealthAnalyticsSettingCustomModule', diff --git a/sdk/python/pulumi_google_native/securitycenter/v1/mute_config.py b/sdk/python/pulumi_google_native/securitycenter/v1/mute_config.py index b7dc608117..2b937cfabb 100644 --- a/sdk/python/pulumi_google_native/securitycenter/v1/mute_config.py +++ b/sdk/python/pulumi_google_native/securitycenter/v1/mute_config.py @@ -186,7 +186,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["most_recent_editor"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["mute_config_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["muteConfigId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MuteConfig, __self__).__init__( 'google-native:securitycenter/v1:MuteConfig', diff --git a/sdk/python/pulumi_google_native/securitycenter/v1/notification_config.py b/sdk/python/pulumi_google_native/securitycenter/v1/notification_config.py index 494cbe6c98..320d9975ad 100644 --- a/sdk/python/pulumi_google_native/securitycenter/v1/notification_config.py +++ b/sdk/python/pulumi_google_native/securitycenter/v1/notification_config.py @@ -185,7 +185,7 @@ def _internal_init(__self__, __props__.__dict__["pubsub_topic"] = pubsub_topic __props__.__dict__["streaming_config"] = streaming_config __props__.__dict__["service_account"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["config_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["configId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(NotificationConfig, __self__).__init__( 'google-native:securitycenter/v1:NotificationConfig', diff --git a/sdk/python/pulumi_google_native/securitycenter/v1/organization_big_query_export.py b/sdk/python/pulumi_google_native/securitycenter/v1/organization_big_query_export.py index 7db4fa5e3a..4b0742d8f5 100644 --- a/sdk/python/pulumi_google_native/securitycenter/v1/organization_big_query_export.py +++ b/sdk/python/pulumi_google_native/securitycenter/v1/organization_big_query_export.py @@ -185,7 +185,7 @@ def _internal_init(__self__, __props__.__dict__["most_recent_editor"] = None __props__.__dict__["principal"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["big_query_export_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bigQueryExportId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationBigQueryExport, __self__).__init__( 'google-native:securitycenter/v1:OrganizationBigQueryExport', diff --git a/sdk/python/pulumi_google_native/securitycenter/v1/organization_event_threat_detection_setting_custom_module.py b/sdk/python/pulumi_google_native/securitycenter/v1/organization_event_threat_detection_setting_custom_module.py index 3816318f4a..a8932ed8d2 100644 --- a/sdk/python/pulumi_google_native/securitycenter/v1/organization_event_threat_detection_setting_custom_module.py +++ b/sdk/python/pulumi_google_native/securitycenter/v1/organization_event_threat_detection_setting_custom_module.py @@ -205,7 +205,7 @@ def _internal_init(__self__, __props__.__dict__["type"] = type __props__.__dict__["last_editor"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationEventThreatDetectionSettingCustomModule, __self__).__init__( 'google-native:securitycenter/v1:OrganizationEventThreatDetectionSettingCustomModule', diff --git a/sdk/python/pulumi_google_native/securitycenter/v1/organization_mute_config.py b/sdk/python/pulumi_google_native/securitycenter/v1/organization_mute_config.py index 2904e85964..971b90d573 100644 --- a/sdk/python/pulumi_google_native/securitycenter/v1/organization_mute_config.py +++ b/sdk/python/pulumi_google_native/securitycenter/v1/organization_mute_config.py @@ -185,7 +185,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["most_recent_editor"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["mute_config_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["muteConfigId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationMuteConfig, __self__).__init__( 'google-native:securitycenter/v1:OrganizationMuteConfig', diff --git a/sdk/python/pulumi_google_native/securitycenter/v1/organization_notification_config.py b/sdk/python/pulumi_google_native/securitycenter/v1/organization_notification_config.py index 3913935bb1..26eb60b5fd 100644 --- a/sdk/python/pulumi_google_native/securitycenter/v1/organization_notification_config.py +++ b/sdk/python/pulumi_google_native/securitycenter/v1/organization_notification_config.py @@ -184,7 +184,7 @@ def _internal_init(__self__, __props__.__dict__["pubsub_topic"] = pubsub_topic __props__.__dict__["streaming_config"] = streaming_config __props__.__dict__["service_account"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["config_id", "organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["configId", "organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationNotificationConfig, __self__).__init__( 'google-native:securitycenter/v1:OrganizationNotificationConfig', diff --git a/sdk/python/pulumi_google_native/securitycenter/v1/organization_security_health_analytics_setting_custom_module.py b/sdk/python/pulumi_google_native/securitycenter/v1/organization_security_health_analytics_setting_custom_module.py index 5103fa9d38..887470915c 100644 --- a/sdk/python/pulumi_google_native/securitycenter/v1/organization_security_health_analytics_setting_custom_module.py +++ b/sdk/python/pulumi_google_native/securitycenter/v1/organization_security_health_analytics_setting_custom_module.py @@ -168,7 +168,7 @@ def _internal_init(__self__, __props__.__dict__["ancestor_module"] = None __props__.__dict__["last_editor"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationSecurityHealthAnalyticsSettingCustomModule, __self__).__init__( 'google-native:securitycenter/v1:OrganizationSecurityHealthAnalyticsSettingCustomModule', diff --git a/sdk/python/pulumi_google_native/securitycenter/v1/organization_source_iam_policy.py b/sdk/python/pulumi_google_native/securitycenter/v1/organization_source_iam_policy.py index f98d6ccd90..8bab1448ac 100644 --- a/sdk/python/pulumi_google_native/securitycenter/v1/organization_source_iam_policy.py +++ b/sdk/python/pulumi_google_native/securitycenter/v1/organization_source_iam_policy.py @@ -203,7 +203,7 @@ def _internal_init(__self__, __props__.__dict__["source_id"] = source_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id", "source_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId", "sourceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationSourceIamPolicy, __self__).__init__( 'google-native:securitycenter/v1:OrganizationSourceIamPolicy', diff --git a/sdk/python/pulumi_google_native/securitycenter/v1/project_big_query_export.py b/sdk/python/pulumi_google_native/securitycenter/v1/project_big_query_export.py index dba22450c1..4091987df7 100644 --- a/sdk/python/pulumi_google_native/securitycenter/v1/project_big_query_export.py +++ b/sdk/python/pulumi_google_native/securitycenter/v1/project_big_query_export.py @@ -186,7 +186,7 @@ def _internal_init(__self__, __props__.__dict__["most_recent_editor"] = None __props__.__dict__["principal"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["big_query_export_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bigQueryExportId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ProjectBigQueryExport, __self__).__init__( 'google-native:securitycenter/v1:ProjectBigQueryExport', diff --git a/sdk/python/pulumi_google_native/securitycenter/v1/source.py b/sdk/python/pulumi_google_native/securitycenter/v1/source.py index 1886f2f39b..8382b32c24 100644 --- a/sdk/python/pulumi_google_native/securitycenter/v1/source.py +++ b/sdk/python/pulumi_google_native/securitycenter/v1/source.py @@ -164,7 +164,7 @@ def _internal_init(__self__, if organization_id is None and not opts.urn: raise TypeError("Missing required property 'organization_id'") __props__.__dict__["organization_id"] = organization_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Source, __self__).__init__( 'google-native:securitycenter/v1:Source', diff --git a/sdk/python/pulumi_google_native/securitycenter/v1beta1/organization_source_iam_policy.py b/sdk/python/pulumi_google_native/securitycenter/v1beta1/organization_source_iam_policy.py index f1c16b7c83..52fc7ac106 100644 --- a/sdk/python/pulumi_google_native/securitycenter/v1beta1/organization_source_iam_policy.py +++ b/sdk/python/pulumi_google_native/securitycenter/v1beta1/organization_source_iam_policy.py @@ -203,7 +203,7 @@ def _internal_init(__self__, __props__.__dict__["source_id"] = source_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id", "source_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId", "sourceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(OrganizationSourceIamPolicy, __self__).__init__( 'google-native:securitycenter/v1beta1:OrganizationSourceIamPolicy', diff --git a/sdk/python/pulumi_google_native/securitycenter/v1beta1/source.py b/sdk/python/pulumi_google_native/securitycenter/v1beta1/source.py index b50f886fc2..851c6c96af 100644 --- a/sdk/python/pulumi_google_native/securitycenter/v1beta1/source.py +++ b/sdk/python/pulumi_google_native/securitycenter/v1beta1/source.py @@ -144,7 +144,7 @@ def _internal_init(__self__, if organization_id is None and not opts.urn: raise TypeError("Missing required property 'organization_id'") __props__.__dict__["organization_id"] = organization_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organization_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["organizationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Source, __self__).__init__( 'google-native:securitycenter/v1beta1:Source', diff --git a/sdk/python/pulumi_google_native/servicedirectory/v1/endpoint.py b/sdk/python/pulumi_google_native/servicedirectory/v1/endpoint.py index 547a6437fd..f343283d00 100644 --- a/sdk/python/pulumi_google_native/servicedirectory/v1/endpoint.py +++ b/sdk/python/pulumi_google_native/servicedirectory/v1/endpoint.py @@ -248,7 +248,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'service_id'") __props__.__dict__["service_id"] = service_id __props__.__dict__["uid"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["endpoint_id", "location", "namespace_id", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["endpointId", "location", "namespaceId", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Endpoint, __self__).__init__( 'google-native:servicedirectory/v1:Endpoint', diff --git a/sdk/python/pulumi_google_native/servicedirectory/v1/namespace.py b/sdk/python/pulumi_google_native/servicedirectory/v1/namespace.py index bebd640586..4ce91139ea 100644 --- a/sdk/python/pulumi_google_native/servicedirectory/v1/namespace.py +++ b/sdk/python/pulumi_google_native/servicedirectory/v1/namespace.py @@ -156,7 +156,7 @@ def _internal_init(__self__, __props__.__dict__["namespace_id"] = namespace_id __props__.__dict__["project"] = project __props__.__dict__["uid"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "namespace_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "namespaceId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Namespace, __self__).__init__( 'google-native:servicedirectory/v1:Namespace', diff --git a/sdk/python/pulumi_google_native/servicedirectory/v1/namespace_iam_policy.py b/sdk/python/pulumi_google_native/servicedirectory/v1/namespace_iam_policy.py index 779957025b..71c4fca8e6 100644 --- a/sdk/python/pulumi_google_native/servicedirectory/v1/namespace_iam_policy.py +++ b/sdk/python/pulumi_google_native/servicedirectory/v1/namespace_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, __props__.__dict__["namespace_id"] = namespace_id __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "namespace_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "namespaceId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(NamespaceIamPolicy, __self__).__init__( 'google-native:servicedirectory/v1:NamespaceIamPolicy', diff --git a/sdk/python/pulumi_google_native/servicedirectory/v1/namespace_service_iam_policy.py b/sdk/python/pulumi_google_native/servicedirectory/v1/namespace_service_iam_policy.py index f60065c2c9..0615838036 100644 --- a/sdk/python/pulumi_google_native/servicedirectory/v1/namespace_service_iam_policy.py +++ b/sdk/python/pulumi_google_native/servicedirectory/v1/namespace_service_iam_policy.py @@ -192,7 +192,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'service_id'") __props__.__dict__["service_id"] = service_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "namespace_id", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "namespaceId", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(NamespaceServiceIamPolicy, __self__).__init__( 'google-native:servicedirectory/v1:NamespaceServiceIamPolicy', diff --git a/sdk/python/pulumi_google_native/servicedirectory/v1/service.py b/sdk/python/pulumi_google_native/servicedirectory/v1/service.py index 8161782722..650b30db1b 100644 --- a/sdk/python/pulumi_google_native/servicedirectory/v1/service.py +++ b/sdk/python/pulumi_google_native/servicedirectory/v1/service.py @@ -174,7 +174,7 @@ def _internal_init(__self__, __props__.__dict__["service_id"] = service_id __props__.__dict__["endpoints"] = None __props__.__dict__["uid"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "namespace_id", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "namespaceId", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Service, __self__).__init__( 'google-native:servicedirectory/v1:Service', diff --git a/sdk/python/pulumi_google_native/servicedirectory/v1beta1/endpoint.py b/sdk/python/pulumi_google_native/servicedirectory/v1beta1/endpoint.py index 5eb41b5a28..9f1187403e 100644 --- a/sdk/python/pulumi_google_native/servicedirectory/v1beta1/endpoint.py +++ b/sdk/python/pulumi_google_native/servicedirectory/v1beta1/endpoint.py @@ -250,7 +250,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["endpoint_id", "location", "namespace_id", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["endpointId", "location", "namespaceId", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Endpoint, __self__).__init__( 'google-native:servicedirectory/v1beta1:Endpoint', diff --git a/sdk/python/pulumi_google_native/servicedirectory/v1beta1/namespace.py b/sdk/python/pulumi_google_native/servicedirectory/v1beta1/namespace.py index 4e122d738f..d4808ac7eb 100644 --- a/sdk/python/pulumi_google_native/servicedirectory/v1beta1/namespace.py +++ b/sdk/python/pulumi_google_native/servicedirectory/v1beta1/namespace.py @@ -158,7 +158,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "namespace_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "namespaceId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Namespace, __self__).__init__( 'google-native:servicedirectory/v1beta1:Namespace', diff --git a/sdk/python/pulumi_google_native/servicedirectory/v1beta1/namespace_iam_policy.py b/sdk/python/pulumi_google_native/servicedirectory/v1beta1/namespace_iam_policy.py index 871d4c15cd..41750c7b85 100644 --- a/sdk/python/pulumi_google_native/servicedirectory/v1beta1/namespace_iam_policy.py +++ b/sdk/python/pulumi_google_native/servicedirectory/v1beta1/namespace_iam_policy.py @@ -176,7 +176,7 @@ def _internal_init(__self__, __props__.__dict__["namespace_id"] = namespace_id __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "namespace_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "namespaceId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(NamespaceIamPolicy, __self__).__init__( 'google-native:servicedirectory/v1beta1:NamespaceIamPolicy', diff --git a/sdk/python/pulumi_google_native/servicedirectory/v1beta1/namespace_service_iam_policy.py b/sdk/python/pulumi_google_native/servicedirectory/v1beta1/namespace_service_iam_policy.py index 97549b00cd..4d054e5fe9 100644 --- a/sdk/python/pulumi_google_native/servicedirectory/v1beta1/namespace_service_iam_policy.py +++ b/sdk/python/pulumi_google_native/servicedirectory/v1beta1/namespace_service_iam_policy.py @@ -192,7 +192,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'service_id'") __props__.__dict__["service_id"] = service_id __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "namespace_id", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "namespaceId", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(NamespaceServiceIamPolicy, __self__).__init__( 'google-native:servicedirectory/v1beta1:NamespaceServiceIamPolicy', diff --git a/sdk/python/pulumi_google_native/servicedirectory/v1beta1/namespace_workload_iam_policy.py b/sdk/python/pulumi_google_native/servicedirectory/v1beta1/namespace_workload_iam_policy.py index 618e3b0de1..976042ff79 100644 --- a/sdk/python/pulumi_google_native/servicedirectory/v1beta1/namespace_workload_iam_policy.py +++ b/sdk/python/pulumi_google_native/servicedirectory/v1beta1/namespace_workload_iam_policy.py @@ -192,7 +192,7 @@ def _internal_init(__self__, if workload_id is None and not opts.urn: raise TypeError("Missing required property 'workload_id'") __props__.__dict__["workload_id"] = workload_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "namespace_id", "project", "workload_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "namespaceId", "project", "workloadId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(NamespaceWorkloadIamPolicy, __self__).__init__( 'google-native:servicedirectory/v1beta1:NamespaceWorkloadIamPolicy', diff --git a/sdk/python/pulumi_google_native/servicedirectory/v1beta1/service.py b/sdk/python/pulumi_google_native/servicedirectory/v1beta1/service.py index 9048786a28..dab4e18b3f 100644 --- a/sdk/python/pulumi_google_native/servicedirectory/v1beta1/service.py +++ b/sdk/python/pulumi_google_native/servicedirectory/v1beta1/service.py @@ -176,7 +176,7 @@ def _internal_init(__self__, __props__.__dict__["endpoints"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "namespace_id", "project", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "namespaceId", "project", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Service, __self__).__init__( 'google-native:servicedirectory/v1beta1:Service', diff --git a/sdk/python/pulumi_google_native/servicemanagement/v1/_inputs.py b/sdk/python/pulumi_google_native/servicemanagement/v1/_inputs.py index 60e6ed6982..257f9a264f 100644 --- a/sdk/python/pulumi_google_native/servicemanagement/v1/_inputs.py +++ b/sdk/python/pulumi_google_native/servicemanagement/v1/_inputs.py @@ -637,13 +637,11 @@ def jwt_audience(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="minDeadline") + @_utilities.deprecated("""Deprecated, do not use.""") def min_deadline(self) -> Optional[pulumi.Input[float]]: """ Deprecated, do not use. """ - warnings.warn("""Deprecated, do not use.""", DeprecationWarning) - pulumi.log.warn("""min_deadline is deprecated: Deprecated, do not use.""") - return pulumi.get(self, "min_deadline") @min_deadline.setter @@ -1705,13 +1703,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""Unimplemented. Dot not use. DEPRECATED: This field is no longer supported. Instead of using aliases, please specify multiple google.api.Endpoint for each of the intended aliases. Additional names that this endpoint will be hosted on.""") def aliases(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]: """ Unimplemented. Dot not use. DEPRECATED: This field is no longer supported. Instead of using aliases, please specify multiple google.api.Endpoint for each of the intended aliases. Additional names that this endpoint will be hosted on. """ - warnings.warn("""Unimplemented. Dot not use. DEPRECATED: This field is no longer supported. Instead of using aliases, please specify multiple google.api.Endpoint for each of the intended aliases. Additional names that this endpoint will be hosted on.""", DeprecationWarning) - pulumi.log.warn("""aliases is deprecated: Unimplemented. Dot not use. DEPRECATED: This field is no longer supported. Instead of using aliases, please specify multiple google.api.Endpoint for each of the intended aliases. Additional names that this endpoint will be hosted on.""") - return pulumi.get(self, "aliases") @aliases.setter @@ -3103,13 +3099,11 @@ def ingest_delay(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="launchStage") + @_utilities.deprecated("""Deprecated. Must use the MetricDescriptor.launch_stage instead.""") def launch_stage(self) -> Optional[pulumi.Input['MetricDescriptorMetadataLaunchStage']]: """ Deprecated. Must use the MetricDescriptor.launch_stage instead. """ - warnings.warn("""Deprecated. Must use the MetricDescriptor.launch_stage instead.""", DeprecationWarning) - pulumi.log.warn("""launch_stage is deprecated: Deprecated. Must use the MetricDescriptor.launch_stage instead.""") - return pulumi.get(self, "launch_stage") @launch_stage.setter diff --git a/sdk/python/pulumi_google_native/servicemanagement/v1/config.py b/sdk/python/pulumi_google_native/servicemanagement/v1/config.py index f9b981b9cc..7b0cffabce 100644 --- a/sdk/python/pulumi_google_native/servicemanagement/v1/config.py +++ b/sdk/python/pulumi_google_native/servicemanagement/v1/config.py @@ -628,7 +628,7 @@ def _internal_init(__self__, __props__.__dict__["types"] = types __props__.__dict__["usage"] = usage __props__.__dict__["source_info"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["service_name"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["serviceName"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Config, __self__).__init__( 'google-native:servicemanagement/v1:Config', diff --git a/sdk/python/pulumi_google_native/servicemanagement/v1/outputs.py b/sdk/python/pulumi_google_native/servicemanagement/v1/outputs.py index 8ecae4bcc1..54aca7965f 100644 --- a/sdk/python/pulumi_google_native/servicemanagement/v1/outputs.py +++ b/sdk/python/pulumi_google_native/servicemanagement/v1/outputs.py @@ -655,13 +655,11 @@ def jwt_audience(self) -> str: @property @pulumi.getter(name="minDeadline") + @_utilities.deprecated("""Deprecated, do not use.""") def min_deadline(self) -> float: """ Deprecated, do not use. """ - warnings.warn("""Deprecated, do not use.""", DeprecationWarning) - pulumi.log.warn("""min_deadline is deprecated: Deprecated, do not use.""") - return pulumi.get(self, "min_deadline") @property @@ -1685,13 +1683,11 @@ def __init__(__self__, *, @property @pulumi.getter + @_utilities.deprecated("""Unimplemented. Dot not use. DEPRECATED: This field is no longer supported. Instead of using aliases, please specify multiple google.api.Endpoint for each of the intended aliases. Additional names that this endpoint will be hosted on.""") def aliases(self) -> Sequence[str]: """ Unimplemented. Dot not use. DEPRECATED: This field is no longer supported. Instead of using aliases, please specify multiple google.api.Endpoint for each of the intended aliases. Additional names that this endpoint will be hosted on. """ - warnings.warn("""Unimplemented. Dot not use. DEPRECATED: This field is no longer supported. Instead of using aliases, please specify multiple google.api.Endpoint for each of the intended aliases. Additional names that this endpoint will be hosted on.""", DeprecationWarning) - pulumi.log.warn("""aliases is deprecated: Unimplemented. Dot not use. DEPRECATED: This field is no longer supported. Instead of using aliases, please specify multiple google.api.Endpoint for each of the intended aliases. Additional names that this endpoint will be hosted on.""") - return pulumi.get(self, "aliases") @property @@ -3053,13 +3049,11 @@ def ingest_delay(self) -> str: @property @pulumi.getter(name="launchStage") + @_utilities.deprecated("""Deprecated. Must use the MetricDescriptor.launch_stage instead.""") def launch_stage(self) -> str: """ Deprecated. Must use the MetricDescriptor.launch_stage instead. """ - warnings.warn("""Deprecated. Must use the MetricDescriptor.launch_stage instead.""", DeprecationWarning) - pulumi.log.warn("""launch_stage is deprecated: Deprecated. Must use the MetricDescriptor.launch_stage instead.""") - return pulumi.get(self, "launch_stage") @property diff --git a/sdk/python/pulumi_google_native/servicemanagement/v1/rollout.py b/sdk/python/pulumi_google_native/servicemanagement/v1/rollout.py index 8307a99a62..ddf191737e 100644 --- a/sdk/python/pulumi_google_native/servicemanagement/v1/rollout.py +++ b/sdk/python/pulumi_google_native/servicemanagement/v1/rollout.py @@ -194,7 +194,7 @@ def _internal_init(__self__, __props__.__dict__["service_name"] = service_name __props__.__dict__["traffic_percent_strategy"] = traffic_percent_strategy __props__.__dict__["status"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["service_name"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["serviceName"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Rollout, __self__).__init__( 'google-native:servicemanagement/v1:Rollout', diff --git a/sdk/python/pulumi_google_native/servicemanagement/v1/service_consumer_iam_policy.py b/sdk/python/pulumi_google_native/servicemanagement/v1/service_consumer_iam_policy.py index 50ddea2837..efcbbaa0f9 100644 --- a/sdk/python/pulumi_google_native/servicemanagement/v1/service_consumer_iam_policy.py +++ b/sdk/python/pulumi_google_native/servicemanagement/v1/service_consumer_iam_policy.py @@ -203,7 +203,7 @@ def _internal_init(__self__, __props__.__dict__["service_id"] = service_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["consumer_id", "service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["consumerId", "serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceConsumerIamPolicy, __self__).__init__( 'google-native:servicemanagement/v1:ServiceConsumerIamPolicy', diff --git a/sdk/python/pulumi_google_native/servicemanagement/v1/service_iam_policy.py b/sdk/python/pulumi_google_native/servicemanagement/v1/service_iam_policy.py index c9cc612ff4..984a47be9d 100644 --- a/sdk/python/pulumi_google_native/servicemanagement/v1/service_iam_policy.py +++ b/sdk/python/pulumi_google_native/servicemanagement/v1/service_iam_policy.py @@ -187,7 +187,7 @@ def _internal_init(__self__, __props__.__dict__["service_id"] = service_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["service_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["serviceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ServiceIamPolicy, __self__).__init__( 'google-native:servicemanagement/v1:ServiceIamPolicy', diff --git a/sdk/python/pulumi_google_native/sourcerepo/v1/repo_iam_policy.py b/sdk/python/pulumi_google_native/sourcerepo/v1/repo_iam_policy.py index 557834be46..78d705b347 100644 --- a/sdk/python/pulumi_google_native/sourcerepo/v1/repo_iam_policy.py +++ b/sdk/python/pulumi_google_native/sourcerepo/v1/repo_iam_policy.py @@ -202,7 +202,7 @@ def _internal_init(__self__, __props__.__dict__["repo_id"] = repo_id __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "repo_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "repoId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(RepoIamPolicy, __self__).__init__( 'google-native:sourcerepo/v1:RepoIamPolicy', diff --git a/sdk/python/pulumi_google_native/spanner/v1/backup.py b/sdk/python/pulumi_google_native/spanner/v1/backup.py index ee4635012c..fc27670bca 100644 --- a/sdk/python/pulumi_google_native/spanner/v1/backup.py +++ b/sdk/python/pulumi_google_native/spanner/v1/backup.py @@ -246,7 +246,7 @@ def _internal_init(__self__, __props__.__dict__["referencing_databases"] = None __props__.__dict__["size_bytes"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "encryption_config_encryption_type", "instance_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "encryptionConfigEncryptionType", "instanceId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Backup, __self__).__init__( 'google-native:spanner/v1:Backup', diff --git a/sdk/python/pulumi_google_native/spanner/v1/database.py b/sdk/python/pulumi_google_native/spanner/v1/database.py index 964ee02c0c..91068b2219 100644 --- a/sdk/python/pulumi_google_native/spanner/v1/database.py +++ b/sdk/python/pulumi_google_native/spanner/v1/database.py @@ -211,7 +211,7 @@ def _internal_init(__self__, __props__.__dict__["restore_info"] = None __props__.__dict__["state"] = None __props__.__dict__["version_retention_period"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Database, __self__).__init__( 'google-native:spanner/v1:Database', diff --git a/sdk/python/pulumi_google_native/spanner/v1/get_instance.py b/sdk/python/pulumi_google_native/spanner/v1/get_instance.py index 84fb1b603f..619a61dab2 100644 --- a/sdk/python/pulumi_google_native/spanner/v1/get_instance.py +++ b/sdk/python/pulumi_google_native/spanner/v1/get_instance.py @@ -94,13 +94,11 @@ def display_name(self) -> str: @property @pulumi.getter(name="endpointUris") + @_utilities.deprecated("""Deprecated. This field is not populated.""") def endpoint_uris(self) -> Sequence[str]: """ Deprecated. This field is not populated. """ - warnings.warn("""Deprecated. This field is not populated.""", DeprecationWarning) - pulumi.log.warn("""endpoint_uris is deprecated: Deprecated. This field is not populated.""") - return pulumi.get(self, "endpoint_uris") @property diff --git a/sdk/python/pulumi_google_native/spanner/v1/instance.py b/sdk/python/pulumi_google_native/spanner/v1/instance.py index 5f04925b63..3b401ef5c1 100644 --- a/sdk/python/pulumi_google_native/spanner/v1/instance.py +++ b/sdk/python/pulumi_google_native/spanner/v1/instance.py @@ -118,13 +118,11 @@ def autoscaling_config(self, value: Optional[pulumi.Input['AutoscalingConfigArgs @property @pulumi.getter(name="endpointUris") + @_utilities.deprecated("""Deprecated. This field is not populated.""") def endpoint_uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]: """ Deprecated. This field is not populated. """ - warnings.warn("""Deprecated. This field is not populated.""", DeprecationWarning) - pulumi.log.warn("""endpoint_uris is deprecated: Deprecated. This field is not populated.""") - return pulumi.get(self, "endpoint_uris") @endpoint_uris.setter @@ -388,13 +386,11 @@ def display_name(self) -> pulumi.Output[str]: @property @pulumi.getter(name="endpointUris") + @_utilities.deprecated("""Deprecated. This field is not populated.""") def endpoint_uris(self) -> pulumi.Output[Sequence[str]]: """ Deprecated. This field is not populated. """ - warnings.warn("""Deprecated. This field is not populated.""", DeprecationWarning) - pulumi.log.warn("""endpoint_uris is deprecated: Deprecated. This field is not populated.""") - return pulumi.get(self, "endpoint_uris") @property diff --git a/sdk/python/pulumi_google_native/spanner/v1/instance_backup_iam_policy.py b/sdk/python/pulumi_google_native/spanner/v1/instance_backup_iam_policy.py index 0ba79f6e39..726526ef75 100644 --- a/sdk/python/pulumi_google_native/spanner/v1/instance_backup_iam_policy.py +++ b/sdk/python/pulumi_google_native/spanner/v1/instance_backup_iam_policy.py @@ -177,7 +177,7 @@ def _internal_init(__self__, __props__.__dict__["instance_id"] = instance_id __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backup_id", "instance_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["backupId", "instanceId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(InstanceBackupIamPolicy, __self__).__init__( 'google-native:spanner/v1:InstanceBackupIamPolicy', diff --git a/sdk/python/pulumi_google_native/spanner/v1/instance_database_iam_policy.py b/sdk/python/pulumi_google_native/spanner/v1/instance_database_iam_policy.py index 626a3f8dbe..0b2c363bd8 100644 --- a/sdk/python/pulumi_google_native/spanner/v1/instance_database_iam_policy.py +++ b/sdk/python/pulumi_google_native/spanner/v1/instance_database_iam_policy.py @@ -177,7 +177,7 @@ def _internal_init(__self__, __props__.__dict__["instance_id"] = instance_id __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["database_id", "instance_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["databaseId", "instanceId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(InstanceDatabaseIamPolicy, __self__).__init__( 'google-native:spanner/v1:InstanceDatabaseIamPolicy', diff --git a/sdk/python/pulumi_google_native/spanner/v1/instance_iam_policy.py b/sdk/python/pulumi_google_native/spanner/v1/instance_iam_policy.py index d909f2a204..496925f129 100644 --- a/sdk/python/pulumi_google_native/spanner/v1/instance_iam_policy.py +++ b/sdk/python/pulumi_google_native/spanner/v1/instance_iam_policy.py @@ -161,7 +161,7 @@ def _internal_init(__self__, __props__.__dict__["instance_id"] = instance_id __props__.__dict__["project"] = project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instance_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["instanceId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(InstanceIamPolicy, __self__).__init__( 'google-native:spanner/v1:InstanceIamPolicy', diff --git a/sdk/python/pulumi_google_native/spanner/v1/session.py b/sdk/python/pulumi_google_native/spanner/v1/session.py index ffd845fdc8..9838b04852 100644 --- a/sdk/python/pulumi_google_native/spanner/v1/session.py +++ b/sdk/python/pulumi_google_native/spanner/v1/session.py @@ -156,7 +156,7 @@ def _internal_init(__self__, __props__.__dict__["approximate_last_use_time"] = None __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["database_id", "instance_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["databaseId", "instanceId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Session, __self__).__init__( 'google-native:spanner/v1:Session', diff --git a/sdk/python/pulumi_google_native/sqladmin/v1/_inputs.py b/sdk/python/pulumi_google_native/sqladmin/v1/_inputs.py index d8c44a17f9..c1a91cf193 100644 --- a/sdk/python/pulumi_google_native/sqladmin/v1/_inputs.py +++ b/sdk/python/pulumi_google_native/sqladmin/v1/_inputs.py @@ -1855,13 +1855,11 @@ def advanced_machine_features(self, value: Optional[pulumi.Input['AdvancedMachin @property @pulumi.getter(name="authorizedGaeApplications") + @_utilities.deprecated("""The App Engine app IDs that can access this instance. (Deprecated) Applied to First Generation instances only.""") def authorized_gae_applications(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]: """ The App Engine app IDs that can access this instance. (Deprecated) Applied to First Generation instances only. """ - warnings.warn("""The App Engine app IDs that can access this instance. (Deprecated) Applied to First Generation instances only.""", DeprecationWarning) - pulumi.log.warn("""authorized_gae_applications is deprecated: The App Engine app IDs that can access this instance. (Deprecated) Applied to First Generation instances only.""") - return pulumi.get(self, "authorized_gae_applications") @authorized_gae_applications.setter @@ -2110,13 +2108,11 @@ def pricing_plan(self, value: Optional[pulumi.Input['SettingsPricingPlan']]): @property @pulumi.getter(name="replicationType") + @_utilities.deprecated("""The type of replication this instance uses. This can be either `ASYNCHRONOUS` or `SYNCHRONOUS`. (Deprecated) This property was only applicable to First Generation instances.""") def replication_type(self) -> Optional[pulumi.Input['SettingsReplicationType']]: """ The type of replication this instance uses. This can be either `ASYNCHRONOUS` or `SYNCHRONOUS`. (Deprecated) This property was only applicable to First Generation instances. """ - warnings.warn("""The type of replication this instance uses. This can be either `ASYNCHRONOUS` or `SYNCHRONOUS`. (Deprecated) This property was only applicable to First Generation instances.""", DeprecationWarning) - pulumi.log.warn("""replication_type is deprecated: The type of replication this instance uses. This can be either `ASYNCHRONOUS` or `SYNCHRONOUS`. (Deprecated) This property was only applicable to First Generation instances.""") - return pulumi.get(self, "replication_type") @replication_type.setter diff --git a/sdk/python/pulumi_google_native/sqladmin/v1/database.py b/sdk/python/pulumi_google_native/sqladmin/v1/database.py index c91b86a170..0d6bbe4833 100644 --- a/sdk/python/pulumi_google_native/sqladmin/v1/database.py +++ b/sdk/python/pulumi_google_native/sqladmin/v1/database.py @@ -95,13 +95,11 @@ def collation(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""This field is deprecated and will be removed from a future version of the API.""") def etag(self) -> Optional[pulumi.Input[str]]: """ This field is deprecated and will be removed from a future version of the API. """ - warnings.warn("""This field is deprecated and will be removed from a future version of the API.""", DeprecationWarning) - pulumi.log.warn("""etag is deprecated: This field is deprecated and will be removed from a future version of the API.""") - return pulumi.get(self, "etag") @etag.setter @@ -301,13 +299,11 @@ def collation(self) -> pulumi.Output[str]: @property @pulumi.getter + @_utilities.deprecated("""This field is deprecated and will be removed from a future version of the API.""") def etag(self) -> pulumi.Output[str]: """ This field is deprecated and will be removed from a future version of the API. """ - warnings.warn("""This field is deprecated and will be removed from a future version of the API.""", DeprecationWarning) - pulumi.log.warn("""etag is deprecated: This field is deprecated and will be removed from a future version of the API.""") - return pulumi.get(self, "etag") @property diff --git a/sdk/python/pulumi_google_native/sqladmin/v1/get_database.py b/sdk/python/pulumi_google_native/sqladmin/v1/get_database.py index 0c1275718f..fa2c26f39b 100644 --- a/sdk/python/pulumi_google_native/sqladmin/v1/get_database.py +++ b/sdk/python/pulumi_google_native/sqladmin/v1/get_database.py @@ -66,13 +66,11 @@ def collation(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""This field is deprecated and will be removed from a future version of the API.""") def etag(self) -> str: """ This field is deprecated and will be removed from a future version of the API. """ - warnings.warn("""This field is deprecated and will be removed from a future version of the API.""", DeprecationWarning) - pulumi.log.warn("""etag is deprecated: This field is deprecated and will be removed from a future version of the API.""") - return pulumi.get(self, "etag") @property diff --git a/sdk/python/pulumi_google_native/sqladmin/v1/get_instance.py b/sdk/python/pulumi_google_native/sqladmin/v1/get_instance.py index 1dbf7f8809..9c2048b959 100644 --- a/sdk/python/pulumi_google_native/sqladmin/v1/get_instance.py +++ b/sdk/python/pulumi_google_native/sqladmin/v1/get_instance.py @@ -226,13 +226,11 @@ def dns_name(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead.""") def etag(self) -> str: """ This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead. """ - warnings.warn("""This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead.""", DeprecationWarning) - pulumi.log.warn("""etag is deprecated: This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead.""") - return pulumi.get(self, "etag") @property @@ -269,13 +267,11 @@ def ip_addresses(self) -> Sequence['outputs.IpMappingResponse']: @property @pulumi.getter(name="ipv6Address") + @_utilities.deprecated("""The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances.""") def ipv6_address(self) -> str: """ The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances. """ - warnings.warn("""The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances.""", DeprecationWarning) - pulumi.log.warn("""ipv6_address is deprecated: The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances.""") - return pulumi.get(self, "ipv6_address") @property @@ -336,13 +332,11 @@ def out_of_disk_report(self) -> 'outputs.SqlOutOfDiskReportResponse': @property @pulumi.getter(name="primaryDnsName") + @_utilities.deprecated("""Output only. DEPRECATED: please use write_endpoint instead.""") def primary_dns_name(self) -> str: """ DEPRECATED: please use write_endpoint instead. """ - warnings.warn("""Output only. DEPRECATED: please use write_endpoint instead.""", DeprecationWarning) - pulumi.log.warn("""primary_dns_name is deprecated: Output only. DEPRECATED: please use write_endpoint instead.""") - return pulumi.get(self, "primary_dns_name") @property diff --git a/sdk/python/pulumi_google_native/sqladmin/v1/get_user.py b/sdk/python/pulumi_google_native/sqladmin/v1/get_user.py index ce73091c15..e5b9df0494 100644 --- a/sdk/python/pulumi_google_native/sqladmin/v1/get_user.py +++ b/sdk/python/pulumi_google_native/sqladmin/v1/get_user.py @@ -64,13 +64,11 @@ def dual_password_type(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""This field is deprecated and will be removed from a future version of the API.""") def etag(self) -> str: """ This field is deprecated and will be removed from a future version of the API. """ - warnings.warn("""This field is deprecated and will be removed from a future version of the API.""", DeprecationWarning) - pulumi.log.warn("""etag is deprecated: This field is deprecated and will be removed from a future version of the API.""") - return pulumi.get(self, "etag") @property diff --git a/sdk/python/pulumi_google_native/sqladmin/v1/instance.py b/sdk/python/pulumi_google_native/sqladmin/v1/instance.py index a9de769af3..ee623ee538 100644 --- a/sdk/python/pulumi_google_native/sqladmin/v1/instance.py +++ b/sdk/python/pulumi_google_native/sqladmin/v1/instance.py @@ -236,13 +236,11 @@ def disk_encryption_status(self, value: Optional[pulumi.Input['DiskEncryptionSta @property @pulumi.getter + @_utilities.deprecated("""This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead.""") def etag(self) -> Optional[pulumi.Input[str]]: """ This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead. """ - warnings.warn("""This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead.""", DeprecationWarning) - pulumi.log.warn("""etag is deprecated: This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead.""") - return pulumi.get(self, "etag") @etag.setter @@ -299,13 +297,11 @@ def ip_addresses(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['IpMap @property @pulumi.getter(name="ipv6Address") + @_utilities.deprecated("""The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances.""") def ipv6_address(self) -> Optional[pulumi.Input[str]]: """ The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances. """ - warnings.warn("""The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances.""", DeprecationWarning) - pulumi.log.warn("""ipv6_address is deprecated: The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances.""") - return pulumi.get(self, "ipv6_address") @ipv6_address.setter @@ -910,13 +906,11 @@ def dns_name(self) -> pulumi.Output[str]: @property @pulumi.getter + @_utilities.deprecated("""This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead.""") def etag(self) -> pulumi.Output[str]: """ This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead. """ - warnings.warn("""This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead.""", DeprecationWarning) - pulumi.log.warn("""etag is deprecated: This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead.""") - return pulumi.get(self, "etag") @property @@ -953,13 +947,11 @@ def ip_addresses(self) -> pulumi.Output[Sequence['outputs.IpMappingResponse']]: @property @pulumi.getter(name="ipv6Address") + @_utilities.deprecated("""The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances.""") def ipv6_address(self) -> pulumi.Output[str]: """ The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances. """ - warnings.warn("""The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances.""", DeprecationWarning) - pulumi.log.warn("""ipv6_address is deprecated: The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances.""") - return pulumi.get(self, "ipv6_address") @property @@ -1020,13 +1012,11 @@ def out_of_disk_report(self) -> pulumi.Output['outputs.SqlOutOfDiskReportRespons @property @pulumi.getter(name="primaryDnsName") + @_utilities.deprecated("""Output only. DEPRECATED: please use write_endpoint instead.""") def primary_dns_name(self) -> pulumi.Output[str]: """ DEPRECATED: please use write_endpoint instead. """ - warnings.warn("""Output only. DEPRECATED: please use write_endpoint instead.""", DeprecationWarning) - pulumi.log.warn("""primary_dns_name is deprecated: Output only. DEPRECATED: please use write_endpoint instead.""") - return pulumi.get(self, "primary_dns_name") @property diff --git a/sdk/python/pulumi_google_native/sqladmin/v1/outputs.py b/sdk/python/pulumi_google_native/sqladmin/v1/outputs.py index f69962a4d2..df9a7e6807 100644 --- a/sdk/python/pulumi_google_native/sqladmin/v1/outputs.py +++ b/sdk/python/pulumi_google_native/sqladmin/v1/outputs.py @@ -1928,13 +1928,11 @@ def advanced_machine_features(self) -> 'outputs.AdvancedMachineFeaturesResponse' @property @pulumi.getter(name="authorizedGaeApplications") + @_utilities.deprecated("""The App Engine app IDs that can access this instance. (Deprecated) Applied to First Generation instances only.""") def authorized_gae_applications(self) -> Sequence[str]: """ The App Engine app IDs that can access this instance. (Deprecated) Applied to First Generation instances only. """ - warnings.warn("""The App Engine app IDs that can access this instance. (Deprecated) Applied to First Generation instances only.""", DeprecationWarning) - pulumi.log.warn("""authorized_gae_applications is deprecated: The App Engine app IDs that can access this instance. (Deprecated) Applied to First Generation instances only.""") - return pulumi.get(self, "authorized_gae_applications") @property @@ -2099,13 +2097,11 @@ def pricing_plan(self) -> str: @property @pulumi.getter(name="replicationType") + @_utilities.deprecated("""The type of replication this instance uses. This can be either `ASYNCHRONOUS` or `SYNCHRONOUS`. (Deprecated) This property was only applicable to First Generation instances.""") def replication_type(self) -> str: """ The type of replication this instance uses. This can be either `ASYNCHRONOUS` or `SYNCHRONOUS`. (Deprecated) This property was only applicable to First Generation instances. """ - warnings.warn("""The type of replication this instance uses. This can be either `ASYNCHRONOUS` or `SYNCHRONOUS`. (Deprecated) This property was only applicable to First Generation instances.""", DeprecationWarning) - pulumi.log.warn("""replication_type is deprecated: The type of replication this instance uses. This can be either `ASYNCHRONOUS` or `SYNCHRONOUS`. (Deprecated) This property was only applicable to First Generation instances.""") - return pulumi.get(self, "replication_type") @property diff --git a/sdk/python/pulumi_google_native/sqladmin/v1/user.py b/sdk/python/pulumi_google_native/sqladmin/v1/user.py index 6f2ba56205..34cb538404 100644 --- a/sdk/python/pulumi_google_native/sqladmin/v1/user.py +++ b/sdk/python/pulumi_google_native/sqladmin/v1/user.py @@ -92,13 +92,11 @@ def dual_password_type(self, value: Optional[pulumi.Input['UserDualPasswordType' @property @pulumi.getter + @_utilities.deprecated("""This field is deprecated and will be removed from a future version of the API.""") def etag(self) -> Optional[pulumi.Input[str]]: """ This field is deprecated and will be removed from a future version of the API. """ - warnings.warn("""This field is deprecated and will be removed from a future version of the API.""", DeprecationWarning) - pulumi.log.warn("""etag is deprecated: This field is deprecated and will be removed from a future version of the API.""") - return pulumi.get(self, "etag") @etag.setter @@ -336,13 +334,11 @@ def dual_password_type(self) -> pulumi.Output[str]: @property @pulumi.getter + @_utilities.deprecated("""This field is deprecated and will be removed from a future version of the API.""") def etag(self) -> pulumi.Output[str]: """ This field is deprecated and will be removed from a future version of the API. """ - warnings.warn("""This field is deprecated and will be removed from a future version of the API.""", DeprecationWarning) - pulumi.log.warn("""etag is deprecated: This field is deprecated and will be removed from a future version of the API.""") - return pulumi.get(self, "etag") @property diff --git a/sdk/python/pulumi_google_native/sqladmin/v1beta4/_inputs.py b/sdk/python/pulumi_google_native/sqladmin/v1beta4/_inputs.py index 56ac8993f4..d50d15d757 100644 --- a/sdk/python/pulumi_google_native/sqladmin/v1beta4/_inputs.py +++ b/sdk/python/pulumi_google_native/sqladmin/v1beta4/_inputs.py @@ -1855,13 +1855,11 @@ def advanced_machine_features(self, value: Optional[pulumi.Input['AdvancedMachin @property @pulumi.getter(name="authorizedGaeApplications") + @_utilities.deprecated("""The App Engine app IDs that can access this instance. (Deprecated) Applied to First Generation instances only.""") def authorized_gae_applications(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]: """ The App Engine app IDs that can access this instance. (Deprecated) Applied to First Generation instances only. """ - warnings.warn("""The App Engine app IDs that can access this instance. (Deprecated) Applied to First Generation instances only.""", DeprecationWarning) - pulumi.log.warn("""authorized_gae_applications is deprecated: The App Engine app IDs that can access this instance. (Deprecated) Applied to First Generation instances only.""") - return pulumi.get(self, "authorized_gae_applications") @authorized_gae_applications.setter @@ -2110,13 +2108,11 @@ def pricing_plan(self, value: Optional[pulumi.Input['SettingsPricingPlan']]): @property @pulumi.getter(name="replicationType") + @_utilities.deprecated("""The type of replication this instance uses. This can be either `ASYNCHRONOUS` or `SYNCHRONOUS`. (Deprecated) This property was only applicable to First Generation instances.""") def replication_type(self) -> Optional[pulumi.Input['SettingsReplicationType']]: """ The type of replication this instance uses. This can be either `ASYNCHRONOUS` or `SYNCHRONOUS`. (Deprecated) This property was only applicable to First Generation instances. """ - warnings.warn("""The type of replication this instance uses. This can be either `ASYNCHRONOUS` or `SYNCHRONOUS`. (Deprecated) This property was only applicable to First Generation instances.""", DeprecationWarning) - pulumi.log.warn("""replication_type is deprecated: The type of replication this instance uses. This can be either `ASYNCHRONOUS` or `SYNCHRONOUS`. (Deprecated) This property was only applicable to First Generation instances.""") - return pulumi.get(self, "replication_type") @replication_type.setter diff --git a/sdk/python/pulumi_google_native/sqladmin/v1beta4/database.py b/sdk/python/pulumi_google_native/sqladmin/v1beta4/database.py index 7937c0820b..bc961dc578 100644 --- a/sdk/python/pulumi_google_native/sqladmin/v1beta4/database.py +++ b/sdk/python/pulumi_google_native/sqladmin/v1beta4/database.py @@ -95,13 +95,11 @@ def collation(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""This field is deprecated and will be removed from a future version of the API.""") def etag(self) -> Optional[pulumi.Input[str]]: """ This field is deprecated and will be removed from a future version of the API. """ - warnings.warn("""This field is deprecated and will be removed from a future version of the API.""", DeprecationWarning) - pulumi.log.warn("""etag is deprecated: This field is deprecated and will be removed from a future version of the API.""") - return pulumi.get(self, "etag") @etag.setter @@ -301,13 +299,11 @@ def collation(self) -> pulumi.Output[str]: @property @pulumi.getter + @_utilities.deprecated("""This field is deprecated and will be removed from a future version of the API.""") def etag(self) -> pulumi.Output[str]: """ This field is deprecated and will be removed from a future version of the API. """ - warnings.warn("""This field is deprecated and will be removed from a future version of the API.""", DeprecationWarning) - pulumi.log.warn("""etag is deprecated: This field is deprecated and will be removed from a future version of the API.""") - return pulumi.get(self, "etag") @property diff --git a/sdk/python/pulumi_google_native/sqladmin/v1beta4/get_database.py b/sdk/python/pulumi_google_native/sqladmin/v1beta4/get_database.py index 1e88381e9e..3b2fdbb2e4 100644 --- a/sdk/python/pulumi_google_native/sqladmin/v1beta4/get_database.py +++ b/sdk/python/pulumi_google_native/sqladmin/v1beta4/get_database.py @@ -66,13 +66,11 @@ def collation(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""This field is deprecated and will be removed from a future version of the API.""") def etag(self) -> str: """ This field is deprecated and will be removed from a future version of the API. """ - warnings.warn("""This field is deprecated and will be removed from a future version of the API.""", DeprecationWarning) - pulumi.log.warn("""etag is deprecated: This field is deprecated and will be removed from a future version of the API.""") - return pulumi.get(self, "etag") @property diff --git a/sdk/python/pulumi_google_native/sqladmin/v1beta4/get_instance.py b/sdk/python/pulumi_google_native/sqladmin/v1beta4/get_instance.py index 5f2b2a952c..183284c29a 100644 --- a/sdk/python/pulumi_google_native/sqladmin/v1beta4/get_instance.py +++ b/sdk/python/pulumi_google_native/sqladmin/v1beta4/get_instance.py @@ -226,13 +226,11 @@ def dns_name(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead.""") def etag(self) -> str: """ This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead. """ - warnings.warn("""This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead.""", DeprecationWarning) - pulumi.log.warn("""etag is deprecated: This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead.""") - return pulumi.get(self, "etag") @property @@ -269,13 +267,11 @@ def ip_addresses(self) -> Sequence['outputs.IpMappingResponse']: @property @pulumi.getter(name="ipv6Address") + @_utilities.deprecated("""The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances.""") def ipv6_address(self) -> str: """ The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances. """ - warnings.warn("""The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances.""", DeprecationWarning) - pulumi.log.warn("""ipv6_address is deprecated: The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances.""") - return pulumi.get(self, "ipv6_address") @property @@ -336,13 +332,11 @@ def out_of_disk_report(self) -> 'outputs.SqlOutOfDiskReportResponse': @property @pulumi.getter(name="primaryDnsName") + @_utilities.deprecated("""Output only. DEPRECATED: please use write_endpoint instead.""") def primary_dns_name(self) -> str: """ DEPRECATED: please use write_endpoint instead. """ - warnings.warn("""Output only. DEPRECATED: please use write_endpoint instead.""", DeprecationWarning) - pulumi.log.warn("""primary_dns_name is deprecated: Output only. DEPRECATED: please use write_endpoint instead.""") - return pulumi.get(self, "primary_dns_name") @property diff --git a/sdk/python/pulumi_google_native/sqladmin/v1beta4/get_user.py b/sdk/python/pulumi_google_native/sqladmin/v1beta4/get_user.py index 17d8e5325f..5a3da4692b 100644 --- a/sdk/python/pulumi_google_native/sqladmin/v1beta4/get_user.py +++ b/sdk/python/pulumi_google_native/sqladmin/v1beta4/get_user.py @@ -64,13 +64,11 @@ def dual_password_type(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""This field is deprecated and will be removed from a future version of the API.""") def etag(self) -> str: """ This field is deprecated and will be removed from a future version of the API. """ - warnings.warn("""This field is deprecated and will be removed from a future version of the API.""", DeprecationWarning) - pulumi.log.warn("""etag is deprecated: This field is deprecated and will be removed from a future version of the API.""") - return pulumi.get(self, "etag") @property diff --git a/sdk/python/pulumi_google_native/sqladmin/v1beta4/instance.py b/sdk/python/pulumi_google_native/sqladmin/v1beta4/instance.py index 88d4857075..3521365131 100644 --- a/sdk/python/pulumi_google_native/sqladmin/v1beta4/instance.py +++ b/sdk/python/pulumi_google_native/sqladmin/v1beta4/instance.py @@ -237,13 +237,11 @@ def disk_encryption_status(self, value: Optional[pulumi.Input['DiskEncryptionSta @property @pulumi.getter + @_utilities.deprecated("""This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead.""") def etag(self) -> Optional[pulumi.Input[str]]: """ This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead. """ - warnings.warn("""This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead.""", DeprecationWarning) - pulumi.log.warn("""etag is deprecated: This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead.""") - return pulumi.get(self, "etag") @etag.setter @@ -300,13 +298,11 @@ def ip_addresses(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['IpMap @property @pulumi.getter(name="ipv6Address") + @_utilities.deprecated("""The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances.""") def ipv6_address(self) -> Optional[pulumi.Input[str]]: """ The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances. """ - warnings.warn("""The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances.""", DeprecationWarning) - pulumi.log.warn("""ipv6_address is deprecated: The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances.""") - return pulumi.get(self, "ipv6_address") @ipv6_address.setter @@ -915,13 +911,11 @@ def dns_name(self) -> pulumi.Output[str]: @property @pulumi.getter + @_utilities.deprecated("""This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead.""") def etag(self) -> pulumi.Output[str]: """ This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead. """ - warnings.warn("""This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead.""", DeprecationWarning) - pulumi.log.warn("""etag is deprecated: This field is deprecated and will be removed from a future version of the API. Use the `settings.settingsVersion` field instead.""") - return pulumi.get(self, "etag") @property @@ -958,13 +952,11 @@ def ip_addresses(self) -> pulumi.Output[Sequence['outputs.IpMappingResponse']]: @property @pulumi.getter(name="ipv6Address") + @_utilities.deprecated("""The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances.""") def ipv6_address(self) -> pulumi.Output[str]: """ The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances. """ - warnings.warn("""The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances.""", DeprecationWarning) - pulumi.log.warn("""ipv6_address is deprecated: The IPv6 address assigned to the instance. (Deprecated) This property was applicable only to First Generation instances.""") - return pulumi.get(self, "ipv6_address") @property @@ -1025,13 +1017,11 @@ def out_of_disk_report(self) -> pulumi.Output['outputs.SqlOutOfDiskReportRespons @property @pulumi.getter(name="primaryDnsName") + @_utilities.deprecated("""Output only. DEPRECATED: please use write_endpoint instead.""") def primary_dns_name(self) -> pulumi.Output[str]: """ DEPRECATED: please use write_endpoint instead. """ - warnings.warn("""Output only. DEPRECATED: please use write_endpoint instead.""", DeprecationWarning) - pulumi.log.warn("""primary_dns_name is deprecated: Output only. DEPRECATED: please use write_endpoint instead.""") - return pulumi.get(self, "primary_dns_name") @property diff --git a/sdk/python/pulumi_google_native/sqladmin/v1beta4/outputs.py b/sdk/python/pulumi_google_native/sqladmin/v1beta4/outputs.py index 4e865ef3c8..a016d307b3 100644 --- a/sdk/python/pulumi_google_native/sqladmin/v1beta4/outputs.py +++ b/sdk/python/pulumi_google_native/sqladmin/v1beta4/outputs.py @@ -1928,13 +1928,11 @@ def advanced_machine_features(self) -> 'outputs.AdvancedMachineFeaturesResponse' @property @pulumi.getter(name="authorizedGaeApplications") + @_utilities.deprecated("""The App Engine app IDs that can access this instance. (Deprecated) Applied to First Generation instances only.""") def authorized_gae_applications(self) -> Sequence[str]: """ The App Engine app IDs that can access this instance. (Deprecated) Applied to First Generation instances only. """ - warnings.warn("""The App Engine app IDs that can access this instance. (Deprecated) Applied to First Generation instances only.""", DeprecationWarning) - pulumi.log.warn("""authorized_gae_applications is deprecated: The App Engine app IDs that can access this instance. (Deprecated) Applied to First Generation instances only.""") - return pulumi.get(self, "authorized_gae_applications") @property @@ -2099,13 +2097,11 @@ def pricing_plan(self) -> str: @property @pulumi.getter(name="replicationType") + @_utilities.deprecated("""The type of replication this instance uses. This can be either `ASYNCHRONOUS` or `SYNCHRONOUS`. (Deprecated) This property was only applicable to First Generation instances.""") def replication_type(self) -> str: """ The type of replication this instance uses. This can be either `ASYNCHRONOUS` or `SYNCHRONOUS`. (Deprecated) This property was only applicable to First Generation instances. """ - warnings.warn("""The type of replication this instance uses. This can be either `ASYNCHRONOUS` or `SYNCHRONOUS`. (Deprecated) This property was only applicable to First Generation instances.""", DeprecationWarning) - pulumi.log.warn("""replication_type is deprecated: The type of replication this instance uses. This can be either `ASYNCHRONOUS` or `SYNCHRONOUS`. (Deprecated) This property was only applicable to First Generation instances.""") - return pulumi.get(self, "replication_type") @property diff --git a/sdk/python/pulumi_google_native/sqladmin/v1beta4/user.py b/sdk/python/pulumi_google_native/sqladmin/v1beta4/user.py index 75438e5799..929ccaf81a 100644 --- a/sdk/python/pulumi_google_native/sqladmin/v1beta4/user.py +++ b/sdk/python/pulumi_google_native/sqladmin/v1beta4/user.py @@ -92,13 +92,11 @@ def dual_password_type(self, value: Optional[pulumi.Input['UserDualPasswordType' @property @pulumi.getter + @_utilities.deprecated("""This field is deprecated and will be removed from a future version of the API.""") def etag(self) -> Optional[pulumi.Input[str]]: """ This field is deprecated and will be removed from a future version of the API. """ - warnings.warn("""This field is deprecated and will be removed from a future version of the API.""", DeprecationWarning) - pulumi.log.warn("""etag is deprecated: This field is deprecated and will be removed from a future version of the API.""") - return pulumi.get(self, "etag") @etag.setter @@ -336,13 +334,11 @@ def dual_password_type(self) -> pulumi.Output[str]: @property @pulumi.getter + @_utilities.deprecated("""This field is deprecated and will be removed from a future version of the API.""") def etag(self) -> pulumi.Output[str]: """ This field is deprecated and will be removed from a future version of the API. """ - warnings.warn("""This field is deprecated and will be removed from a future version of the API.""", DeprecationWarning) - pulumi.log.warn("""etag is deprecated: This field is deprecated and will be removed from a future version of the API.""") - return pulumi.get(self, "etag") @property diff --git a/sdk/python/pulumi_google_native/storage/v1/hmac_key.py b/sdk/python/pulumi_google_native/storage/v1/hmac_key.py index 2d3a1f5717..135001ccf6 100644 --- a/sdk/python/pulumi_google_native/storage/v1/hmac_key.py +++ b/sdk/python/pulumi_google_native/storage/v1/hmac_key.py @@ -129,7 +129,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["time_created"] = None __props__.__dict__["updated"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "service_account_email"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["project", "serviceAccountEmail"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(HmacKey, __self__).__init__( 'google-native:storage/v1:HmacKey', diff --git a/sdk/python/pulumi_google_native/storage/v1/managed_folder_iam_policy.py b/sdk/python/pulumi_google_native/storage/v1/managed_folder_iam_policy.py index b0fefe5628..dbd886a95c 100644 --- a/sdk/python/pulumi_google_native/storage/v1/managed_folder_iam_policy.py +++ b/sdk/python/pulumi_google_native/storage/v1/managed_folder_iam_policy.py @@ -222,7 +222,7 @@ def _internal_init(__self__, __props__.__dict__["resource_id"] = resource_id __props__.__dict__["user_project"] = user_project __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bucket", "managed_folder"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["bucket", "managedFolder"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ManagedFolderIamPolicy, __self__).__init__( 'google-native:storage/v1:ManagedFolderIamPolicy', diff --git a/sdk/python/pulumi_google_native/storagetransfer/v1/agent_pool.py b/sdk/python/pulumi_google_native/storagetransfer/v1/agent_pool.py index 6cac2d7f15..1bd7972eaa 100644 --- a/sdk/python/pulumi_google_native/storagetransfer/v1/agent_pool.py +++ b/sdk/python/pulumi_google_native/storagetransfer/v1/agent_pool.py @@ -163,7 +163,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = name __props__.__dict__["project"] = project __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agent_pool_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["agentPoolId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(AgentPool, __self__).__init__( 'google-native:storagetransfer/v1:AgentPool', diff --git a/sdk/python/pulumi_google_native/testing/v1/_inputs.py b/sdk/python/pulumi_google_native/testing/v1/_inputs.py index b2f9145df0..21a8750a96 100644 --- a/sdk/python/pulumi_google_native/testing/v1/_inputs.py +++ b/sdk/python/pulumi_google_native/testing/v1/_inputs.py @@ -1946,13 +1946,11 @@ def network_profile(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter + @_utilities.deprecated("""Systrace configuration for the run. Deprecated: Systrace used Python 2 which was sunsetted on 2020-01-01. Systrace is no longer supported in the Cloud Testing API, and no Systrace file will be provided in the results.""") def systrace(self) -> Optional[pulumi.Input['SystraceSetupArgs']]: """ Systrace configuration for the run. Deprecated: Systrace used Python 2 which was sunsetted on 2020-01-01. Systrace is no longer supported in the Cloud Testing API, and no Systrace file will be provided in the results. """ - warnings.warn("""Systrace configuration for the run. Deprecated: Systrace used Python 2 which was sunsetted on 2020-01-01. Systrace is no longer supported in the Cloud Testing API, and no Systrace file will be provided in the results.""", DeprecationWarning) - pulumi.log.warn("""systrace is deprecated: Systrace configuration for the run. Deprecated: Systrace used Python 2 which was sunsetted on 2020-01-01. Systrace is no longer supported in the Cloud Testing API, and no Systrace file will be provided in the results.""") - return pulumi.get(self, "systrace") @systrace.setter diff --git a/sdk/python/pulumi_google_native/testing/v1/outputs.py b/sdk/python/pulumi_google_native/testing/v1/outputs.py index b8e5c4b7ae..cabed2a1b4 100644 --- a/sdk/python/pulumi_google_native/testing/v1/outputs.py +++ b/sdk/python/pulumi_google_native/testing/v1/outputs.py @@ -2636,13 +2636,11 @@ def network_profile(self) -> str: @property @pulumi.getter + @_utilities.deprecated("""Systrace configuration for the run. Deprecated: Systrace used Python 2 which was sunsetted on 2020-01-01. Systrace is no longer supported in the Cloud Testing API, and no Systrace file will be provided in the results.""") def systrace(self) -> 'outputs.SystraceSetupResponse': """ Systrace configuration for the run. Deprecated: Systrace used Python 2 which was sunsetted on 2020-01-01. Systrace is no longer supported in the Cloud Testing API, and no Systrace file will be provided in the results. """ - warnings.warn("""Systrace configuration for the run. Deprecated: Systrace used Python 2 which was sunsetted on 2020-01-01. Systrace is no longer supported in the Cloud Testing API, and no Systrace file will be provided in the results.""", DeprecationWarning) - pulumi.log.warn("""systrace is deprecated: Systrace configuration for the run. Deprecated: Systrace used Python 2 which was sunsetted on 2020-01-01. Systrace is no longer supported in the Cloud Testing API, and no Systrace file will be provided in the results.""") - return pulumi.get(self, "systrace") diff --git a/sdk/python/pulumi_google_native/toolresults/v1beta3/_inputs.py b/sdk/python/pulumi_google_native/toolresults/v1beta3/_inputs.py index fe63821393..02304454c9 100644 --- a/sdk/python/pulumi_google_native/toolresults/v1beta3/_inputs.py +++ b/sdk/python/pulumi_google_native/toolresults/v1beta3/_inputs.py @@ -1547,13 +1547,11 @@ def severity(self, value: Optional[pulumi.Input['TestIssueSeverity']]): @property @pulumi.getter(name="stackTrace") + @_utilities.deprecated("""Deprecated in favor of stack trace fields inside specific warnings.""") def stack_trace(self) -> Optional[pulumi.Input['StackTraceArgs']]: """ Deprecated in favor of stack trace fields inside specific warnings. """ - warnings.warn("""Deprecated in favor of stack trace fields inside specific warnings.""", DeprecationWarning) - pulumi.log.warn("""stack_trace is deprecated: Deprecated in favor of stack trace fields inside specific warnings.""") - return pulumi.get(self, "stack_trace") @stack_trace.setter diff --git a/sdk/python/pulumi_google_native/toolresults/v1beta3/execution.py b/sdk/python/pulumi_google_native/toolresults/v1beta3/execution.py index d49058c96b..d24544b7e9 100644 --- a/sdk/python/pulumi_google_native/toolresults/v1beta3/execution.py +++ b/sdk/python/pulumi_google_native/toolresults/v1beta3/execution.py @@ -284,7 +284,7 @@ def _internal_init(__self__, __props__.__dict__["specification"] = specification __props__.__dict__["state"] = state __props__.__dict__["test_execution_matrix_id"] = test_execution_matrix_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["history_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["historyId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Execution, __self__).__init__( 'google-native:toolresults/v1beta3:Execution', diff --git a/sdk/python/pulumi_google_native/toolresults/v1beta3/outputs.py b/sdk/python/pulumi_google_native/toolresults/v1beta3/outputs.py index cb8713b33f..f004b0fcbe 100644 --- a/sdk/python/pulumi_google_native/toolresults/v1beta3/outputs.py +++ b/sdk/python/pulumi_google_native/toolresults/v1beta3/outputs.py @@ -1688,13 +1688,11 @@ def severity(self) -> str: @property @pulumi.getter(name="stackTrace") + @_utilities.deprecated("""Deprecated in favor of stack trace fields inside specific warnings.""") def stack_trace(self) -> 'outputs.StackTraceResponse': """ Deprecated in favor of stack trace fields inside specific warnings. """ - warnings.warn("""Deprecated in favor of stack trace fields inside specific warnings.""", DeprecationWarning) - pulumi.log.warn("""stack_trace is deprecated: Deprecated in favor of stack trace fields inside specific warnings.""") - return pulumi.get(self, "stack_trace") @property diff --git a/sdk/python/pulumi_google_native/toolresults/v1beta3/perf_sample_series.py b/sdk/python/pulumi_google_native/toolresults/v1beta3/perf_sample_series.py index 02d998f7f3..a8d198febe 100644 --- a/sdk/python/pulumi_google_native/toolresults/v1beta3/perf_sample_series.py +++ b/sdk/python/pulumi_google_native/toolresults/v1beta3/perf_sample_series.py @@ -157,7 +157,7 @@ def _internal_init(__self__, raise TypeError("Missing required property 'step_id'") __props__.__dict__["step_id"] = step_id __props__.__dict__["sample_series_id"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["execution_id", "history_id", "project", "step_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["executionId", "historyId", "project", "stepId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(PerfSampleSeries, __self__).__init__( 'google-native:toolresults/v1beta3:PerfSampleSeries', diff --git a/sdk/python/pulumi_google_native/toolresults/v1beta3/step.py b/sdk/python/pulumi_google_native/toolresults/v1beta3/step.py index 6915b7faef..f820c4a1ed 100644 --- a/sdk/python/pulumi_google_native/toolresults/v1beta3/step.py +++ b/sdk/python/pulumi_google_native/toolresults/v1beta3/step.py @@ -438,7 +438,7 @@ def _internal_init(__self__, __props__.__dict__["step_id"] = step_id __props__.__dict__["test_execution_step"] = test_execution_step __props__.__dict__["tool_execution_step"] = tool_execution_step - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["execution_id", "history_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["executionId", "historyId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Step, __self__).__init__( 'google-native:toolresults/v1beta3:Step', diff --git a/sdk/python/pulumi_google_native/tpu/v1/get_node.py b/sdk/python/pulumi_google_native/tpu/v1/get_node.py index b228e22443..c4afdc7263 100644 --- a/sdk/python/pulumi_google_native/tpu/v1/get_node.py +++ b/sdk/python/pulumi_google_native/tpu/v1/get_node.py @@ -136,13 +136,11 @@ def health_description(self) -> str: @property @pulumi.getter(name="ipAddress") + @_utilities.deprecated("""Output only. DEPRECATED! Use network_endpoints instead. The network address for the TPU Node as visible to Compute Engine instances.""") def ip_address(self) -> str: """ DEPRECATED! Use network_endpoints instead. The network address for the TPU Node as visible to Compute Engine instances. """ - warnings.warn("""Output only. DEPRECATED! Use network_endpoints instead. The network address for the TPU Node as visible to Compute Engine instances.""", DeprecationWarning) - pulumi.log.warn("""ip_address is deprecated: Output only. DEPRECATED! Use network_endpoints instead. The network address for the TPU Node as visible to Compute Engine instances.""") - return pulumi.get(self, "ip_address") @property @@ -179,13 +177,11 @@ def network_endpoints(self) -> Sequence['outputs.NetworkEndpointResponse']: @property @pulumi.getter + @_utilities.deprecated("""Output only. DEPRECATED! Use network_endpoints instead. The network port for the TPU Node as visible to Compute Engine instances.""") def port(self) -> str: """ DEPRECATED! Use network_endpoints instead. The network port for the TPU Node as visible to Compute Engine instances. """ - warnings.warn("""Output only. DEPRECATED! Use network_endpoints instead. The network port for the TPU Node as visible to Compute Engine instances.""", DeprecationWarning) - pulumi.log.warn("""port is deprecated: Output only. DEPRECATED! Use network_endpoints instead. The network port for the TPU Node as visible to Compute Engine instances.""") - return pulumi.get(self, "port") @property diff --git a/sdk/python/pulumi_google_native/tpu/v1/node.py b/sdk/python/pulumi_google_native/tpu/v1/node.py index 3a63c36a01..b21eaee726 100644 --- a/sdk/python/pulumi_google_native/tpu/v1/node.py +++ b/sdk/python/pulumi_google_native/tpu/v1/node.py @@ -417,13 +417,11 @@ def health_description(self) -> pulumi.Output[str]: @property @pulumi.getter(name="ipAddress") + @_utilities.deprecated("""Output only. DEPRECATED! Use network_endpoints instead. The network address for the TPU Node as visible to Compute Engine instances.""") def ip_address(self) -> pulumi.Output[str]: """ DEPRECATED! Use network_endpoints instead. The network address for the TPU Node as visible to Compute Engine instances. """ - warnings.warn("""Output only. DEPRECATED! Use network_endpoints instead. The network address for the TPU Node as visible to Compute Engine instances.""", DeprecationWarning) - pulumi.log.warn("""ip_address is deprecated: Output only. DEPRECATED! Use network_endpoints instead. The network address for the TPU Node as visible to Compute Engine instances.""") - return pulumi.get(self, "ip_address") @property @@ -473,13 +471,11 @@ def node_id(self) -> pulumi.Output[Optional[str]]: @property @pulumi.getter + @_utilities.deprecated("""Output only. DEPRECATED! Use network_endpoints instead. The network port for the TPU Node as visible to Compute Engine instances.""") def port(self) -> pulumi.Output[str]: """ DEPRECATED! Use network_endpoints instead. The network port for the TPU Node as visible to Compute Engine instances. """ - warnings.warn("""Output only. DEPRECATED! Use network_endpoints instead. The network port for the TPU Node as visible to Compute Engine instances.""", DeprecationWarning) - pulumi.log.warn("""port is deprecated: Output only. DEPRECATED! Use network_endpoints instead. The network port for the TPU Node as visible to Compute Engine instances.""") - return pulumi.get(self, "port") @property diff --git a/sdk/python/pulumi_google_native/tpu/v1alpha1/get_node.py b/sdk/python/pulumi_google_native/tpu/v1alpha1/get_node.py index b6ef389a00..610c4e94f8 100644 --- a/sdk/python/pulumi_google_native/tpu/v1alpha1/get_node.py +++ b/sdk/python/pulumi_google_native/tpu/v1alpha1/get_node.py @@ -136,13 +136,11 @@ def health_description(self) -> str: @property @pulumi.getter(name="ipAddress") + @_utilities.deprecated("""Output only. DEPRECATED! Use network_endpoints instead. The network address for the TPU Node as visible to Compute Engine instances.""") def ip_address(self) -> str: """ DEPRECATED! Use network_endpoints instead. The network address for the TPU Node as visible to Compute Engine instances. """ - warnings.warn("""Output only. DEPRECATED! Use network_endpoints instead. The network address for the TPU Node as visible to Compute Engine instances.""", DeprecationWarning) - pulumi.log.warn("""ip_address is deprecated: Output only. DEPRECATED! Use network_endpoints instead. The network address for the TPU Node as visible to Compute Engine instances.""") - return pulumi.get(self, "ip_address") @property @@ -179,13 +177,11 @@ def network_endpoints(self) -> Sequence['outputs.NetworkEndpointResponse']: @property @pulumi.getter + @_utilities.deprecated("""Output only. DEPRECATED! Use network_endpoints instead. The network port for the TPU Node as visible to Compute Engine instances.""") def port(self) -> str: """ DEPRECATED! Use network_endpoints instead. The network port for the TPU Node as visible to Compute Engine instances. """ - warnings.warn("""Output only. DEPRECATED! Use network_endpoints instead. The network port for the TPU Node as visible to Compute Engine instances.""", DeprecationWarning) - pulumi.log.warn("""port is deprecated: Output only. DEPRECATED! Use network_endpoints instead. The network port for the TPU Node as visible to Compute Engine instances.""") - return pulumi.get(self, "port") @property diff --git a/sdk/python/pulumi_google_native/tpu/v1alpha1/node.py b/sdk/python/pulumi_google_native/tpu/v1alpha1/node.py index bf951b534d..d3097cb798 100644 --- a/sdk/python/pulumi_google_native/tpu/v1alpha1/node.py +++ b/sdk/python/pulumi_google_native/tpu/v1alpha1/node.py @@ -438,13 +438,11 @@ def health_description(self) -> pulumi.Output[str]: @property @pulumi.getter(name="ipAddress") + @_utilities.deprecated("""Output only. DEPRECATED! Use network_endpoints instead. The network address for the TPU Node as visible to Compute Engine instances.""") def ip_address(self) -> pulumi.Output[str]: """ DEPRECATED! Use network_endpoints instead. The network address for the TPU Node as visible to Compute Engine instances. """ - warnings.warn("""Output only. DEPRECATED! Use network_endpoints instead. The network address for the TPU Node as visible to Compute Engine instances.""", DeprecationWarning) - pulumi.log.warn("""ip_address is deprecated: Output only. DEPRECATED! Use network_endpoints instead. The network address for the TPU Node as visible to Compute Engine instances.""") - return pulumi.get(self, "ip_address") @property @@ -494,13 +492,11 @@ def node_id(self) -> pulumi.Output[Optional[str]]: @property @pulumi.getter + @_utilities.deprecated("""Output only. DEPRECATED! Use network_endpoints instead. The network port for the TPU Node as visible to Compute Engine instances.""") def port(self) -> pulumi.Output[str]: """ DEPRECATED! Use network_endpoints instead. The network port for the TPU Node as visible to Compute Engine instances. """ - warnings.warn("""Output only. DEPRECATED! Use network_endpoints instead. The network port for the TPU Node as visible to Compute Engine instances.""", DeprecationWarning) - pulumi.log.warn("""port is deprecated: Output only. DEPRECATED! Use network_endpoints instead. The network port for the TPU Node as visible to Compute Engine instances.""") - return pulumi.get(self, "port") @property diff --git a/sdk/python/pulumi_google_native/transcoder/v1/job_template.py b/sdk/python/pulumi_google_native/transcoder/v1/job_template.py index fc164a226c..3bb70247f4 100644 --- a/sdk/python/pulumi_google_native/transcoder/v1/job_template.py +++ b/sdk/python/pulumi_google_native/transcoder/v1/job_template.py @@ -178,7 +178,7 @@ def _internal_init(__self__, __props__.__dict__["location"] = location __props__.__dict__["name"] = name __props__.__dict__["project"] = project - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["job_template_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["jobTemplateId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(JobTemplate, __self__).__init__( 'google-native:transcoder/v1:JobTemplate', diff --git a/sdk/python/pulumi_google_native/translate/v3/glossary_entry.py b/sdk/python/pulumi_google_native/translate/v3/glossary_entry.py index d4b119853c..4a7e84338a 100644 --- a/sdk/python/pulumi_google_native/translate/v3/glossary_entry.py +++ b/sdk/python/pulumi_google_native/translate/v3/glossary_entry.py @@ -192,7 +192,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["terms_pair"] = terms_pair __props__.__dict__["terms_set"] = terms_set - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["glossary_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["glossaryId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(GlossaryEntry, __self__).__init__( 'google-native:translate/v3:GlossaryEntry', diff --git a/sdk/python/pulumi_google_native/vision/v1/reference_image.py b/sdk/python/pulumi_google_native/vision/v1/reference_image.py index cdbc345e48..9b10301a94 100644 --- a/sdk/python/pulumi_google_native/vision/v1/reference_image.py +++ b/sdk/python/pulumi_google_native/vision/v1/reference_image.py @@ -193,7 +193,7 @@ def _internal_init(__self__, if uri is None and not opts.urn: raise TypeError("Missing required property 'uri'") __props__.__dict__["uri"] = uri - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "product_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "productId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ReferenceImage, __self__).__init__( 'google-native:vision/v1:ReferenceImage', diff --git a/sdk/python/pulumi_google_native/vmmigration/v1/clone_job.py b/sdk/python/pulumi_google_native/vmmigration/v1/clone_job.py index 2418855b64..0382ffe756 100644 --- a/sdk/python/pulumi_google_native/vmmigration/v1/clone_job.py +++ b/sdk/python/pulumi_google_native/vmmigration/v1/clone_job.py @@ -183,7 +183,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["state_time"] = None __props__.__dict__["steps"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clone_job_id", "location", "migrating_vm_id", "project", "source_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cloneJobId", "location", "migratingVmId", "project", "sourceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CloneJob, __self__).__init__( 'google-native:vmmigration/v1:CloneJob', diff --git a/sdk/python/pulumi_google_native/vmmigration/v1/cutover_job.py b/sdk/python/pulumi_google_native/vmmigration/v1/cutover_job.py index 788b842ee3..5b8086715c 100644 --- a/sdk/python/pulumi_google_native/vmmigration/v1/cutover_job.py +++ b/sdk/python/pulumi_google_native/vmmigration/v1/cutover_job.py @@ -185,7 +185,7 @@ def _internal_init(__self__, __props__.__dict__["state_message"] = None __props__.__dict__["state_time"] = None __props__.__dict__["steps"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cutover_job_id", "location", "migrating_vm_id", "project", "source_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cutoverJobId", "location", "migratingVmId", "project", "sourceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CutoverJob, __self__).__init__( 'google-native:vmmigration/v1:CutoverJob', diff --git a/sdk/python/pulumi_google_native/vmmigration/v1/datacenter_connector.py b/sdk/python/pulumi_google_native/vmmigration/v1/datacenter_connector.py index a6eeef4237..2555caa398 100644 --- a/sdk/python/pulumi_google_native/vmmigration/v1/datacenter_connector.py +++ b/sdk/python/pulumi_google_native/vmmigration/v1/datacenter_connector.py @@ -225,7 +225,7 @@ def _internal_init(__self__, __props__.__dict__["state_time"] = None __props__.__dict__["update_time"] = None __props__.__dict__["upgrade_status"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datacenter_connector_id", "location", "project", "source_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datacenterConnectorId", "location", "project", "sourceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DatacenterConnector, __self__).__init__( 'google-native:vmmigration/v1:DatacenterConnector', diff --git a/sdk/python/pulumi_google_native/vmmigration/v1/group.py b/sdk/python/pulumi_google_native/vmmigration/v1/group.py index a0c30a2cbc..695ef363fc 100644 --- a/sdk/python/pulumi_google_native/vmmigration/v1/group.py +++ b/sdk/python/pulumi_google_native/vmmigration/v1/group.py @@ -201,7 +201,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["group_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["groupId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Group, __self__).__init__( 'google-native:vmmigration/v1:Group', diff --git a/sdk/python/pulumi_google_native/vmmigration/v1/migrating_vm.py b/sdk/python/pulumi_google_native/vmmigration/v1/migrating_vm.py index 3000dd6ed4..46ca65fe98 100644 --- a/sdk/python/pulumi_google_native/vmmigration/v1/migrating_vm.py +++ b/sdk/python/pulumi_google_native/vmmigration/v1/migrating_vm.py @@ -312,7 +312,7 @@ def _internal_init(__self__, __props__.__dict__["state_time"] = None __props__.__dict__["update_time"] = None __props__.__dict__["vmware_source_vm_details"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "migrating_vm_id", "project", "source_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "migratingVmId", "project", "sourceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MigratingVm, __self__).__init__( 'google-native:vmmigration/v1:MigratingVm', diff --git a/sdk/python/pulumi_google_native/vmmigration/v1/source.py b/sdk/python/pulumi_google_native/vmmigration/v1/source.py index 4a026dc28d..17b1da80ed 100644 --- a/sdk/python/pulumi_google_native/vmmigration/v1/source.py +++ b/sdk/python/pulumi_google_native/vmmigration/v1/source.py @@ -262,7 +262,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "source_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "sourceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Source, __self__).__init__( 'google-native:vmmigration/v1:Source', diff --git a/sdk/python/pulumi_google_native/vmmigration/v1/target_project.py b/sdk/python/pulumi_google_native/vmmigration/v1/target_project.py index fbf8d10d65..859af903a3 100644 --- a/sdk/python/pulumi_google_native/vmmigration/v1/target_project.py +++ b/sdk/python/pulumi_google_native/vmmigration/v1/target_project.py @@ -165,7 +165,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "target_project_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "targetProjectId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TargetProject, __self__).__init__( 'google-native:vmmigration/v1:TargetProject', diff --git a/sdk/python/pulumi_google_native/vmmigration/v1/utilization_report.py b/sdk/python/pulumi_google_native/vmmigration/v1/utilization_report.py index aa6d1d8b3d..fe24471cfe 100644 --- a/sdk/python/pulumi_google_native/vmmigration/v1/utilization_report.py +++ b/sdk/python/pulumi_google_native/vmmigration/v1/utilization_report.py @@ -223,7 +223,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["state_time"] = None __props__.__dict__["vm_count"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "source_id", "utilization_report_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "sourceId", "utilizationReportId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(UtilizationReport, __self__).__init__( 'google-native:vmmigration/v1:UtilizationReport', diff --git a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/clone_job.py b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/clone_job.py index 5076f0d2f3..a1a577e898 100644 --- a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/clone_job.py +++ b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/clone_job.py @@ -185,7 +185,7 @@ def _internal_init(__self__, __props__.__dict__["state_time"] = None __props__.__dict__["steps"] = None __props__.__dict__["target_details"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clone_job_id", "location", "migrating_vm_id", "project", "source_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cloneJobId", "location", "migratingVmId", "project", "sourceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CloneJob, __self__).__init__( 'google-native:vmmigration/v1alpha1:CloneJob', @@ -254,13 +254,11 @@ def compute_engine_target_details(self) -> pulumi.Output['outputs.ComputeEngineT @property @pulumi.getter(name="computeEngineVmDetails") + @_utilities.deprecated("""Output only. Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead.""") def compute_engine_vm_details(self) -> pulumi.Output['outputs.TargetVMDetailsResponse']: """ Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead. """ - warnings.warn("""Output only. Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead.""", DeprecationWarning) - pulumi.log.warn("""compute_engine_vm_details is deprecated: Output only. Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead.""") - return pulumi.get(self, "compute_engine_vm_details") @property @@ -349,12 +347,10 @@ def steps(self) -> pulumi.Output[Sequence['outputs.CloneStepResponse']]: @property @pulumi.getter(name="targetDetails") + @_utilities.deprecated("""Output only. Details of the VM to create as the target of this clone job. Deprecated: Use compute_engine_target_details instead.""") def target_details(self) -> pulumi.Output['outputs.TargetVMDetailsResponse']: """ Details of the VM to create as the target of this clone job. Deprecated: Use compute_engine_target_details instead. """ - warnings.warn("""Output only. Details of the VM to create as the target of this clone job. Deprecated: Use compute_engine_target_details instead.""", DeprecationWarning) - pulumi.log.warn("""target_details is deprecated: Output only. Details of the VM to create as the target of this clone job. Deprecated: Use compute_engine_target_details instead.""") - return pulumi.get(self, "target_details") diff --git a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/cutover_job.py b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/cutover_job.py index 50a6409761..e8e44d506c 100644 --- a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/cutover_job.py +++ b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/cutover_job.py @@ -188,7 +188,7 @@ def _internal_init(__self__, __props__.__dict__["state_time"] = None __props__.__dict__["steps"] = None __props__.__dict__["target_details"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cutover_job_id", "location", "migrating_vm_id", "project", "source_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cutoverJobId", "location", "migratingVmId", "project", "sourceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(CutoverJob, __self__).__init__( 'google-native:vmmigration/v1alpha1:CutoverJob', @@ -252,13 +252,11 @@ def compute_engine_target_details(self) -> pulumi.Output['outputs.ComputeEngineT @property @pulumi.getter(name="computeEngineVmDetails") + @_utilities.deprecated("""Output only. Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead.""") def compute_engine_vm_details(self) -> pulumi.Output['outputs.TargetVMDetailsResponse']: """ Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead. """ - warnings.warn("""Output only. Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead.""", DeprecationWarning) - pulumi.log.warn("""compute_engine_vm_details is deprecated: Output only. Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead.""") - return pulumi.get(self, "compute_engine_vm_details") @property @@ -379,12 +377,10 @@ def steps(self) -> pulumi.Output[Sequence['outputs.CutoverStepResponse']]: @property @pulumi.getter(name="targetDetails") + @_utilities.deprecated("""Output only. Details of the VM to create as the target of this cutover job. Deprecated: Use compute_engine_target_details instead.""") def target_details(self) -> pulumi.Output['outputs.TargetVMDetailsResponse']: """ Details of the VM to create as the target of this cutover job. Deprecated: Use compute_engine_target_details instead. """ - warnings.warn("""Output only. Details of the VM to create as the target of this cutover job. Deprecated: Use compute_engine_target_details instead.""", DeprecationWarning) - pulumi.log.warn("""target_details is deprecated: Output only. Details of the VM to create as the target of this cutover job. Deprecated: Use compute_engine_target_details instead.""") - return pulumi.get(self, "target_details") diff --git a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/datacenter_connector.py b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/datacenter_connector.py index 2978146b53..925b54e368 100644 --- a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/datacenter_connector.py +++ b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/datacenter_connector.py @@ -225,7 +225,7 @@ def _internal_init(__self__, __props__.__dict__["state_time"] = None __props__.__dict__["update_time"] = None __props__.__dict__["upgrade_status"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datacenter_connector_id", "location", "project", "source_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["datacenterConnectorId", "location", "project", "sourceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(DatacenterConnector, __self__).__init__( 'google-native:vmmigration/v1alpha1:DatacenterConnector', diff --git a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/get_clone_job.py b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/get_clone_job.py index 24e5172b1a..9d02621b85 100644 --- a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/get_clone_job.py +++ b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/get_clone_job.py @@ -72,13 +72,11 @@ def compute_engine_target_details(self) -> 'outputs.ComputeEngineTargetDetailsRe @property @pulumi.getter(name="computeEngineVmDetails") + @_utilities.deprecated("""Output only. Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead.""") def compute_engine_vm_details(self) -> 'outputs.TargetVMDetailsResponse': """ Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead. """ - warnings.warn("""Output only. Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead.""", DeprecationWarning) - pulumi.log.warn("""compute_engine_vm_details is deprecated: Output only. Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead.""") - return pulumi.get(self, "compute_engine_vm_details") @property @@ -139,13 +137,11 @@ def steps(self) -> Sequence['outputs.CloneStepResponse']: @property @pulumi.getter(name="targetDetails") + @_utilities.deprecated("""Output only. Details of the VM to create as the target of this clone job. Deprecated: Use compute_engine_target_details instead.""") def target_details(self) -> 'outputs.TargetVMDetailsResponse': """ Details of the VM to create as the target of this clone job. Deprecated: Use compute_engine_target_details instead. """ - warnings.warn("""Output only. Details of the VM to create as the target of this clone job. Deprecated: Use compute_engine_target_details instead.""", DeprecationWarning) - pulumi.log.warn("""target_details is deprecated: Output only. Details of the VM to create as the target of this clone job. Deprecated: Use compute_engine_target_details instead.""") - return pulumi.get(self, "target_details") diff --git a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/get_cutover_job.py b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/get_cutover_job.py index 2d0f1044c3..cecee11298 100644 --- a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/get_cutover_job.py +++ b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/get_cutover_job.py @@ -81,13 +81,11 @@ def compute_engine_target_details(self) -> 'outputs.ComputeEngineTargetDetailsRe @property @pulumi.getter(name="computeEngineVmDetails") + @_utilities.deprecated("""Output only. Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead.""") def compute_engine_vm_details(self) -> 'outputs.TargetVMDetailsResponse': """ Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead. """ - warnings.warn("""Output only. Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead.""", DeprecationWarning) - pulumi.log.warn("""compute_engine_vm_details is deprecated: Output only. Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead.""") - return pulumi.get(self, "compute_engine_vm_details") @property @@ -172,13 +170,11 @@ def steps(self) -> Sequence['outputs.CutoverStepResponse']: @property @pulumi.getter(name="targetDetails") + @_utilities.deprecated("""Output only. Details of the VM to create as the target of this cutover job. Deprecated: Use compute_engine_target_details instead.""") def target_details(self) -> 'outputs.TargetVMDetailsResponse': """ Details of the VM to create as the target of this cutover job. Deprecated: Use compute_engine_target_details instead. """ - warnings.warn("""Output only. Details of the VM to create as the target of this cutover job. Deprecated: Use compute_engine_target_details instead.""", DeprecationWarning) - pulumi.log.warn("""target_details is deprecated: Output only. Details of the VM to create as the target of this cutover job. Deprecated: Use compute_engine_target_details instead.""") - return pulumi.get(self, "target_details") diff --git a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/get_migrating_vm.py b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/get_migrating_vm.py index d11cd39185..eb6541c0e3 100644 --- a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/get_migrating_vm.py +++ b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/get_migrating_vm.py @@ -130,13 +130,11 @@ def compute_engine_target_defaults(self) -> 'outputs.ComputeEngineTargetDefaults @property @pulumi.getter(name="computeEngineVmDefaults") + @_utilities.deprecated("""Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_defaults instead.""") def compute_engine_vm_defaults(self) -> 'outputs.TargetVMDetailsResponse': """ Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_defaults instead. """ - warnings.warn("""Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_defaults instead.""", DeprecationWarning) - pulumi.log.warn("""compute_engine_vm_defaults is deprecated: Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_defaults instead.""") - return pulumi.get(self, "compute_engine_vm_defaults") @property @@ -277,13 +275,11 @@ def state_time(self) -> str: @property @pulumi.getter(name="targetDefaults") + @_utilities.deprecated("""The default configuration of the target VM that will be created in Google Cloud as a result of the migration. Deprecated: Use compute_engine_target_defaults instead.""") def target_defaults(self) -> 'outputs.TargetVMDetailsResponse': """ The default configuration of the target VM that will be created in Google Cloud as a result of the migration. Deprecated: Use compute_engine_target_defaults instead. """ - warnings.warn("""The default configuration of the target VM that will be created in Google Cloud as a result of the migration. Deprecated: Use compute_engine_target_defaults instead.""", DeprecationWarning) - pulumi.log.warn("""target_defaults is deprecated: The default configuration of the target VM that will be created in Google Cloud as a result of the migration. Deprecated: Use compute_engine_target_defaults instead.""") - return pulumi.get(self, "target_defaults") @property diff --git a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/group.py b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/group.py index 8705d11913..ee5504dd13 100644 --- a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/group.py +++ b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/group.py @@ -201,7 +201,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["group_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["groupId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Group, __self__).__init__( 'google-native:vmmigration/v1alpha1:Group', diff --git a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/migrating_vm.py b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/migrating_vm.py index b7f82c8e2b..267439362a 100644 --- a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/migrating_vm.py +++ b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/migrating_vm.py @@ -125,13 +125,11 @@ def compute_engine_target_defaults(self, value: Optional[pulumi.Input['ComputeEn @property @pulumi.getter(name="computeEngineVmDefaults") + @_utilities.deprecated("""Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_defaults instead.""") def compute_engine_vm_defaults(self) -> Optional[pulumi.Input['TargetVMDetailsArgs']]: """ Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_defaults instead. """ - warnings.warn("""Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_defaults instead.""", DeprecationWarning) - pulumi.log.warn("""compute_engine_vm_defaults is deprecated: Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_defaults instead.""") - return pulumi.get(self, "compute_engine_vm_defaults") @compute_engine_vm_defaults.setter @@ -230,13 +228,11 @@ def source_vm_id(self, value: Optional[pulumi.Input[str]]): @property @pulumi.getter(name="targetDefaults") + @_utilities.deprecated("""The default configuration of the target VM that will be created in Google Cloud as a result of the migration. Deprecated: Use compute_engine_target_defaults instead.""") def target_defaults(self) -> Optional[pulumi.Input['TargetVMDetailsArgs']]: """ The default configuration of the target VM that will be created in Google Cloud as a result of the migration. Deprecated: Use compute_engine_target_defaults instead. """ - warnings.warn("""The default configuration of the target VM that will be created in Google Cloud as a result of the migration. Deprecated: Use compute_engine_target_defaults instead.""", DeprecationWarning) - pulumi.log.warn("""target_defaults is deprecated: The default configuration of the target VM that will be created in Google Cloud as a result of the migration. Deprecated: Use compute_engine_target_defaults instead.""") - return pulumi.get(self, "target_defaults") @target_defaults.setter @@ -364,7 +360,7 @@ def _internal_init(__self__, __props__.__dict__["state_time"] = None __props__.__dict__["update_time"] = None __props__.__dict__["vmware_source_vm_details"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "migrating_vm_id", "project", "source_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "migratingVmId", "project", "sourceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(MigratingVm, __self__).__init__( 'google-native:vmmigration/v1alpha1:MigratingVm', @@ -454,13 +450,11 @@ def compute_engine_target_defaults(self) -> pulumi.Output['outputs.ComputeEngine @property @pulumi.getter(name="computeEngineVmDefaults") + @_utilities.deprecated("""Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_defaults instead.""") def compute_engine_vm_defaults(self) -> pulumi.Output['outputs.TargetVMDetailsResponse']: """ Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_defaults instead. """ - warnings.warn("""Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_defaults instead.""", DeprecationWarning) - pulumi.log.warn("""compute_engine_vm_defaults is deprecated: Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_defaults instead.""") - return pulumi.get(self, "compute_engine_vm_defaults") @property @@ -632,13 +626,11 @@ def state_time(self) -> pulumi.Output[str]: @property @pulumi.getter(name="targetDefaults") + @_utilities.deprecated("""The default configuration of the target VM that will be created in Google Cloud as a result of the migration. Deprecated: Use compute_engine_target_defaults instead.""") def target_defaults(self) -> pulumi.Output['outputs.TargetVMDetailsResponse']: """ The default configuration of the target VM that will be created in Google Cloud as a result of the migration. Deprecated: Use compute_engine_target_defaults instead. """ - warnings.warn("""The default configuration of the target VM that will be created in Google Cloud as a result of the migration. Deprecated: Use compute_engine_target_defaults instead.""", DeprecationWarning) - pulumi.log.warn("""target_defaults is deprecated: The default configuration of the target VM that will be created in Google Cloud as a result of the migration. Deprecated: Use compute_engine_target_defaults instead.""") - return pulumi.get(self, "target_defaults") @property diff --git a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/outputs.py b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/outputs.py index def63f59a8..f24677fa1b 100644 --- a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/outputs.py +++ b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/outputs.py @@ -1082,13 +1082,11 @@ def compute_engine_target_details(self) -> 'outputs.ComputeEngineTargetDetailsRe @property @pulumi.getter(name="computeEngineVmDetails") + @_utilities.deprecated("""Output only. Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead.""") def compute_engine_vm_details(self) -> 'outputs.TargetVMDetailsResponse': """ Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead. """ - warnings.warn("""Output only. Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead.""", DeprecationWarning) - pulumi.log.warn("""compute_engine_vm_details is deprecated: Output only. Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead.""") - return pulumi.get(self, "compute_engine_vm_details") @property @@ -1149,13 +1147,11 @@ def steps(self) -> Sequence['outputs.CloneStepResponse']: @property @pulumi.getter(name="targetDetails") + @_utilities.deprecated("""Output only. Details of the VM to create as the target of this clone job. Deprecated: Use compute_engine_target_details instead.""") def target_details(self) -> 'outputs.TargetVMDetailsResponse': """ Details of the VM to create as the target of this clone job. Deprecated: Use compute_engine_target_details instead. """ - warnings.warn("""Output only. Details of the VM to create as the target of this clone job. Deprecated: Use compute_engine_target_details instead.""", DeprecationWarning) - pulumi.log.warn("""target_details is deprecated: Output only. Details of the VM to create as the target of this clone job. Deprecated: Use compute_engine_target_details instead.""") - return pulumi.get(self, "target_details") @@ -2153,13 +2149,11 @@ def compute_engine_target_details(self) -> 'outputs.ComputeEngineTargetDetailsRe @property @pulumi.getter(name="computeEngineVmDetails") + @_utilities.deprecated("""Output only. Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead.""") def compute_engine_vm_details(self) -> 'outputs.TargetVMDetailsResponse': """ Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead. """ - warnings.warn("""Output only. Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead.""", DeprecationWarning) - pulumi.log.warn("""compute_engine_vm_details is deprecated: Output only. Details of the VM in Compute Engine. Deprecated: Use compute_engine_target_details instead.""") - return pulumi.get(self, "compute_engine_vm_details") @property @@ -2244,13 +2238,11 @@ def steps(self) -> Sequence['outputs.CutoverStepResponse']: @property @pulumi.getter(name="targetDetails") + @_utilities.deprecated("""Output only. Details of the VM to create as the target of this cutover job. Deprecated: Use compute_engine_target_details instead.""") def target_details(self) -> 'outputs.TargetVMDetailsResponse': """ Details of the VM to create as the target of this cutover job. Deprecated: Use compute_engine_target_details instead. """ - warnings.warn("""Output only. Details of the VM to create as the target of this cutover job. Deprecated: Use compute_engine_target_details instead.""", DeprecationWarning) - pulumi.log.warn("""target_details is deprecated: Output only. Details of the VM to create as the target of this cutover job. Deprecated: Use compute_engine_target_details instead.""") - return pulumi.get(self, "target_details") diff --git a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/source.py b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/source.py index b53b378a2a..b4b9eb84e5 100644 --- a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/source.py +++ b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/source.py @@ -263,7 +263,7 @@ def _internal_init(__self__, __props__.__dict__["error"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "source_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "sourceId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Source, __self__).__init__( 'google-native:vmmigration/v1alpha1:Source', diff --git a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/target_project.py b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/target_project.py index beeb30552c..3213ca4e79 100644 --- a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/target_project.py +++ b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/target_project.py @@ -165,7 +165,7 @@ def _internal_init(__self__, __props__.__dict__["create_time"] = None __props__.__dict__["name"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "target_project_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "targetProjectId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(TargetProject, __self__).__init__( 'google-native:vmmigration/v1alpha1:TargetProject', diff --git a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/utilization_report.py b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/utilization_report.py index 8d52524cad..ba12afb48a 100644 --- a/sdk/python/pulumi_google_native/vmmigration/v1alpha1/utilization_report.py +++ b/sdk/python/pulumi_google_native/vmmigration/v1alpha1/utilization_report.py @@ -224,7 +224,7 @@ def _internal_init(__self__, __props__.__dict__["state_time"] = None __props__.__dict__["vm_count"] = None __props__.__dict__["vms_count"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "source_id", "utilization_report_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "sourceId", "utilizationReportId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(UtilizationReport, __self__).__init__( 'google-native:vmmigration/v1alpha1:UtilizationReport', diff --git a/sdk/python/pulumi_google_native/vmwareengine/v1/cluster.py b/sdk/python/pulumi_google_native/vmwareengine/v1/cluster.py index 43e6c08985..c9f7144d09 100644 --- a/sdk/python/pulumi_google_native/vmwareengine/v1/cluster.py +++ b/sdk/python/pulumi_google_native/vmwareengine/v1/cluster.py @@ -202,7 +202,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cluster_id", "location", "private_cloud_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clusterId", "location", "privateCloudId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Cluster, __self__).__init__( 'google-native:vmwareengine/v1:Cluster', diff --git a/sdk/python/pulumi_google_native/vmwareengine/v1/external_access_rule.py b/sdk/python/pulumi_google_native/vmwareengine/v1/external_access_rule.py index 6280abffb7..98d4fd7a81 100644 --- a/sdk/python/pulumi_google_native/vmwareengine/v1/external_access_rule.py +++ b/sdk/python/pulumi_google_native/vmwareengine/v1/external_access_rule.py @@ -321,7 +321,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["external_access_rule_id", "location", "network_policy_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["externalAccessRuleId", "location", "networkPolicyId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ExternalAccessRule, __self__).__init__( 'google-native:vmwareengine/v1:ExternalAccessRule', diff --git a/sdk/python/pulumi_google_native/vmwareengine/v1/external_address.py b/sdk/python/pulumi_google_native/vmwareengine/v1/external_address.py index 48f2bbb4fb..e616bc3268 100644 --- a/sdk/python/pulumi_google_native/vmwareengine/v1/external_address.py +++ b/sdk/python/pulumi_google_native/vmwareengine/v1/external_address.py @@ -199,7 +199,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["external_address_id", "location", "private_cloud_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["externalAddressId", "location", "privateCloudId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ExternalAddress, __self__).__init__( 'google-native:vmwareengine/v1:ExternalAddress', diff --git a/sdk/python/pulumi_google_native/vmwareengine/v1/hcx_activation_key.py b/sdk/python/pulumi_google_native/vmwareengine/v1/hcx_activation_key.py index 8c406b36b9..f32102d19a 100644 --- a/sdk/python/pulumi_google_native/vmwareengine/v1/hcx_activation_key.py +++ b/sdk/python/pulumi_google_native/vmwareengine/v1/hcx_activation_key.py @@ -162,7 +162,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["state"] = None __props__.__dict__["uid"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["hcx_activation_key_id", "location", "private_cloud_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["hcxActivationKeyId", "location", "privateCloudId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(HcxActivationKey, __self__).__init__( 'google-native:vmwareengine/v1:HcxActivationKey', diff --git a/sdk/python/pulumi_google_native/vmwareengine/v1/logging_server.py b/sdk/python/pulumi_google_native/vmwareengine/v1/logging_server.py index 27982af8ad..3cad9b50cf 100644 --- a/sdk/python/pulumi_google_native/vmwareengine/v1/logging_server.py +++ b/sdk/python/pulumi_google_native/vmwareengine/v1/logging_server.py @@ -242,7 +242,7 @@ def _internal_init(__self__, __props__.__dict__["name"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "logging_server_id", "private_cloud_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "loggingServerId", "privateCloudId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(LoggingServer, __self__).__init__( 'google-native:vmwareengine/v1:LoggingServer', diff --git a/sdk/python/pulumi_google_native/vmwareengine/v1/management_dns_zone_binding.py b/sdk/python/pulumi_google_native/vmwareengine/v1/management_dns_zone_binding.py index ae6f5aab94..dba04f4030 100644 --- a/sdk/python/pulumi_google_native/vmwareengine/v1/management_dns_zone_binding.py +++ b/sdk/python/pulumi_google_native/vmwareengine/v1/management_dns_zone_binding.py @@ -218,7 +218,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "management_dns_zone_binding_id", "private_cloud_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "managementDnsZoneBindingId", "privateCloudId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(ManagementDnsZoneBinding, __self__).__init__( 'google-native:vmwareengine/v1:ManagementDnsZoneBinding', diff --git a/sdk/python/pulumi_google_native/vmwareengine/v1/network_peering.py b/sdk/python/pulumi_google_native/vmwareengine/v1/network_peering.py index d47df40fd7..ae50a94b29 100644 --- a/sdk/python/pulumi_google_native/vmwareengine/v1/network_peering.py +++ b/sdk/python/pulumi_google_native/vmwareengine/v1/network_peering.py @@ -332,7 +332,7 @@ def _internal_init(__self__, __props__.__dict__["state_details"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["network_peering_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["networkPeeringId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(NetworkPeering, __self__).__init__( 'google-native:vmwareengine/v1:NetworkPeering', diff --git a/sdk/python/pulumi_google_native/vmwareengine/v1/network_policy.py b/sdk/python/pulumi_google_native/vmwareengine/v1/network_policy.py index c6d6d5dd41..f3d659aad5 100644 --- a/sdk/python/pulumi_google_native/vmwareengine/v1/network_policy.py +++ b/sdk/python/pulumi_google_native/vmwareengine/v1/network_policy.py @@ -245,7 +245,7 @@ def _internal_init(__self__, __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None __props__.__dict__["vmware_engine_network_canonical"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "network_policy_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "networkPolicyId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(NetworkPolicy, __self__).__init__( 'google-native:vmwareengine/v1:NetworkPolicy', diff --git a/sdk/python/pulumi_google_native/vmwareengine/v1/private_cloud.py b/sdk/python/pulumi_google_native/vmwareengine/v1/private_cloud.py index 1697c8c305..913dadd760 100644 --- a/sdk/python/pulumi_google_native/vmwareengine/v1/private_cloud.py +++ b/sdk/python/pulumi_google_native/vmwareengine/v1/private_cloud.py @@ -232,7 +232,7 @@ def _internal_init(__self__, __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None __props__.__dict__["vcenter"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "private_cloud_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "privateCloudId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(PrivateCloud, __self__).__init__( 'google-native:vmwareengine/v1:PrivateCloud', diff --git a/sdk/python/pulumi_google_native/vmwareengine/v1/private_cloud_cluster_iam_policy.py b/sdk/python/pulumi_google_native/vmwareengine/v1/private_cloud_cluster_iam_policy.py index 84bcd04d8e..2e8c601463 100644 --- a/sdk/python/pulumi_google_native/vmwareengine/v1/private_cloud_cluster_iam_policy.py +++ b/sdk/python/pulumi_google_native/vmwareengine/v1/private_cloud_cluster_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["cluster_id", "location", "private_cloud_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["clusterId", "location", "privateCloudId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(PrivateCloudClusterIamPolicy, __self__).__init__( 'google-native:vmwareengine/v1:PrivateCloudClusterIamPolicy', diff --git a/sdk/python/pulumi_google_native/vmwareengine/v1/private_cloud_hcx_activation_key_iam_policy.py b/sdk/python/pulumi_google_native/vmwareengine/v1/private_cloud_hcx_activation_key_iam_policy.py index 8bf168257f..6e7de98cea 100644 --- a/sdk/python/pulumi_google_native/vmwareengine/v1/private_cloud_hcx_activation_key_iam_policy.py +++ b/sdk/python/pulumi_google_native/vmwareengine/v1/private_cloud_hcx_activation_key_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["hcx_activation_key_id", "location", "private_cloud_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["hcxActivationKeyId", "location", "privateCloudId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(PrivateCloudHcxActivationKeyIamPolicy, __self__).__init__( 'google-native:vmwareengine/v1:PrivateCloudHcxActivationKeyIamPolicy', diff --git a/sdk/python/pulumi_google_native/vmwareengine/v1/private_cloud_iam_policy.py b/sdk/python/pulumi_google_native/vmwareengine/v1/private_cloud_iam_policy.py index 7032b10fd4..eece5b8fa9 100644 --- a/sdk/python/pulumi_google_native/vmwareengine/v1/private_cloud_iam_policy.py +++ b/sdk/python/pulumi_google_native/vmwareengine/v1/private_cloud_iam_policy.py @@ -217,7 +217,7 @@ def _internal_init(__self__, __props__.__dict__["project"] = project __props__.__dict__["update_mask"] = update_mask __props__.__dict__["version"] = version - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "private_cloud_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "privateCloudId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(PrivateCloudIamPolicy, __self__).__init__( 'google-native:vmwareengine/v1:PrivateCloudIamPolicy', diff --git a/sdk/python/pulumi_google_native/vmwareengine/v1/private_connection.py b/sdk/python/pulumi_google_native/vmwareengine/v1/private_connection.py index a58532b613..259ab921db 100644 --- a/sdk/python/pulumi_google_native/vmwareengine/v1/private_connection.py +++ b/sdk/python/pulumi_google_native/vmwareengine/v1/private_connection.py @@ -249,7 +249,7 @@ def _internal_init(__self__, __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None __props__.__dict__["vmware_engine_network_canonical"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "private_connection_id", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "privateConnectionId", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(PrivateConnection, __self__).__init__( 'google-native:vmwareengine/v1:PrivateConnection', diff --git a/sdk/python/pulumi_google_native/vmwareengine/v1/vmware_engine_network.py b/sdk/python/pulumi_google_native/vmwareengine/v1/vmware_engine_network.py index 4461290b07..101b00052a 100644 --- a/sdk/python/pulumi_google_native/vmwareengine/v1/vmware_engine_network.py +++ b/sdk/python/pulumi_google_native/vmwareengine/v1/vmware_engine_network.py @@ -206,7 +206,7 @@ def _internal_init(__self__, __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None __props__.__dict__["vpc_networks"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "vmware_engine_network_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "vmwareEngineNetworkId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(VmwareEngineNetwork, __self__).__init__( 'google-native:vmwareengine/v1:VmwareEngineNetwork', diff --git a/sdk/python/pulumi_google_native/vpcaccess/v1/connector.py b/sdk/python/pulumi_google_native/vpcaccess/v1/connector.py index be196001b8..715155476f 100644 --- a/sdk/python/pulumi_google_native/vpcaccess/v1/connector.py +++ b/sdk/python/pulumi_google_native/vpcaccess/v1/connector.py @@ -299,7 +299,7 @@ def _internal_init(__self__, __props__.__dict__["subnet"] = subnet __props__.__dict__["connected_projects"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connector_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connectorId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Connector, __self__).__init__( 'google-native:vpcaccess/v1:Connector', diff --git a/sdk/python/pulumi_google_native/vpcaccess/v1beta1/connector.py b/sdk/python/pulumi_google_native/vpcaccess/v1beta1/connector.py index c7e26addcb..3a198d4b2b 100644 --- a/sdk/python/pulumi_google_native/vpcaccess/v1beta1/connector.py +++ b/sdk/python/pulumi_google_native/vpcaccess/v1beta1/connector.py @@ -299,7 +299,7 @@ def _internal_init(__self__, __props__.__dict__["subnet"] = subnet __props__.__dict__["connected_projects"] = None __props__.__dict__["state"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connector_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["connectorId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Connector, __self__).__init__( 'google-native:vpcaccess/v1beta1:Connector', diff --git a/sdk/python/pulumi_google_native/workflowexecutions/v1/execution.py b/sdk/python/pulumi_google_native/workflowexecutions/v1/execution.py index 6f93cf5d52..33a15c6439 100644 --- a/sdk/python/pulumi_google_native/workflowexecutions/v1/execution.py +++ b/sdk/python/pulumi_google_native/workflowexecutions/v1/execution.py @@ -188,7 +188,7 @@ def _internal_init(__self__, __props__.__dict__["state_error"] = None __props__.__dict__["status"] = None __props__.__dict__["workflow_revision_id"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workflow_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workflowId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Execution, __self__).__init__( 'google-native:workflowexecutions/v1:Execution', diff --git a/sdk/python/pulumi_google_native/workflowexecutions/v1beta/execution.py b/sdk/python/pulumi_google_native/workflowexecutions/v1beta/execution.py index 477007986b..483a88ae15 100644 --- a/sdk/python/pulumi_google_native/workflowexecutions/v1beta/execution.py +++ b/sdk/python/pulumi_google_native/workflowexecutions/v1beta/execution.py @@ -166,7 +166,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["status"] = None __props__.__dict__["workflow_revision_id"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workflow_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workflowId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Execution, __self__).__init__( 'google-native:workflowexecutions/v1beta:Execution', diff --git a/sdk/python/pulumi_google_native/workflows/v1/workflow.py b/sdk/python/pulumi_google_native/workflows/v1/workflow.py index 14734ef5c8..1cde0cbe7a 100644 --- a/sdk/python/pulumi_google_native/workflows/v1/workflow.py +++ b/sdk/python/pulumi_google_native/workflows/v1/workflow.py @@ -283,7 +283,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["state_error"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workflow_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workflowId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Workflow, __self__).__init__( 'google-native:workflows/v1:Workflow', diff --git a/sdk/python/pulumi_google_native/workflows/v1beta/workflow.py b/sdk/python/pulumi_google_native/workflows/v1beta/workflow.py index e9d7bcd1ab..cb0c126a0f 100644 --- a/sdk/python/pulumi_google_native/workflows/v1beta/workflow.py +++ b/sdk/python/pulumi_google_native/workflows/v1beta/workflow.py @@ -220,7 +220,7 @@ def _internal_init(__self__, __props__.__dict__["revision_id"] = None __props__.__dict__["state"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workflow_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workflowId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Workflow, __self__).__init__( 'google-native:workflows/v1beta:Workflow', diff --git a/sdk/python/pulumi_google_native/workloadmanager/v1/evaluation.py b/sdk/python/pulumi_google_native/workloadmanager/v1/evaluation.py index dc61a61b5e..70d2838914 100644 --- a/sdk/python/pulumi_google_native/workloadmanager/v1/evaluation.py +++ b/sdk/python/pulumi_google_native/workloadmanager/v1/evaluation.py @@ -285,7 +285,7 @@ def _internal_init(__self__, __props__.__dict__["resource_status"] = None __props__.__dict__["rule_versions"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["evaluation_id", "location", "project"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["evaluationId", "location", "project"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Evaluation, __self__).__init__( 'google-native:workloadmanager/v1:Evaluation', diff --git a/sdk/python/pulumi_google_native/workstations/v1/workstation.py b/sdk/python/pulumi_google_native/workstations/v1/workstation.py index 67c7af9e1d..d20ba14521 100644 --- a/sdk/python/pulumi_google_native/workstations/v1/workstation.py +++ b/sdk/python/pulumi_google_native/workstations/v1/workstation.py @@ -275,7 +275,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workstation_cluster_id", "workstation_config_id", "workstation_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workstationClusterId", "workstationConfigId", "workstationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Workstation, __self__).__init__( 'google-native:workstations/v1:Workstation', diff --git a/sdk/python/pulumi_google_native/workstations/v1/workstation_cluster.py b/sdk/python/pulumi_google_native/workstations/v1/workstation_cluster.py index 10bfbaf775..331fddbfc0 100644 --- a/sdk/python/pulumi_google_native/workstations/v1/workstation_cluster.py +++ b/sdk/python/pulumi_google_native/workstations/v1/workstation_cluster.py @@ -285,7 +285,7 @@ def _internal_init(__self__, __props__.__dict__["reconciling"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workstation_cluster_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workstationClusterId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(WorkstationCluster, __self__).__init__( 'google-native:workstations/v1:WorkstationCluster', diff --git a/sdk/python/pulumi_google_native/workstations/v1/workstation_cluster_workstation_config_iam_policy.py b/sdk/python/pulumi_google_native/workstations/v1/workstation_cluster_workstation_config_iam_policy.py index 2de0f84799..2161e37248 100644 --- a/sdk/python/pulumi_google_native/workstations/v1/workstation_cluster_workstation_config_iam_policy.py +++ b/sdk/python/pulumi_google_native/workstations/v1/workstation_cluster_workstation_config_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, if workstation_config_id is None and not opts.urn: raise TypeError("Missing required property 'workstation_config_id'") __props__.__dict__["workstation_config_id"] = workstation_config_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workstation_cluster_id", "workstation_config_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workstationClusterId", "workstationConfigId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(WorkstationClusterWorkstationConfigIamPolicy, __self__).__init__( 'google-native:workstations/v1:WorkstationClusterWorkstationConfigIamPolicy', diff --git a/sdk/python/pulumi_google_native/workstations/v1/workstation_cluster_workstation_config_workstation_iam_policy.py b/sdk/python/pulumi_google_native/workstations/v1/workstation_cluster_workstation_config_workstation_iam_policy.py index 23139dcfd3..0cd4e8d905 100644 --- a/sdk/python/pulumi_google_native/workstations/v1/workstation_cluster_workstation_config_workstation_iam_policy.py +++ b/sdk/python/pulumi_google_native/workstations/v1/workstation_cluster_workstation_config_workstation_iam_policy.py @@ -249,7 +249,7 @@ def _internal_init(__self__, if workstation_id is None and not opts.urn: raise TypeError("Missing required property 'workstation_id'") __props__.__dict__["workstation_id"] = workstation_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workstation_cluster_id", "workstation_config_id", "workstation_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workstationClusterId", "workstationConfigId", "workstationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(WorkstationClusterWorkstationConfigWorkstationIamPolicy, __self__).__init__( 'google-native:workstations/v1:WorkstationClusterWorkstationConfigWorkstationIamPolicy', diff --git a/sdk/python/pulumi_google_native/workstations/v1/workstation_config.py b/sdk/python/pulumi_google_native/workstations/v1/workstation_config.py index 939ac4a854..4f808a3380 100644 --- a/sdk/python/pulumi_google_native/workstations/v1/workstation_config.py +++ b/sdk/python/pulumi_google_native/workstations/v1/workstation_config.py @@ -401,7 +401,7 @@ def _internal_init(__self__, __props__.__dict__["reconciling"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workstation_cluster_id", "workstation_config_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workstationClusterId", "workstationConfigId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(WorkstationConfig, __self__).__init__( 'google-native:workstations/v1:WorkstationConfig', diff --git a/sdk/python/pulumi_google_native/workstations/v1beta/workstation.py b/sdk/python/pulumi_google_native/workstations/v1beta/workstation.py index d8c84c0c8a..88662067ba 100644 --- a/sdk/python/pulumi_google_native/workstations/v1beta/workstation.py +++ b/sdk/python/pulumi_google_native/workstations/v1beta/workstation.py @@ -275,7 +275,7 @@ def _internal_init(__self__, __props__.__dict__["state"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workstation_cluster_id", "workstation_config_id", "workstation_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workstationClusterId", "workstationConfigId", "workstationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(Workstation, __self__).__init__( 'google-native:workstations/v1beta:Workstation', diff --git a/sdk/python/pulumi_google_native/workstations/v1beta/workstation_cluster.py b/sdk/python/pulumi_google_native/workstations/v1beta/workstation_cluster.py index 75c95560aa..ea498f52e6 100644 --- a/sdk/python/pulumi_google_native/workstations/v1beta/workstation_cluster.py +++ b/sdk/python/pulumi_google_native/workstations/v1beta/workstation_cluster.py @@ -305,7 +305,7 @@ def _internal_init(__self__, __props__.__dict__["reconciling"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workstation_cluster_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workstationClusterId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(WorkstationCluster, __self__).__init__( 'google-native:workstations/v1beta:WorkstationCluster', diff --git a/sdk/python/pulumi_google_native/workstations/v1beta/workstation_cluster_workstation_config_iam_policy.py b/sdk/python/pulumi_google_native/workstations/v1beta/workstation_cluster_workstation_config_iam_policy.py index e438215ca0..a66742e99b 100644 --- a/sdk/python/pulumi_google_native/workstations/v1beta/workstation_cluster_workstation_config_iam_policy.py +++ b/sdk/python/pulumi_google_native/workstations/v1beta/workstation_cluster_workstation_config_iam_policy.py @@ -233,7 +233,7 @@ def _internal_init(__self__, if workstation_config_id is None and not opts.urn: raise TypeError("Missing required property 'workstation_config_id'") __props__.__dict__["workstation_config_id"] = workstation_config_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workstation_cluster_id", "workstation_config_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workstationClusterId", "workstationConfigId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(WorkstationClusterWorkstationConfigIamPolicy, __self__).__init__( 'google-native:workstations/v1beta:WorkstationClusterWorkstationConfigIamPolicy', diff --git a/sdk/python/pulumi_google_native/workstations/v1beta/workstation_cluster_workstation_config_workstation_iam_policy.py b/sdk/python/pulumi_google_native/workstations/v1beta/workstation_cluster_workstation_config_workstation_iam_policy.py index dc7998bed6..e48dc34228 100644 --- a/sdk/python/pulumi_google_native/workstations/v1beta/workstation_cluster_workstation_config_workstation_iam_policy.py +++ b/sdk/python/pulumi_google_native/workstations/v1beta/workstation_cluster_workstation_config_workstation_iam_policy.py @@ -249,7 +249,7 @@ def _internal_init(__self__, if workstation_id is None and not opts.urn: raise TypeError("Missing required property 'workstation_id'") __props__.__dict__["workstation_id"] = workstation_id - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workstation_cluster_id", "workstation_config_id", "workstation_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workstationClusterId", "workstationConfigId", "workstationId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(WorkstationClusterWorkstationConfigWorkstationIamPolicy, __self__).__init__( 'google-native:workstations/v1beta:WorkstationClusterWorkstationConfigWorkstationIamPolicy', diff --git a/sdk/python/pulumi_google_native/workstations/v1beta/workstation_config.py b/sdk/python/pulumi_google_native/workstations/v1beta/workstation_config.py index 0df836c059..209549307b 100644 --- a/sdk/python/pulumi_google_native/workstations/v1beta/workstation_config.py +++ b/sdk/python/pulumi_google_native/workstations/v1beta/workstation_config.py @@ -461,7 +461,7 @@ def _internal_init(__self__, __props__.__dict__["reconciling"] = None __props__.__dict__["uid"] = None __props__.__dict__["update_time"] = None - replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workstation_cluster_id", "workstation_config_id"]) + replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["location", "project", "workstationClusterId", "workstationConfigId"]) opts = pulumi.ResourceOptions.merge(opts, replace_on_changes) super(WorkstationConfig, __self__).__init__( 'google-native:workstations/v1beta:WorkstationConfig', diff --git a/sdk/python/pyproject.toml b/sdk/python/pyproject.toml index 78d5f95877..056b53b12d 100644 --- a/sdk/python/pyproject.toml +++ b/sdk/python/pyproject.toml @@ -4,8 +4,8 @@ dependencies = ["parver>=0.2.1", "pulumi>=3.0.0,<4.0.0", "semver>=2.8.1"] keywords = ["pulumi", "google cloud", "category/cloud", "kind/native"] readme = "README.md" - requires-python = ">=3.7" - version = "0.0.0" + requires-python = ">=3.8" + version = "0.0.1a0+dev" [project.license] text = "Apache-2.0" [project.urls]