# Copyright 2015 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. require 'date' require 'google/apis/core/base_service' require 'google/apis/core/json_representation' require 'google/apis/core/hashable' require 'google/apis/errors' module Google module Apis module AdminReportsV1 # JSON template for a collection of activites. class Activities include Google::Apis::Core::Hashable # ETag of the resource. # Corresponds to the JSON property `etag` # @return [String] attr_accessor :etag # Each record in read response. # Corresponds to the JSON property `items` # @return [Array] attr_accessor :items # Kind of list response this is. # Corresponds to the JSON property `kind` # @return [String] attr_accessor :kind # Token for retrieving the next page # Corresponds to the JSON property `nextPageToken` # @return [String] attr_accessor :next_page_token def initialize(**args) update!(**args) end # Update properties of this object def update!(**args) @etag = args[:etag] unless args[:etag].nil? @items = args[:items] unless args[:items].nil? @kind = args[:kind] unless args[:kind].nil? @next_page_token = args[:next_page_token] unless args[:next_page_token].nil? end end # JSON template for the activity resource. class Activity include Google::Apis::Core::Hashable # User doing the action. # Corresponds to the JSON property `actor` # @return [Google::Apis::AdminReportsV1::Activity::Actor] attr_accessor :actor # ETag of the entry. # Corresponds to the JSON property `etag` # @return [String] attr_accessor :etag # Activity events. # Corresponds to the JSON property `events` # @return [Array] attr_accessor :events # Unique identifier for each activity record. # Corresponds to the JSON property `id` # @return [Google::Apis::AdminReportsV1::Activity::Id] attr_accessor :id # IP Address of the user doing the action. # Corresponds to the JSON property `ipAddress` # @return [String] attr_accessor :ip_address # Kind of resource this is. # Corresponds to the JSON property `kind` # @return [String] attr_accessor :kind # Domain of source customer. # Corresponds to the JSON property `ownerDomain` # @return [String] attr_accessor :owner_domain def initialize(**args) update!(**args) end # Update properties of this object def update!(**args) @actor = args[:actor] unless args[:actor].nil? @etag = args[:etag] unless args[:etag].nil? @events = args[:events] unless args[:events].nil? @id = args[:id] unless args[:id].nil? @ip_address = args[:ip_address] unless args[:ip_address].nil? @kind = args[:kind] unless args[:kind].nil? @owner_domain = args[:owner_domain] unless args[:owner_domain].nil? end # User doing the action. class Actor include Google::Apis::Core::Hashable # User or OAuth 2LO request. # Corresponds to the JSON property `callerType` # @return [String] attr_accessor :caller_type # Email address of the user. # Corresponds to the JSON property `email` # @return [String] attr_accessor :email # For OAuth 2LO API requests, consumer_key of the requestor. # Corresponds to the JSON property `key` # @return [String] attr_accessor :key # Obfuscated user id of the user. # Corresponds to the JSON property `profileId` # @return [String] attr_accessor :profile_id def initialize(**args) update!(**args) end # Update properties of this object def update!(**args) @caller_type = args[:caller_type] unless args[:caller_type].nil? @email = args[:email] unless args[:email].nil? @key = args[:key] unless args[:key].nil? @profile_id = args[:profile_id] unless args[:profile_id].nil? end end # class Event include Google::Apis::Core::Hashable # Name of event. # Corresponds to the JSON property `name` # @return [String] attr_accessor :name # Parameter value pairs for various applications. # Corresponds to the JSON property `parameters` # @return [Array] attr_accessor :parameters # Type of event. # Corresponds to the JSON property `type` # @return [String] attr_accessor :type def initialize(**args) update!(**args) end # Update properties of this object def update!(**args) @name = args[:name] unless args[:name].nil? @parameters = args[:parameters] unless args[:parameters].nil? @type = args[:type] unless args[:type].nil? end # class Parameter include Google::Apis::Core::Hashable # Boolean value of the parameter. # Corresponds to the JSON property `boolValue` # @return [Boolean] attr_accessor :bool_value alias_method :bool_value?, :bool_value # Integral value of the parameter. # Corresponds to the JSON property `intValue` # @return [String] attr_accessor :int_value # Multi-int value of the parameter. # Corresponds to the JSON property `multiIntValue` # @return [Array] attr_accessor :multi_int_value # Multi-string value of the parameter. # Corresponds to the JSON property `multiValue` # @return [Array] attr_accessor :multi_value # The name of the parameter. # Corresponds to the JSON property `name` # @return [String] attr_accessor :name # String value of the parameter. # Corresponds to the JSON property `value` # @return [String] attr_accessor :value def initialize(**args) update!(**args) end # Update properties of this object def update!(**args) @bool_value = args[:bool_value] unless args[:bool_value].nil? @int_value = args[:int_value] unless args[:int_value].nil? @multi_int_value = args[:multi_int_value] unless args[:multi_int_value].nil? @multi_value = args[:multi_value] unless args[:multi_value].nil? @name = args[:name] unless args[:name].nil? @value = args[:value] unless args[:value].nil? end end end # Unique identifier for each activity record. class Id include Google::Apis::Core::Hashable # Application name to which the event belongs. # Corresponds to the JSON property `applicationName` # @return [String] attr_accessor :application_name # Obfuscated customer ID of the source customer. # Corresponds to the JSON property `customerId` # @return [String] attr_accessor :customer_id # Time of occurrence of the activity. # Corresponds to the JSON property `time` # @return [DateTime] attr_accessor :time # Unique qualifier if multiple events have the same time. # Corresponds to the JSON property `uniqueQualifier` # @return [String] attr_accessor :unique_qualifier def initialize(**args) update!(**args) end # Update properties of this object def update!(**args) @application_name = args[:application_name] unless args[:application_name].nil? @customer_id = args[:customer_id] unless args[:customer_id].nil? @time = args[:time] unless args[:time].nil? @unique_qualifier = args[:unique_qualifier] unless args[:unique_qualifier].nil? end end end # An notification channel used to watch for resource changes. class Channel include Google::Apis::Core::Hashable # The address where notifications are delivered for this channel. # Corresponds to the JSON property `address` # @return [String] attr_accessor :address # Date and time of notification channel expiration, expressed as a Unix # timestamp, in milliseconds. Optional. # Corresponds to the JSON property `expiration` # @return [String] attr_accessor :expiration # A UUID or similar unique string that identifies this channel. # Corresponds to the JSON property `id` # @return [String] attr_accessor :id # Identifies this as a notification channel used to watch for changes to a # resource. Value: the fixed string "api#channel". # Corresponds to the JSON property `kind` # @return [String] attr_accessor :kind # Additional parameters controlling delivery channel behavior. Optional. # Corresponds to the JSON property `params` # @return [Hash] attr_accessor :params # A Boolean value to indicate whether payload is wanted. Optional. # Corresponds to the JSON property `payload` # @return [Boolean] attr_accessor :payload alias_method :payload?, :payload # An opaque ID that identifies the resource being watched on this channel. # Stable across different API versions. # Corresponds to the JSON property `resourceId` # @return [String] attr_accessor :resource_id # A version-specific identifier for the watched resource. # Corresponds to the JSON property `resourceUri` # @return [String] attr_accessor :resource_uri # An arbitrary string delivered to the target address with each notification # delivered over this channel. Optional. # Corresponds to the JSON property `token` # @return [String] attr_accessor :token # The type of delivery mechanism used for this channel. # Corresponds to the JSON property `type` # @return [String] attr_accessor :type def initialize(**args) update!(**args) end # Update properties of this object def update!(**args) @address = args[:address] unless args[:address].nil? @expiration = args[:expiration] unless args[:expiration].nil? @id = args[:id] unless args[:id].nil? @kind = args[:kind] unless args[:kind].nil? @params = args[:params] unless args[:params].nil? @payload = args[:payload] unless args[:payload].nil? @resource_id = args[:resource_id] unless args[:resource_id].nil? @resource_uri = args[:resource_uri] unless args[:resource_uri].nil? @token = args[:token] unless args[:token].nil? @type = args[:type] unless args[:type].nil? end end # JSON template for a usage report. class UsageReport include Google::Apis::Core::Hashable # The date to which the record belongs. # Corresponds to the JSON property `date` # @return [String] attr_accessor :date # Information about the type of the item. # Corresponds to the JSON property `entity` # @return [Google::Apis::AdminReportsV1::UsageReport::Entity] attr_accessor :entity # ETag of the resource. # Corresponds to the JSON property `etag` # @return [String] attr_accessor :etag # The kind of object. # Corresponds to the JSON property `kind` # @return [String] attr_accessor :kind # Parameter value pairs for various applications. # Corresponds to the JSON property `parameters` # @return [Array] attr_accessor :parameters def initialize(**args) update!(**args) end # Update properties of this object def update!(**args) @date = args[:date] unless args[:date].nil? @entity = args[:entity] unless args[:entity].nil? @etag = args[:etag] unless args[:etag].nil? @kind = args[:kind] unless args[:kind].nil? @parameters = args[:parameters] unless args[:parameters].nil? end # Information about the type of the item. class Entity include Google::Apis::Core::Hashable # Obfuscated customer id for the record. # Corresponds to the JSON property `customerId` # @return [String] attr_accessor :customer_id # Obfuscated user id for the record. # Corresponds to the JSON property `profileId` # @return [String] attr_accessor :profile_id # The type of item, can be a customer or user. # Corresponds to the JSON property `type` # @return [String] attr_accessor :type # user's email. # Corresponds to the JSON property `userEmail` # @return [String] attr_accessor :user_email def initialize(**args) update!(**args) end # Update properties of this object def update!(**args) @customer_id = args[:customer_id] unless args[:customer_id].nil? @profile_id = args[:profile_id] unless args[:profile_id].nil? @type = args[:type] unless args[:type].nil? @user_email = args[:user_email] unless args[:user_email].nil? end end # class Parameter include Google::Apis::Core::Hashable # Boolean value of the parameter. # Corresponds to the JSON property `boolValue` # @return [Boolean] attr_accessor :bool_value alias_method :bool_value?, :bool_value # RFC 3339 formatted value of the parameter. # Corresponds to the JSON property `datetimeValue` # @return [DateTime] attr_accessor :datetime_value # Integral value of the parameter. # Corresponds to the JSON property `intValue` # @return [String] attr_accessor :int_value # Nested message value of the parameter. # Corresponds to the JSON property `msgValue` # @return [Array>] attr_accessor :msg_value # The name of the parameter. # Corresponds to the JSON property `name` # @return [String] attr_accessor :name # String value of the parameter. # Corresponds to the JSON property `stringValue` # @return [String] attr_accessor :string_value def initialize(**args) update!(**args) end # Update properties of this object def update!(**args) @bool_value = args[:bool_value] unless args[:bool_value].nil? @datetime_value = args[:datetime_value] unless args[:datetime_value].nil? @int_value = args[:int_value] unless args[:int_value].nil? @msg_value = args[:msg_value] unless args[:msg_value].nil? @name = args[:name] unless args[:name].nil? @string_value = args[:string_value] unless args[:string_value].nil? end end end # JSON template for a collection of usage reports. class UsageReports include Google::Apis::Core::Hashable # ETag of the resource. # Corresponds to the JSON property `etag` # @return [String] attr_accessor :etag # The kind of object. # Corresponds to the JSON property `kind` # @return [String] attr_accessor :kind # Token for retrieving the next page # Corresponds to the JSON property `nextPageToken` # @return [String] attr_accessor :next_page_token # Various application parameter records. # Corresponds to the JSON property `usageReports` # @return [Array] attr_accessor :usage_reports # Warnings if any. # Corresponds to the JSON property `warnings` # @return [Array] attr_accessor :warnings def initialize(**args) update!(**args) end # Update properties of this object def update!(**args) @etag = args[:etag] unless args[:etag].nil? @kind = args[:kind] unless args[:kind].nil? @next_page_token = args[:next_page_token] unless args[:next_page_token].nil? @usage_reports = args[:usage_reports] unless args[:usage_reports].nil? @warnings = args[:warnings] unless args[:warnings].nil? end # class Warning include Google::Apis::Core::Hashable # Machine readable code / warning type. # Corresponds to the JSON property `code` # @return [String] attr_accessor :code # Key-Value pairs to give detailed information on the warning. # Corresponds to the JSON property `data` # @return [Array] attr_accessor :data # Human readable message for the warning. # Corresponds to the JSON property `message` # @return [String] attr_accessor :message def initialize(**args) update!(**args) end # Update properties of this object def update!(**args) @code = args[:code] unless args[:code].nil? @data = args[:data] unless args[:data].nil? @message = args[:message] unless args[:message].nil? end # class Datum include Google::Apis::Core::Hashable # Key associated with a key-value pair to give detailed information on the # warning. # Corresponds to the JSON property `key` # @return [String] attr_accessor :key # Value associated with a key-value pair to give detailed information on the # warning. # Corresponds to the JSON property `value` # @return [String] attr_accessor :value def initialize(**args) update!(**args) end # Update properties of this object def update!(**args) @key = args[:key] unless args[:key].nil? @value = args[:value] unless args[:value].nil? end end end end end end end