All Downloads are FREE. Search and download functionalities are using the official Maven repository.

target.apidocs.com.google.api.services.cloudshell.v1.CloudShellRequestInitializer.html Maven / Gradle / Ivy







CloudShellRequestInitializer (Cloud Shell API v1-rev20210320-1.31.0)












com.google.api.services.cloudshell.v1

Class CloudShellRequestInitializer

  • All Implemented Interfaces:
    GoogleClientRequestInitializer


    public class CloudShellRequestInitializer
    extends CommonGoogleJsonClientRequestInitializer
    CloudShell request initializer for setting properties like key and userIp.

    The simplest usage is to use it to set the key parameter:

      public static final GoogleClientRequestInitializer KEY_INITIALIZER =
          new CloudShellRequestInitializer(KEY);
     

    There is also a constructor to set both the key and userIp parameters:

      public static final GoogleClientRequestInitializer INITIALIZER =
          new CloudShellRequestInitializer(KEY, USER_IP);
     

    If you want to implement custom logic, extend it like this:

      public static class MyRequestInitializer extends CloudShellRequestInitializer {
    
         @Override
        public void initializeCloudShellRequest(CloudShellRequest <? > request)
            throws IOException {
          // custom logic
        }
      }
     

    Finally, to set the key and userIp parameters and insert custom logic, extend it like this:

      public static class MyRequestInitializer2 extends CloudShellRequestInitializer {
    
        public MyKeyRequestInitializer() {
          super(KEY, USER_IP);
        }
    
         @Override
        public void initializeCloudShellRequest(CloudShellRequest <? > request)
            throws IOException {
          // custom logic
        }
      }
     

    Subclasses should be thread-safe.

    Since:
    1.12

Copyright © 2011–2021 Google. All rights reserved.





© 2015 - 2025 Weber Informatics LLC | Privacy Policy