├── LICENSE ├── README.md ├── googleacceleratedmobilepageurlv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── acceleratedmobilepageurl_functions.R │ └── acceleratedmobilepageurl_objects.R ├── README.md ├── googleacceleratedmobilepageurlv1.auto.Rproj └── man │ ├── AmpUrl.Rd │ ├── AmpUrlError.Rd │ ├── BatchGetAmpUrlsRequest.Rd │ ├── BatchGetAmpUrlsResponse.Rd │ ├── acceleratedmobilepageurl_googleAuthR.Rd │ ├── ampUrls.batchGet.Rd │ ├── is.NullOb.Rd │ └── rmNullObs.Rd ├── googleadexchangebuyer2v2beta1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── adexchangebuyer2_functions.R │ └── adexchangebuyer2_objects.R ├── README.md ├── googleadexchangebuyer2v2beta1.auto.Rproj └── man │ ├── AddDealAssociationRequest.Rd │ ├── AppContext.Rd │ ├── AuctionContext.Rd │ ├── Client.Rd │ ├── ClientUser.Rd │ ├── ClientUserInvitation.Rd │ ├── Correction.Rd │ ├── Creative.Rd │ ├── CreativeDealAssociation.Rd │ ├── Date.Rd │ ├── Disapproval.Rd │ ├── Empty.Rd │ ├── FilteringStats.Rd │ ├── HtmlContent.Rd │ ├── Image.Rd │ ├── ListClientUserInvitationsResponse.Rd │ ├── ListClientUsersResponse.Rd │ ├── ListClientsResponse.Rd │ ├── ListCreativesResponse.Rd │ ├── ListDealAssociationsResponse.Rd │ ├── LocationContext.Rd │ ├── NativeContent.Rd │ ├── PlatformContext.Rd │ ├── Reason.Rd │ ├── RemoveDealAssociationRequest.Rd │ ├── SecurityContext.Rd │ ├── ServingContext.Rd │ ├── ServingRestriction.Rd │ ├── StopWatchingCreativeRequest.Rd │ ├── VideoContent.Rd │ ├── WatchCreativeRequest.Rd │ ├── accounts.clients.create.Rd │ ├── accounts.clients.get.Rd │ ├── accounts.clients.list.Rd │ ├── accounts.clients.update.Rd │ ├── accounts.creatives.create.Rd │ ├── accounts.creatives.get.Rd │ ├── accounts.creatives.list.Rd │ ├── accounts.creatives.stopWatching.Rd │ ├── accounts.creatives.update.Rd │ ├── accounts.creatives.watch.Rd │ ├── adexchangebuyer2_googleAuthR.Rd │ ├── is.NullOb.Rd │ └── rmNullObs.Rd ├── googleadexchangebuyerv12.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── adexchangebuyer_functions.R │ └── adexchangebuyer_objects.R ├── README.md ├── googleadexchangebuyerv12.auto.Rproj └── man │ ├── Account.Rd │ ├── Account.bidderLocation.Rd │ ├── AccountsList.Rd │ ├── Creative.Rd │ ├── Creative.corrections.Rd │ ├── Creative.disapprovalReasons.Rd │ ├── Creative.filteringReasons.Rd │ ├── Creative.filteringReasons.reasons.Rd │ ├── CreativesList.Rd │ ├── accounts.get.Rd │ ├── accounts.list.Rd │ ├── accounts.patch.Rd │ ├── accounts.update.Rd │ ├── adexchangebuyer_googleAuthR.Rd │ ├── creatives.get.Rd │ ├── creatives.insert.Rd │ ├── creatives.list.Rd │ ├── is.NullOb.Rd │ └── rmNullObs.Rd ├── googleadexchangebuyerv13.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── adexchangebuyer_functions.R │ └── adexchangebuyer_objects.R ├── README.md ├── googleadexchangebuyerv13.auto.Rproj └── man │ ├── Account.Rd │ ├── Account.bidderLocation.Rd │ ├── AccountsList.Rd │ ├── BillingInfo.Rd │ ├── BillingInfoList.Rd │ ├── Budget.Rd │ ├── Creative.Rd │ ├── Creative.corrections.Rd │ ├── Creative.disapprovalReasons.Rd │ ├── Creative.filteringReasons.Rd │ ├── Creative.filteringReasons.reasons.Rd │ ├── Creative.nativeAd.Rd │ ├── Creative.nativeAd.appIcon.Rd │ ├── Creative.nativeAd.image.Rd │ ├── Creative.nativeAd.logo.Rd │ ├── CreativesList.Rd │ ├── DirectDeal.Rd │ ├── DirectDealsList.Rd │ ├── PerformanceReport.Rd │ ├── PerformanceReportList.Rd │ ├── PretargetingConfig.Rd │ ├── PretargetingConfig.dimensions.Rd │ ├── PretargetingConfig.excludedPlacements.Rd │ ├── PretargetingConfig.placements.Rd │ ├── PretargetingConfigList.Rd │ ├── accounts.get.Rd │ ├── accounts.list.Rd │ ├── accounts.patch.Rd │ ├── accounts.update.Rd │ ├── adexchangebuyer_googleAuthR.Rd │ ├── billingInfo.get.Rd │ ├── billingInfo.list.Rd │ ├── budget.get.Rd │ ├── budget.patch.Rd │ ├── budget.update.Rd │ ├── creatives.get.Rd │ ├── creatives.insert.Rd │ ├── creatives.list.Rd │ ├── directDeals.get.Rd │ ├── directDeals.list.Rd │ ├── is.NullOb.Rd │ ├── performanceReport.list.Rd │ ├── pretargetingConfig.delete.Rd │ ├── pretargetingConfig.get.Rd │ ├── pretargetingConfig.insert.Rd │ ├── pretargetingConfig.list.Rd │ ├── pretargetingConfig.patch.Rd │ ├── pretargetingConfig.update.Rd │ └── rmNullObs.Rd ├── googleadexchangebuyerv14.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── adexchangebuyer_functions.R │ └── adexchangebuyer_objects.R ├── README.md ├── googleadexchangebuyerv14.auto.Rproj └── man │ ├── Account.Rd │ ├── Account.bidderLocation.Rd │ ├── AccountsList.Rd │ ├── AddOrderDealsRequest.Rd │ ├── AddOrderDealsResponse.Rd │ ├── AddOrderNotesRequest.Rd │ ├── AddOrderNotesResponse.Rd │ ├── BillingInfo.Rd │ ├── BillingInfoList.Rd │ ├── Budget.Rd │ ├── Buyer.Rd │ ├── ContactInformation.Rd │ ├── CreateOrdersRequest.Rd │ ├── CreateOrdersResponse.Rd │ ├── Creative.Rd │ ├── Creative.corrections.Rd │ ├── Creative.corrections.contexts.Rd │ ├── Creative.filteringReasons.Rd │ ├── Creative.filteringReasons.reasons.Rd │ ├── Creative.nativeAd.Rd │ ├── Creative.nativeAd.appIcon.Rd │ ├── Creative.nativeAd.image.Rd │ ├── Creative.nativeAd.logo.Rd │ ├── Creative.servingRestrictions.Rd │ ├── Creative.servingRestrictions.contexts.Rd │ ├── Creative.servingRestrictions.disapprovalReasons.Rd │ ├── CreativeDealIds.Rd │ ├── CreativeDealIds.dealStatuses.Rd │ ├── CreativesList.Rd │ ├── DealServingMetadata.Rd │ ├── DealServingMetadataDealPauseStatus.Rd │ ├── DealTerms.Rd │ ├── DealTermsGuaranteedFixedPriceTerms.Rd │ ├── DealTermsGuaranteedFixedPriceTermsBillingInfo.Rd │ ├── DealTermsNonGuaranteedAuctionTerms.Rd │ ├── DealTermsNonGuaranteedFixedPriceTerms.Rd │ ├── DealTermsRubiconNonGuaranteedTerms.Rd │ ├── DeleteOrderDealsRequest.Rd │ ├── DeleteOrderDealsResponse.Rd │ ├── DeliveryControl.Rd │ ├── DeliveryControlFrequencyCap.Rd │ ├── Dimension.Rd │ ├── DimensionDimensionValue.Rd │ ├── EditAllOrderDealsRequest.Rd │ ├── EditAllOrderDealsResponse.Rd │ ├── GetOffersResponse.Rd │ ├── GetOrderDealsResponse.Rd │ ├── GetOrderNotesResponse.Rd │ ├── GetOrdersResponse.Rd │ ├── GetPublisherProfilesByAccountIdResponse.Rd │ ├── MarketplaceDeal.Rd │ ├── MarketplaceDealParty.Rd │ ├── MarketplaceLabel.Rd │ ├── MarketplaceNote.Rd │ ├── PerformanceReport.Rd │ ├── PerformanceReportList.Rd │ ├── PretargetingConfig.Rd │ ├── PretargetingConfig.dimensions.Rd │ ├── PretargetingConfig.excludedPlacements.Rd │ ├── PretargetingConfig.placements.Rd │ ├── PretargetingConfig.videoPlayerSizes.Rd │ ├── PretargetingConfigList.Rd │ ├── Price.Rd │ ├── PricePerBuyer.Rd │ ├── PrivateData.Rd │ ├── Product.Rd │ ├── Proposal.Rd │ ├── PublisherProfileApiProto.Rd │ ├── PublisherProvidedForecast.Rd │ ├── Seller.Rd │ ├── SharedTargeting.Rd │ ├── TargetingValue.Rd │ ├── TargetingValueCreativeSize.Rd │ ├── TargetingValueDayPartTargeting.Rd │ ├── TargetingValueDayPartTargetingDayPart.Rd │ ├── TargetingValueSize.Rd │ ├── UpdatePrivateAuctionProposalRequest.Rd │ ├── accounts.get.Rd │ ├── accounts.list.Rd │ ├── accounts.patch.Rd │ ├── accounts.update.Rd │ ├── adexchangebuyer_googleAuthR.Rd │ ├── billingInfo.get.Rd │ ├── billingInfo.list.Rd │ ├── budget.get.Rd │ ├── budget.patch.Rd │ ├── budget.update.Rd │ ├── creatives.addDeal.Rd │ ├── creatives.get.Rd │ ├── creatives.insert.Rd │ ├── creatives.list.Rd │ ├── creatives.listDeals.Rd │ ├── creatives.removeDeal.Rd │ ├── is.NullOb.Rd │ ├── marketplacedeals.delete.Rd │ ├── marketplacedeals.insert.Rd │ ├── marketplacedeals.list.Rd │ ├── marketplacedeals.update.Rd │ ├── marketplacenotes.insert.Rd │ ├── marketplacenotes.list.Rd │ ├── marketplaceprivateauction.updateproposal.Rd │ ├── performanceReport.list.Rd │ ├── pretargetingConfig.delete.Rd │ ├── pretargetingConfig.get.Rd │ ├── pretargetingConfig.insert.Rd │ ├── pretargetingConfig.list.Rd │ ├── pretargetingConfig.patch.Rd │ ├── pretargetingConfig.update.Rd │ ├── products.get.Rd │ ├── products.search.Rd │ ├── proposals.get.Rd │ ├── proposals.insert.Rd │ ├── proposals.patch.Rd │ ├── proposals.search.Rd │ ├── proposals.setupcomplete.Rd │ ├── proposals.update.Rd │ ├── pubprofiles.list.Rd │ └── rmNullObs.Rd ├── googleadexchangesellerv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── adexchangeseller_functions.R │ └── adexchangeseller_objects.R ├── README.md ├── googleadexchangesellerv1.auto.Rproj └── man │ ├── AdClient.Rd │ ├── AdClients.Rd │ ├── AdUnit.Rd │ ├── AdUnits.Rd │ ├── CustomChannel.Rd │ ├── CustomChannel.targetingInfo.Rd │ ├── CustomChannels.Rd │ ├── Report.Rd │ ├── Report.headers.Rd │ ├── SavedReport.Rd │ ├── SavedReports.Rd │ ├── UrlChannel.Rd │ ├── UrlChannels.Rd │ ├── adclients.list.Rd │ ├── adexchangeseller_googleAuthR.Rd │ ├── adunits.get.Rd │ ├── adunits.list.Rd │ ├── customchannels.get.Rd │ ├── customchannels.list.Rd │ ├── is.NullOb.Rd │ ├── reports.generate.Rd │ ├── rmNullObs.Rd │ └── urlchannels.list.Rd ├── googleadexchangesellerv11.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── adexchangeseller_functions.R │ └── adexchangeseller_objects.R ├── README.md ├── googleadexchangesellerv11.auto.Rproj └── man │ ├── Account.Rd │ ├── AdClient.Rd │ ├── AdClients.Rd │ ├── AdUnit.Rd │ ├── AdUnits.Rd │ ├── Alert.Rd │ ├── Alerts.Rd │ ├── CustomChannel.Rd │ ├── CustomChannel.targetingInfo.Rd │ ├── CustomChannels.Rd │ ├── Metadata.Rd │ ├── PreferredDeal.Rd │ ├── PreferredDeals.Rd │ ├── Report.Rd │ ├── Report.headers.Rd │ ├── ReportingMetadataEntry.Rd │ ├── SavedReport.Rd │ ├── SavedReports.Rd │ ├── UrlChannel.Rd │ ├── UrlChannels.Rd │ ├── accounts.get.Rd │ ├── adclients.list.Rd │ ├── adexchangeseller_googleAuthR.Rd │ ├── adunits.get.Rd │ ├── adunits.list.Rd │ ├── alerts.list.Rd │ ├── customchannels.get.Rd │ ├── customchannels.list.Rd │ ├── is.NullOb.Rd │ ├── metadata.dimensions.list.Rd │ ├── metadata.metrics.list.Rd │ ├── preferreddeals.get.Rd │ ├── preferreddeals.list.Rd │ ├── reports.generate.Rd │ ├── rmNullObs.Rd │ └── urlchannels.list.Rd ├── googleadexchangesellerv20.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── adexchangeseller_functions.R │ └── adexchangeseller_objects.R ├── README.md ├── googleadexchangesellerv20.auto.Rproj └── man │ ├── Account.Rd │ ├── Accounts.Rd │ ├── AdClient.Rd │ ├── AdClients.Rd │ ├── Alert.Rd │ ├── Alerts.Rd │ ├── CustomChannel.Rd │ ├── CustomChannel.targetingInfo.Rd │ ├── CustomChannels.Rd │ ├── Metadata.Rd │ ├── PreferredDeal.Rd │ ├── PreferredDeals.Rd │ ├── Report.Rd │ ├── Report.headers.Rd │ ├── ReportingMetadataEntry.Rd │ ├── SavedReport.Rd │ ├── SavedReports.Rd │ ├── UrlChannel.Rd │ ├── UrlChannels.Rd │ ├── accounts.get.Rd │ ├── accounts.list.Rd │ ├── adexchangeseller_googleAuthR.Rd │ ├── is.NullOb.Rd │ └── rmNullObs.Rd ├── googleadmindatatransferv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── admin_functions.R │ └── admin_objects.R ├── README.md ├── googleadmindatatransferv1.auto.Rproj └── man │ ├── Application.Rd │ ├── ApplicationDataTransfer.Rd │ ├── ApplicationTransferParam.Rd │ ├── ApplicationsListResponse.Rd │ ├── DataTransfer.Rd │ ├── DataTransfersListResponse.Rd │ ├── admin_googleAuthR.Rd │ ├── datatransfer.applications.get.Rd │ ├── datatransfer.applications.list.Rd │ ├── datatransfer.transfers.get.Rd │ ├── datatransfer.transfers.insert.Rd │ ├── datatransfer.transfers.list.Rd │ ├── is.NullOb.Rd │ └── rmNullObs.Rd ├── googleadmindirectoryv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── admin_functions.R │ └── admin_objects.R ├── README.md ├── googleadmindirectoryv1.auto.Rproj └── man │ ├── Alias.Rd │ ├── Aliases.Rd │ ├── Asp.Rd │ ├── Asps.Rd │ ├── CalendarResource.Rd │ ├── CalendarResources.Rd │ ├── Channel.Rd │ ├── Channel.params.Rd │ ├── ChromeOsDevice.Rd │ ├── ChromeOsDevice.activeTimeRanges.Rd │ ├── ChromeOsDevice.recentUsers.Rd │ ├── ChromeOsDeviceAction.Rd │ ├── ChromeOsDevices.Rd │ ├── Customer.Rd │ ├── CustomerPostalAddress.Rd │ ├── DomainAlias.Rd │ ├── DomainAliases.Rd │ ├── Domains.Rd │ ├── Domains2.Rd │ ├── Group.Rd │ ├── Groups.Rd │ ├── Member.Rd │ ├── Members.Rd │ ├── MobileDevice.Rd │ ├── MobileDevice.applications.Rd │ ├── MobileDeviceAction.Rd │ ├── MobileDevices.Rd │ ├── Notification.Rd │ ├── Notifications.Rd │ ├── OrgUnit.Rd │ ├── OrgUnits.Rd │ ├── Privilege.Rd │ ├── Privileges.Rd │ ├── Role.Rd │ ├── Role.rolePrivileges.Rd │ ├── RoleAssignment.Rd │ ├── RoleAssignments.Rd │ ├── Roles.Rd │ ├── Schema.Rd │ ├── SchemaFieldSpec.Rd │ ├── SchemaFieldSpec.numericIndexingSpec.Rd │ ├── Schemas.Rd │ ├── Token.Rd │ ├── Tokens.Rd │ ├── User.Rd │ ├── User.customSchemas.Rd │ ├── UserAbout.Rd │ ├── UserAddress.Rd │ ├── UserCustomProperties.Rd │ ├── UserEmail.Rd │ ├── UserExternalId.Rd │ ├── UserIm.Rd │ ├── UserMakeAdmin.Rd │ ├── UserName.Rd │ ├── UserOrganization.Rd │ ├── UserPhone.Rd │ ├── UserPhoto.Rd │ ├── UserRelation.Rd │ ├── UserUndelete.Rd │ ├── UserWebsite.Rd │ ├── Users.Rd │ ├── VerificationCode.Rd │ ├── VerificationCodes.Rd │ ├── admin_googleAuthR.Rd │ ├── channels.stop.Rd │ ├── directory.asps.delete.Rd │ ├── directory.asps.get.Rd │ ├── directory.asps.list.Rd │ ├── directory.chromeosdevices.action.Rd │ ├── directory.chromeosdevices.get.Rd │ ├── directory.chromeosdevices.list.Rd │ ├── directory.chromeosdevices.patch.Rd │ ├── directory.chromeosdevices.update.Rd │ ├── directory.customers.get.Rd │ ├── directory.customers.patch.Rd │ ├── directory.customers.update.Rd │ ├── directory.domainAliases.delete.Rd │ ├── directory.domainAliases.get.Rd │ ├── directory.domainAliases.insert.Rd │ ├── directory.domainAliases.list.Rd │ ├── directory.domains.delete.Rd │ ├── directory.domains.get.Rd │ ├── directory.domains.insert.Rd │ ├── directory.domains.list.Rd │ ├── directory.groups.delete.Rd │ ├── directory.groups.get.Rd │ ├── directory.groups.insert.Rd │ ├── directory.groups.list.Rd │ ├── directory.groups.patch.Rd │ ├── directory.groups.update.Rd │ ├── directory.members.delete.Rd │ ├── directory.members.get.Rd │ ├── directory.members.insert.Rd │ ├── directory.members.list.Rd │ ├── directory.members.patch.Rd │ ├── directory.members.update.Rd │ ├── directory.mobiledevices.action.Rd │ ├── directory.mobiledevices.delete.Rd │ ├── directory.mobiledevices.get.Rd │ ├── directory.mobiledevices.list.Rd │ ├── directory.notifications.delete.Rd │ ├── directory.notifications.get.Rd │ ├── directory.notifications.list.Rd │ ├── directory.notifications.patch.Rd │ ├── directory.notifications.update.Rd │ ├── directory.orgunits.delete.Rd │ ├── directory.orgunits.get.Rd │ ├── directory.orgunits.insert.Rd │ ├── directory.orgunits.list.Rd │ ├── directory.orgunits.patch.Rd │ ├── directory.orgunits.update.Rd │ ├── directory.privileges.list.Rd │ ├── directory.resources.calendars.delete.Rd │ ├── directory.resources.calendars.get.Rd │ ├── directory.resources.calendars.insert.Rd │ ├── directory.resources.calendars.list.Rd │ ├── directory.resources.calendars.patch.Rd │ ├── directory.resources.calendars.update.Rd │ ├── directory.roleAssignments.delete.Rd │ ├── directory.roleAssignments.get.Rd │ ├── directory.roleAssignments.insert.Rd │ ├── directory.roleAssignments.list.Rd │ ├── directory.roles.delete.Rd │ ├── directory.roles.get.Rd │ ├── directory.roles.insert.Rd │ ├── directory.roles.list.Rd │ ├── directory.roles.patch.Rd │ ├── directory.roles.update.Rd │ ├── directory.schemas.delete.Rd │ ├── directory.schemas.get.Rd │ ├── directory.schemas.insert.Rd │ ├── directory.schemas.list.Rd │ ├── directory.schemas.patch.Rd │ ├── directory.schemas.update.Rd │ ├── directory.tokens.delete.Rd │ ├── directory.tokens.get.Rd │ ├── directory.tokens.list.Rd │ ├── directory.users.delete.Rd │ ├── directory.users.get.Rd │ ├── directory.users.insert.Rd │ ├── directory.users.list.Rd │ ├── directory.users.makeAdmin.Rd │ ├── directory.users.patch.Rd │ ├── directory.users.undelete.Rd │ ├── directory.users.update.Rd │ ├── directory.users.watch.Rd │ ├── directory.verificationCodes.generate.Rd │ ├── directory.verificationCodes.invalidate.Rd │ ├── directory.verificationCodes.list.Rd │ ├── is.NullOb.Rd │ └── rmNullObs.Rd ├── googleadminreportsv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── admin_functions.R │ └── admin_objects.R ├── README.md ├── googleadminreportsv1.auto.Rproj └── man │ ├── Activities.Rd │ ├── Activity.Rd │ ├── Activity.actor.Rd │ ├── Activity.events.Rd │ ├── Activity.events.parameters.Rd │ ├── Activity.id.Rd │ ├── Channel.Rd │ ├── Channel.params.Rd │ ├── UsageReport.Rd │ ├── UsageReport.entity.Rd │ ├── UsageReport.parameters.Rd │ ├── UsageReports.Rd │ ├── UsageReports.warnings.Rd │ ├── UsageReports.warnings.data.Rd │ ├── admin_googleAuthR.Rd │ ├── channels.stop.Rd │ ├── is.NullOb.Rd │ ├── reports.activities.list.Rd │ ├── reports.activities.watch.Rd │ ├── reports.customerUsageReports.get.Rd │ ├── reports.userUsageReport.get.Rd │ └── rmNullObs.Rd ├── googleadsensehostv41.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── adsensehost_functions.R │ └── adsensehost_objects.R ├── README.md ├── googleadsensehostv41.auto.Rproj └── man │ ├── Account.Rd │ ├── Accounts.Rd │ ├── AdClient.Rd │ ├── AdClients.Rd │ ├── AdCode.Rd │ ├── AdStyle.Rd │ ├── AdStyle.colors.Rd │ ├── AdStyle.font.Rd │ ├── AdUnit.Rd │ ├── AdUnit.contentAdsSettings.Rd │ ├── AdUnit.contentAdsSettings.backupOption.Rd │ ├── AdUnit.mobileContentAdsSettings.Rd │ ├── AdUnits.Rd │ ├── AssociationSession.Rd │ ├── CustomChannel.Rd │ ├── CustomChannels.Rd │ ├── Report.Rd │ ├── Report.headers.Rd │ ├── UrlChannel.Rd │ ├── UrlChannels.Rd │ ├── accounts.get.Rd │ ├── accounts.list.Rd │ ├── adclients.get.Rd │ ├── adclients.list.Rd │ ├── adsensehost_googleAuthR.Rd │ ├── associationsessions.start.Rd │ ├── associationsessions.verify.Rd │ ├── customchannels.delete.Rd │ ├── customchannels.get.Rd │ ├── customchannels.insert.Rd │ ├── customchannels.list.Rd │ ├── customchannels.patch.Rd │ ├── customchannels.update.Rd │ ├── is.NullOb.Rd │ ├── reports.generate.Rd │ ├── rmNullObs.Rd │ ├── urlchannels.delete.Rd │ ├── urlchannels.insert.Rd │ └── urlchannels.list.Rd ├── googleadsensev13.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── adsense_functions.R │ └── adsense_objects.R ├── README.md ├── googleadsensev13.auto.Rproj └── man │ ├── Account.Rd │ ├── Accounts.Rd │ ├── AdClient.Rd │ ├── AdClients.Rd │ ├── AdCode.Rd │ ├── AdStyle.Rd │ ├── AdStyle.colors.Rd │ ├── AdStyle.font.Rd │ ├── AdUnit.Rd │ ├── AdUnit.contentAdsSettings.Rd │ ├── AdUnit.contentAdsSettings.backupOption.Rd │ ├── AdUnit.feedAdsSettings.Rd │ ├── AdUnit.mobileContentAdsSettings.Rd │ ├── AdUnits.Rd │ ├── AdsenseReportsGenerateResponse.Rd │ ├── AdsenseReportsGenerateResponse.headers.Rd │ ├── Alert.Rd │ ├── Alerts.Rd │ ├── CustomChannel.Rd │ ├── CustomChannel.targetingInfo.Rd │ ├── CustomChannels.Rd │ ├── Metadata.Rd │ ├── ReportingMetadataEntry.Rd │ ├── SavedAdStyle.Rd │ ├── SavedAdStyles.Rd │ ├── SavedReport.Rd │ ├── SavedReports.Rd │ ├── UrlChannel.Rd │ ├── UrlChannels.Rd │ ├── accounts.get.Rd │ ├── accounts.list.Rd │ ├── adclients.list.Rd │ ├── adsense_googleAuthR.Rd │ ├── adunits.get.Rd │ ├── adunits.getAdCode.Rd │ ├── adunits.list.Rd │ ├── alerts.list.Rd │ ├── customchannels.get.Rd │ ├── customchannels.list.Rd │ ├── is.NullOb.Rd │ ├── metadata.dimensions.list.Rd │ ├── metadata.metrics.list.Rd │ ├── reports.generate.Rd │ ├── rmNullObs.Rd │ ├── savedadstyles.get.Rd │ ├── savedadstyles.list.Rd │ └── urlchannels.list.Rd ├── googleadsensev14.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── adsense_functions.R │ └── adsense_objects.R ├── README.md ├── googleadsensev14.auto.Rproj └── man │ ├── Account.Rd │ ├── Accounts.Rd │ ├── AdClient.Rd │ ├── AdClients.Rd │ ├── AdCode.Rd │ ├── AdStyle.Rd │ ├── AdStyle.colors.Rd │ ├── AdStyle.font.Rd │ ├── AdUnit.Rd │ ├── AdUnit.contentAdsSettings.Rd │ ├── AdUnit.contentAdsSettings.backupOption.Rd │ ├── AdUnit.feedAdsSettings.Rd │ ├── AdUnit.mobileContentAdsSettings.Rd │ ├── AdUnits.Rd │ ├── AdsenseReportsGenerateResponse.Rd │ ├── AdsenseReportsGenerateResponse.headers.Rd │ ├── Alert.Rd │ ├── Alerts.Rd │ ├── CustomChannel.Rd │ ├── CustomChannel.targetingInfo.Rd │ ├── CustomChannels.Rd │ ├── Metadata.Rd │ ├── Payment.Rd │ ├── Payments.Rd │ ├── ReportingMetadataEntry.Rd │ ├── SavedAdStyle.Rd │ ├── SavedAdStyles.Rd │ ├── SavedReport.Rd │ ├── SavedReports.Rd │ ├── UrlChannel.Rd │ ├── UrlChannels.Rd │ ├── accounts.get.Rd │ ├── accounts.list.Rd │ ├── adclients.list.Rd │ ├── adsense_googleAuthR.Rd │ ├── adunits.get.Rd │ ├── adunits.getAdCode.Rd │ ├── adunits.list.Rd │ ├── alerts.delete.Rd │ ├── alerts.list.Rd │ ├── customchannels.get.Rd │ ├── customchannels.list.Rd │ ├── is.NullOb.Rd │ ├── metadata.dimensions.list.Rd │ ├── metadata.metrics.list.Rd │ ├── payments.list.Rd │ ├── reports.generate.Rd │ ├── rmNullObs.Rd │ ├── savedadstyles.get.Rd │ ├── savedadstyles.list.Rd │ └── urlchannels.list.Rd ├── googleanalyticsreportingv4.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── analyticsreporting_functions.R │ └── analyticsreporting_objects.R ├── README.md ├── googleanalyticsreportingv4.auto.Rproj └── man │ ├── Cohort.Rd │ ├── CohortGroup.Rd │ ├── ColumnHeader.Rd │ ├── DateRange.Rd │ ├── DateRangeValues.Rd │ ├── Dimension.Rd │ ├── DimensionFilter.Rd │ ├── DimensionFilterClause.Rd │ ├── DynamicSegment.Rd │ ├── GetReportsRequest.Rd │ ├── GetReportsResponse.Rd │ ├── Metric.Rd │ ├── MetricFilter.Rd │ ├── MetricFilterClause.Rd │ ├── MetricHeader.Rd │ ├── MetricHeaderEntry.Rd │ ├── OrFiltersForSegment.Rd │ ├── OrderBy.Rd │ ├── Pivot.Rd │ ├── PivotHeader.Rd │ ├── PivotHeaderEntry.Rd │ ├── PivotValueRegion.Rd │ ├── Report.Rd │ ├── ReportData.Rd │ ├── ReportRequest.Rd │ ├── ReportRow.Rd │ ├── Segment.Rd │ ├── SegmentDefinition.Rd │ ├── SegmentDimensionFilter.Rd │ ├── SegmentFilter.Rd │ ├── SegmentFilterClause.Rd │ ├── SegmentMetricFilter.Rd │ ├── SegmentSequenceStep.Rd │ ├── SequenceSegment.Rd │ ├── SimpleSegment.Rd │ ├── analyticsreporting_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── reports.batchGet.Rd │ └── rmNullObs.Rd ├── googleanalyticsv24.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── analytics_functions.R │ └── analytics_objects.R ├── README.md ├── googleanalyticsv24.auto.Rproj └── man │ ├── analytics_googleAuthR.Rd │ ├── data.get.Rd │ ├── is.NullOb.Rd │ ├── management.accounts.list.Rd │ ├── management.goals.list.Rd │ ├── management.profiles.list.Rd │ ├── management.segments.list.Rd │ ├── management.webproperties.list.Rd │ └── rmNullObs.Rd ├── googleanalyticsv3.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── analytics_functions.R │ └── analytics_objects.R ├── README.md ├── googleanalyticsv3.auto.Rproj └── man │ ├── Account.Rd │ ├── Account.childLink.Rd │ ├── Account.permissions.Rd │ ├── AccountRef.Rd │ ├── AccountSummaries.Rd │ ├── AccountSummary.Rd │ ├── AccountTicket.Rd │ ├── Accounts.Rd │ ├── AdWordsAccount.Rd │ ├── AnalyticsDataimportDeleteUploadDataRequest.Rd │ ├── Column.Rd │ ├── Column.attributes.Rd │ ├── Columns.Rd │ ├── CustomDataSource.Rd │ ├── CustomDataSource.childLink.Rd │ ├── CustomDataSource.parentLink.Rd │ ├── CustomDataSources.Rd │ ├── CustomDimension.Rd │ ├── CustomDimension.parentLink.Rd │ ├── CustomDimensions.Rd │ ├── CustomMetric.Rd │ ├── CustomMetric.parentLink.Rd │ ├── CustomMetrics.Rd │ ├── EntityAdWordsLink.Rd │ ├── EntityAdWordsLink.entity.Rd │ ├── EntityAdWordsLinks.Rd │ ├── EntityUserLink.Rd │ ├── EntityUserLink.entity.Rd │ ├── EntityUserLink.permissions.Rd │ ├── EntityUserLinks.Rd │ ├── Experiment.Rd │ ├── Experiment.parentLink.Rd │ ├── Experiment.variations.Rd │ ├── Experiments.Rd │ ├── Filter.Rd │ ├── Filter.advancedDetails.Rd │ ├── Filter.lowercaseDetails.Rd │ ├── Filter.parentLink.Rd │ ├── Filter.searchAndReplaceDetails.Rd │ ├── Filter.uppercaseDetails.Rd │ ├── FilterExpression.Rd │ ├── FilterRef.Rd │ ├── Filters.Rd │ ├── GaData.Rd │ ├── GaData.columnHeaders.Rd │ ├── GaData.dataTable.Rd │ ├── GaData.dataTable.cols.Rd │ ├── GaData.dataTable.rows.Rd │ ├── GaData.dataTable.rows.c.Rd │ ├── GaData.profileInfo.Rd │ ├── GaData.query.Rd │ ├── GaData.totalsForAllResults.Rd │ ├── Goal.Rd │ ├── Goal.eventDetails.Rd │ ├── Goal.eventDetails.eventConditions.Rd │ ├── Goal.parentLink.Rd │ ├── Goal.urlDestinationDetails.Rd │ ├── Goal.urlDestinationDetails.steps.Rd │ ├── Goal.visitNumPagesDetails.Rd │ ├── Goal.visitTimeOnSiteDetails.Rd │ ├── Goals.Rd │ ├── IncludeConditions.Rd │ ├── LinkedForeignAccount.Rd │ ├── McfData.Rd │ ├── McfData.columnHeaders.Rd │ ├── McfData.profileInfo.Rd │ ├── McfData.query.Rd │ ├── McfData.totalsForAllResults.Rd │ ├── Profile.Rd │ ├── Profile.childLink.Rd │ ├── Profile.parentLink.Rd │ ├── Profile.permissions.Rd │ ├── ProfileFilterLink.Rd │ ├── ProfileFilterLinks.Rd │ ├── ProfileRef.Rd │ ├── ProfileSummary.Rd │ ├── Profiles.Rd │ ├── RealtimeData.Rd │ ├── RealtimeData.columnHeaders.Rd │ ├── RealtimeData.profileInfo.Rd │ ├── RealtimeData.query.Rd │ ├── RealtimeData.totalsForAllResults.Rd │ ├── RemarketingAudience.Rd │ ├── RemarketingAudience.audienceDefinition.Rd │ ├── RemarketingAudience.stateBasedAudienceDefinition.Rd │ ├── RemarketingAudience.stateBasedAudienceDefinition.excludeConditions.Rd │ ├── RemarketingAudiences.Rd │ ├── Segment.Rd │ ├── Segments.Rd │ ├── UnsampledReport.Rd │ ├── UnsampledReport.cloudStorageDownloadDetails.Rd │ ├── UnsampledReport.driveDownloadDetails.Rd │ ├── UnsampledReports.Rd │ ├── Upload.Rd │ ├── Uploads.Rd │ ├── UserRef.Rd │ ├── WebPropertyRef.Rd │ ├── WebPropertySummary.Rd │ ├── Webproperties.Rd │ ├── Webproperty.Rd │ ├── Webproperty.childLink.Rd │ ├── Webproperty.parentLink.Rd │ ├── Webproperty.permissions.Rd │ ├── analytics_googleAuthR.Rd │ ├── data.ga.get.Rd │ ├── data.mcf.get.Rd │ ├── data.realtime.get.Rd │ ├── is.NullOb.Rd │ ├── management.accountSummaries.list.Rd │ ├── management.accountUserLinks.delete.Rd │ ├── management.accountUserLinks.insert.Rd │ ├── management.accountUserLinks.list.Rd │ ├── management.accountUserLinks.update.Rd │ ├── management.accounts.list.Rd │ ├── management.customDataSources.list.Rd │ ├── management.customDimensions.get.Rd │ ├── management.customDimensions.insert.Rd │ ├── management.customDimensions.list.Rd │ ├── management.customDimensions.patch.Rd │ ├── management.customDimensions.update.Rd │ ├── management.customMetrics.get.Rd │ ├── management.customMetrics.insert.Rd │ ├── management.customMetrics.list.Rd │ ├── management.customMetrics.patch.Rd │ ├── management.customMetrics.update.Rd │ ├── management.experiments.delete.Rd │ ├── management.experiments.get.Rd │ ├── management.experiments.insert.Rd │ ├── management.experiments.list.Rd │ ├── management.experiments.patch.Rd │ ├── management.experiments.update.Rd │ ├── management.filters.delete.Rd │ ├── management.filters.get.Rd │ ├── management.filters.insert.Rd │ ├── management.filters.list.Rd │ ├── management.filters.patch.Rd │ ├── management.filters.update.Rd │ ├── management.goals.get.Rd │ ├── management.goals.insert.Rd │ ├── management.goals.list.Rd │ ├── management.goals.patch.Rd │ ├── management.goals.update.Rd │ ├── management.profileFilterLinks.delete.Rd │ ├── management.profileFilterLinks.get.Rd │ ├── management.profileFilterLinks.insert.Rd │ ├── management.profileFilterLinks.list.Rd │ ├── management.profileFilterLinks.patch.Rd │ ├── management.profileFilterLinks.update.Rd │ ├── management.profileUserLinks.delete.Rd │ ├── management.profileUserLinks.insert.Rd │ ├── management.profileUserLinks.list.Rd │ ├── management.profileUserLinks.update.Rd │ ├── management.profiles.delete.Rd │ ├── management.profiles.get.Rd │ ├── management.profiles.insert.Rd │ ├── management.profiles.list.Rd │ ├── management.profiles.patch.Rd │ ├── management.profiles.update.Rd │ ├── management.remarketingAudience.get.Rd │ ├── management.remarketingAudience.insert.Rd │ ├── management.remarketingAudience.list.Rd │ ├── management.remarketingAudience.patch.Rd │ ├── management.remarketingAudience.update.Rd │ ├── management.segments.list.Rd │ ├── management.unsampledReports.delete.Rd │ ├── management.unsampledReports.get.Rd │ ├── management.unsampledReports.insert.Rd │ ├── management.unsampledReports.list.Rd │ ├── management.uploads.deleteUploadData.Rd │ ├── management.uploads.get.Rd │ ├── management.uploads.list.Rd │ ├── management.uploads.uploadData.Rd │ ├── management.webPropertyAdWordsLinks.delete.Rd │ ├── management.webPropertyAdWordsLinks.get.Rd │ ├── management.webPropertyAdWordsLinks.insert.Rd │ ├── management.webPropertyAdWordsLinks.list.Rd │ ├── management.webPropertyAdWordsLinks.patch.Rd │ ├── management.webPropertyAdWordsLinks.update.Rd │ ├── management.webproperties.get.Rd │ ├── management.webproperties.insert.Rd │ ├── management.webproperties.list.Rd │ ├── management.webproperties.patch.Rd │ ├── management.webproperties.update.Rd │ ├── management.webpropertyUserLinks.delete.Rd │ ├── management.webpropertyUserLinks.insert.Rd │ ├── management.webpropertyUserLinks.list.Rd │ ├── management.webpropertyUserLinks.update.Rd │ ├── metadata.columns.list.Rd │ ├── provisioning.createAccountTicket.Rd │ └── rmNullObs.Rd ├── googleandroidenterprisev1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── androidenterprise_functions.R │ └── androidenterprise_objects.R ├── README.md ├── googleandroidenterprisev1.auto.Rproj └── man │ ├── Administrator.Rd │ ├── AdministratorWebToken.Rd │ ├── AdministratorWebTokenSpec.Rd │ ├── AppRestrictionsSchema.Rd │ ├── AppRestrictionsSchemaChangeEvent.Rd │ ├── AppRestrictionsSchemaRestriction.Rd │ ├── AppRestrictionsSchemaRestrictionRestrictionValue.Rd │ ├── AppUpdateEvent.Rd │ ├── AppVersion.Rd │ ├── ApprovalUrlInfo.Rd │ ├── AuthenticationToken.Rd │ ├── Device.Rd │ ├── DeviceState.Rd │ ├── DevicesListResponse.Rd │ ├── Enterprise.Rd │ ├── EnterpriseAccount.Rd │ ├── EnterprisesListResponse.Rd │ ├── EnterprisesSendTestPushNotificationResponse.Rd │ ├── Entitlement.Rd │ ├── EntitlementsListResponse.Rd │ ├── GroupLicense.Rd │ ├── GroupLicenseUsersListResponse.Rd │ ├── GroupLicensesListResponse.Rd │ ├── Install.Rd │ ├── InstallFailureEvent.Rd │ ├── InstallsListResponse.Rd │ ├── LocalizedText.Rd │ ├── ManagedConfiguration.Rd │ ├── ManagedConfigurationsForDeviceListResponse.Rd │ ├── ManagedConfigurationsForUserListResponse.Rd │ ├── ManagedProperty.Rd │ ├── ManagedPropertyBundle.Rd │ ├── NewDeviceEvent.Rd │ ├── NewPermissionsEvent.Rd │ ├── Notification.Rd │ ├── NotificationSet.Rd │ ├── PageInfo.Rd │ ├── Permission.Rd │ ├── Product.Rd │ ├── ProductApprovalEvent.Rd │ ├── ProductAvailabilityChangeEvent.Rd │ ├── ProductPermission.Rd │ ├── ProductPermissions.Rd │ ├── ProductSet.Rd │ ├── ProductsApproveRequest.Rd │ ├── ProductsGenerateApprovalUrlResponse.Rd │ ├── ProductsListResponse.Rd │ ├── ServiceAccount.Rd │ ├── ServiceAccountKey.Rd │ ├── ServiceAccountKeysListResponse.Rd │ ├── SignupInfo.Rd │ ├── StoreCluster.Rd │ ├── StoreLayout.Rd │ ├── StoreLayoutClustersListResponse.Rd │ ├── StoreLayoutPagesListResponse.Rd │ ├── StorePage.Rd │ ├── TokenPagination.Rd │ ├── User.Rd │ ├── UserToken.Rd │ ├── UsersListResponse.Rd │ ├── androidenterprise_googleAuthR.Rd │ ├── devices.get.Rd │ ├── devices.getState.Rd │ ├── devices.list.Rd │ ├── devices.setState.Rd │ ├── enterprises.acknowledgeNotificationSet.Rd │ ├── enterprises.completeSignup.Rd │ ├── enterprises.createWebToken.Rd │ ├── enterprises.delete.Rd │ ├── enterprises.enroll.Rd │ ├── enterprises.generateSignupUrl.Rd │ ├── enterprises.get.Rd │ ├── enterprises.getServiceAccount.Rd │ ├── enterprises.getStoreLayout.Rd │ ├── enterprises.insert.Rd │ ├── enterprises.list.Rd │ ├── enterprises.pullNotificationSet.Rd │ ├── enterprises.sendTestPushNotification.Rd │ ├── enterprises.setAccount.Rd │ ├── enterprises.setStoreLayout.Rd │ ├── enterprises.unenroll.Rd │ ├── entitlements.delete.Rd │ ├── entitlements.get.Rd │ ├── entitlements.list.Rd │ ├── entitlements.patch.Rd │ ├── entitlements.update.Rd │ ├── grouplicenses.get.Rd │ ├── grouplicenses.list.Rd │ ├── grouplicenseusers.list.Rd │ ├── installs.delete.Rd │ ├── installs.get.Rd │ ├── installs.list.Rd │ ├── installs.patch.Rd │ ├── installs.update.Rd │ ├── is.NullOb.Rd │ ├── managedconfigurationsfordevice.delete.Rd │ ├── managedconfigurationsfordevice.get.Rd │ ├── managedconfigurationsfordevice.list.Rd │ ├── managedconfigurationsfordevice.patch.Rd │ ├── managedconfigurationsfordevice.update.Rd │ ├── managedconfigurationsforuser.delete.Rd │ ├── managedconfigurationsforuser.get.Rd │ ├── managedconfigurationsforuser.list.Rd │ ├── managedconfigurationsforuser.patch.Rd │ ├── managedconfigurationsforuser.update.Rd │ ├── permissions.get.Rd │ ├── products.approve.Rd │ ├── products.generateApprovalUrl.Rd │ ├── products.get.Rd │ ├── products.getAppRestrictionsSchema.Rd │ ├── products.getPermissions.Rd │ ├── products.list.Rd │ ├── products.unapprove.Rd │ ├── rmNullObs.Rd │ ├── serviceaccountkeys.delete.Rd │ ├── serviceaccountkeys.insert.Rd │ ├── serviceaccountkeys.list.Rd │ ├── storelayoutclusters.delete.Rd │ ├── storelayoutclusters.get.Rd │ ├── storelayoutclusters.insert.Rd │ ├── storelayoutclusters.list.Rd │ ├── storelayoutclusters.patch.Rd │ ├── storelayoutclusters.update.Rd │ ├── storelayoutpages.delete.Rd │ ├── storelayoutpages.get.Rd │ ├── storelayoutpages.insert.Rd │ ├── storelayoutpages.list.Rd │ ├── storelayoutpages.patch.Rd │ ├── storelayoutpages.update.Rd │ ├── users.delete.Rd │ ├── users.generateAuthenticationToken.Rd │ ├── users.generateToken.Rd │ ├── users.get.Rd │ ├── users.getAvailableProductSet.Rd │ ├── users.insert.Rd │ ├── users.list.Rd │ ├── users.patch.Rd │ ├── users.revokeToken.Rd │ ├── users.setAvailableProductSet.Rd │ └── users.update.Rd ├── googleandroidpublisherv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── androidpublisher_functions.R │ └── androidpublisher_objects.R ├── README.md ├── googleandroidpublisherv1.auto.Rproj └── man │ ├── SubscriptionPurchase.Rd │ ├── androidpublisher_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── purchases.cancel.Rd │ ├── purchases.get.Rd │ └── rmNullObs.Rd ├── googleandroidpublisherv11.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── androidpublisher_functions.R │ └── androidpublisher_objects.R ├── README.md ├── googleandroidpublisherv11.auto.Rproj └── man │ ├── InappPurchase.Rd │ ├── SubscriptionPurchase.Rd │ ├── androidpublisher_googleAuthR.Rd │ ├── inapppurchases.get.Rd │ ├── is.NullOb.Rd │ ├── purchases.cancel.Rd │ ├── purchases.get.Rd │ └── rmNullObs.Rd ├── googleandroidpublisherv2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── androidpublisher_functions.R │ └── androidpublisher_objects.R ├── README.md ├── googleandroidpublisherv2.auto.Rproj └── man │ ├── Apk.Rd │ ├── ApkBinary.Rd │ ├── ApkListing.Rd │ ├── ApkListingsListResponse.Rd │ ├── ApksAddExternallyHostedRequest.Rd │ ├── ApksAddExternallyHostedResponse.Rd │ ├── ApksListResponse.Rd │ ├── AppDetails.Rd │ ├── AppEdit.Rd │ ├── Comment.Rd │ ├── DeobfuscationFile.Rd │ ├── DeobfuscationFilesUploadResponse.Rd │ ├── DeveloperComment.Rd │ ├── DeviceMetadata.Rd │ ├── Entitlement.Rd │ ├── EntitlementsListResponse.Rd │ ├── ExpansionFile.Rd │ ├── ExpansionFilesUploadResponse.Rd │ ├── ExternallyHostedApk.Rd │ ├── ExternallyHostedApkUsesPermission.Rd │ ├── Image.Rd │ ├── ImagesDeleteAllResponse.Rd │ ├── ImagesListResponse.Rd │ ├── ImagesUploadResponse.Rd │ ├── InAppProduct.Rd │ ├── InAppProduct.listings.Rd │ ├── InAppProduct.prices.Rd │ ├── InAppProductListing.Rd │ ├── InappproductsBatchRequest.Rd │ ├── InappproductsBatchRequestEntry.Rd │ ├── InappproductsBatchResponse.Rd │ ├── InappproductsBatchResponseEntry.Rd │ ├── InappproductsInsertRequest.Rd │ ├── InappproductsInsertResponse.Rd │ ├── InappproductsListResponse.Rd │ ├── InappproductsUpdateRequest.Rd │ ├── InappproductsUpdateResponse.Rd │ ├── Listing.Rd │ ├── ListingsListResponse.Rd │ ├── MonthDay.Rd │ ├── PageInfo.Rd │ ├── Price.Rd │ ├── ProductPurchase.Rd │ ├── Prorate.Rd │ ├── Review.Rd │ ├── ReviewReplyResult.Rd │ ├── ReviewsListResponse.Rd │ ├── ReviewsReplyRequest.Rd │ ├── ReviewsReplyResponse.Rd │ ├── Season.Rd │ ├── SubscriptionDeferralInfo.Rd │ ├── SubscriptionPurchase.Rd │ ├── SubscriptionPurchasesDeferRequest.Rd │ ├── SubscriptionPurchasesDeferResponse.Rd │ ├── Testers.Rd │ ├── Timestamp.Rd │ ├── TokenPagination.Rd │ ├── Track.Rd │ ├── TracksListResponse.Rd │ ├── UserComment.Rd │ ├── VoidedPurchase.Rd │ ├── VoidedPurchasesListResponse.Rd │ ├── androidpublisher_googleAuthR.Rd │ ├── edits.commit.Rd │ ├── edits.delete.Rd │ ├── edits.get.Rd │ ├── edits.insert.Rd │ ├── edits.validate.Rd │ ├── entitlements.list.Rd │ ├── inappproducts.batch.Rd │ ├── inappproducts.delete.Rd │ ├── inappproducts.get.Rd │ ├── inappproducts.insert.Rd │ ├── inappproducts.list.Rd │ ├── inappproducts.patch.Rd │ ├── inappproducts.update.Rd │ ├── is.NullOb.Rd │ ├── purchases.products.get.Rd │ ├── purchases.subscriptions.cancel.Rd │ ├── purchases.subscriptions.defer.Rd │ ├── purchases.subscriptions.get.Rd │ ├── purchases.subscriptions.refund.Rd │ ├── purchases.subscriptions.revoke.Rd │ ├── purchases.voidedpurchases.list.Rd │ ├── reviews.get.Rd │ ├── reviews.list.Rd │ ├── reviews.reply.Rd │ └── rmNullObs.Rd ├── googleappenginev1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── appengine_functions.R │ └── appengine_objects.R ├── README.md ├── googleappenginev1.auto.Rproj └── man │ ├── ApiConfigHandler.Rd │ ├── ApiEndpointHandler.Rd │ ├── Application.Rd │ ├── AutomaticScaling.Rd │ ├── BasicScaling.Rd │ ├── ContainerInfo.Rd │ ├── CpuUtilization.Rd │ ├── DebugInstanceRequest.Rd │ ├── Deployment.Rd │ ├── Deployment.files.Rd │ ├── DiskUtilization.Rd │ ├── EndpointsApiService.Rd │ ├── ErrorHandler.Rd │ ├── FileInfo.Rd │ ├── HealthCheck.Rd │ ├── Instance.Rd │ ├── Library.Rd │ ├── ListInstancesResponse.Rd │ ├── ListLocationsResponse.Rd │ ├── ListOperationsResponse.Rd │ ├── ListServicesResponse.Rd │ ├── ListVersionsResponse.Rd │ ├── Location.Rd │ ├── Location.labels.Rd │ ├── Location.metadata.Rd │ ├── LocationMetadata.Rd │ ├── ManualScaling.Rd │ ├── Network.Rd │ ├── NetworkUtilization.Rd │ ├── Operation.Rd │ ├── Operation.metadata.Rd │ ├── Operation.response.Rd │ ├── OperationMetadata.Rd │ ├── OperationMetadataExperimental.Rd │ ├── OperationMetadataV1.Rd │ ├── OperationMetadataV1Beta5.Rd │ ├── RepairApplicationRequest.Rd │ ├── RequestUtilization.Rd │ ├── Resources.Rd │ ├── ScriptHandler.Rd │ ├── Service.Rd │ ├── StaticFilesHandler.Rd │ ├── StaticFilesHandler.httpHeaders.Rd │ ├── Status.Rd │ ├── TrafficSplit.Rd │ ├── TrafficSplit.allocations.Rd │ ├── UrlDispatchRule.Rd │ ├── UrlMap.Rd │ ├── Version.Rd │ ├── Version.betaSettings.Rd │ ├── Version.envVariables.Rd │ ├── Volume.Rd │ ├── ZipInfo.Rd │ ├── appengine_googleAuthR.Rd │ ├── apps.create.Rd │ ├── apps.get.Rd │ ├── apps.patch.Rd │ ├── apps.repair.Rd │ ├── is.NullOb.Rd │ └── rmNullObs.Rd ├── googleappenginev1alpha.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── appengine_functions.R │ └── appengine_objects.R ├── README.md ├── googleappenginev1alpha.auto.Rproj └── man │ ├── ApiConfigHandler.Rd │ ├── ApiEndpointHandler.Rd │ ├── Application.Rd │ ├── AutomaticScaling.Rd │ ├── BasicScaling.Rd │ ├── ContainerInfo.Rd │ ├── CpuUtilization.Rd │ ├── DebugInstanceRequest.Rd │ ├── Deployment.Rd │ ├── Deployment.files.Rd │ ├── DiskUtilization.Rd │ ├── EndpointsApiService.Rd │ ├── ErrorHandler.Rd │ ├── FileInfo.Rd │ ├── HealthCheck.Rd │ ├── IdentityAwareProxy.Rd │ ├── Instance.Rd │ ├── Library.Rd │ ├── ListInstancesResponse.Rd │ ├── ListLocationsResponse.Rd │ ├── ListOperationsResponse.Rd │ ├── ListServicesResponse.Rd │ ├── ListVersionsResponse.Rd │ ├── LivenessCheck.Rd │ ├── Location.Rd │ ├── Location.labels.Rd │ ├── Location.metadata.Rd │ ├── LocationMetadata.Rd │ ├── ManualScaling.Rd │ ├── Network.Rd │ ├── NetworkUtilization.Rd │ ├── Operation.Rd │ ├── Operation.metadata.Rd │ ├── Operation.response.Rd │ ├── OperationMetadata.Rd │ ├── OperationMetadataExperimental.Rd │ ├── OperationMetadataV1.Rd │ ├── OperationMetadataV1Alpha.Rd │ ├── OperationMetadataV1Beta.Rd │ ├── OperationMetadataV1Beta5.Rd │ ├── ReadinessCheck.Rd │ ├── RepairApplicationRequest.Rd │ ├── RequestUtilization.Rd │ ├── Resources.Rd │ ├── ScriptHandler.Rd │ ├── Service.Rd │ ├── StaticFilesHandler.Rd │ ├── StaticFilesHandler.httpHeaders.Rd │ ├── Status.Rd │ ├── TrafficSplit.Rd │ ├── TrafficSplit.allocations.Rd │ ├── UrlDispatchRule.Rd │ ├── UrlMap.Rd │ ├── Version.Rd │ ├── Version.betaSettings.Rd │ ├── Version.envVariables.Rd │ ├── Volume.Rd │ ├── ZipInfo.Rd │ ├── appengine_googleAuthR.Rd │ ├── apps.create.Rd │ ├── apps.get.Rd │ ├── apps.patch.Rd │ ├── apps.repair.Rd │ ├── is.NullOb.Rd │ └── rmNullObs.Rd ├── googleappenginev1beta.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── appengine_functions.R │ └── appengine_objects.R ├── README.md ├── googleappenginev1beta.auto.Rproj └── man │ ├── ApiConfigHandler.Rd │ ├── ApiEndpointHandler.Rd │ ├── Application.Rd │ ├── AutomaticScaling.Rd │ ├── BasicScaling.Rd │ ├── ContainerInfo.Rd │ ├── CpuUtilization.Rd │ ├── DebugInstanceRequest.Rd │ ├── Deployment.Rd │ ├── Deployment.files.Rd │ ├── DiskUtilization.Rd │ ├── EndpointsApiService.Rd │ ├── ErrorHandler.Rd │ ├── FileInfo.Rd │ ├── HealthCheck.Rd │ ├── IdentityAwareProxy.Rd │ ├── Instance.Rd │ ├── Library.Rd │ ├── ListInstancesResponse.Rd │ ├── ListLocationsResponse.Rd │ ├── ListOperationsResponse.Rd │ ├── ListServicesResponse.Rd │ ├── ListVersionsResponse.Rd │ ├── LivenessCheck.Rd │ ├── Location.Rd │ ├── Location.labels.Rd │ ├── Location.metadata.Rd │ ├── LocationMetadata.Rd │ ├── ManualScaling.Rd │ ├── Network.Rd │ ├── NetworkUtilization.Rd │ ├── Operation.Rd │ ├── Operation.metadata.Rd │ ├── Operation.response.Rd │ ├── OperationMetadata.Rd │ ├── OperationMetadataExperimental.Rd │ ├── OperationMetadataV1.Rd │ ├── OperationMetadataV1Alpha.Rd │ ├── OperationMetadataV1Beta.Rd │ ├── OperationMetadataV1Beta5.Rd │ ├── ReadinessCheck.Rd │ ├── RepairApplicationRequest.Rd │ ├── RequestUtilization.Rd │ ├── Resources.Rd │ ├── ScriptHandler.Rd │ ├── Service.Rd │ ├── StaticFilesHandler.Rd │ ├── StaticFilesHandler.httpHeaders.Rd │ ├── Status.Rd │ ├── TrafficSplit.Rd │ ├── TrafficSplit.allocations.Rd │ ├── UrlDispatchRule.Rd │ ├── UrlMap.Rd │ ├── Version.Rd │ ├── Version.betaSettings.Rd │ ├── Version.envVariables.Rd │ ├── Volume.Rd │ ├── ZipInfo.Rd │ ├── appengine_googleAuthR.Rd │ ├── apps.create.Rd │ ├── apps.get.Rd │ ├── apps.patch.Rd │ ├── apps.repair.Rd │ ├── is.NullOb.Rd │ └── rmNullObs.Rd ├── googleappenginev1beta4.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── appengine_functions.R │ └── appengine_objects.R ├── README.md ├── googleappenginev1beta4.auto.Rproj └── man │ ├── ApiConfigHandler.Rd │ ├── ApiEndpointHandler.Rd │ ├── Application.Rd │ ├── AutomaticScaling.Rd │ ├── BasicScaling.Rd │ ├── ContainerInfo.Rd │ ├── CpuUtilization.Rd │ ├── DebugInstanceRequest.Rd │ ├── Deployment.Rd │ ├── Deployment.files.Rd │ ├── DiskUtilization.Rd │ ├── ErrorHandler.Rd │ ├── FileInfo.Rd │ ├── HealthCheck.Rd │ ├── Instance.Rd │ ├── Library.Rd │ ├── ListInstancesResponse.Rd │ ├── ListLocationsResponse.Rd │ ├── ListModulesResponse.Rd │ ├── ListOperationsResponse.Rd │ ├── ListVersionsResponse.Rd │ ├── Location.Rd │ ├── Location.labels.Rd │ ├── Location.metadata.Rd │ ├── LocationMetadata.Rd │ ├── ManualScaling.Rd │ ├── Module.Rd │ ├── Network.Rd │ ├── NetworkUtilization.Rd │ ├── Operation.Rd │ ├── Operation.metadata.Rd │ ├── Operation.response.Rd │ ├── OperationMetadata.Rd │ ├── OperationMetadataExperimental.Rd │ ├── OperationMetadataV1.Rd │ ├── OperationMetadataV1Beta5.Rd │ ├── RequestUtilization.Rd │ ├── Resources.Rd │ ├── ScriptHandler.Rd │ ├── SourceReference.Rd │ ├── StaticDirectoryHandler.Rd │ ├── StaticDirectoryHandler.httpHeaders.Rd │ ├── StaticFilesHandler.Rd │ ├── StaticFilesHandler.httpHeaders.Rd │ ├── Status.Rd │ ├── TrafficSplit.Rd │ ├── TrafficSplit.allocations.Rd │ ├── UrlDispatchRule.Rd │ ├── UrlMap.Rd │ ├── Version.Rd │ ├── Version.betaSettings.Rd │ ├── Version.envVariables.Rd │ ├── Volume.Rd │ ├── appengine_googleAuthR.Rd │ ├── apps.create.Rd │ ├── apps.get.Rd │ ├── apps.patch.Rd │ ├── is.NullOb.Rd │ └── rmNullObs.Rd ├── googleappenginev1beta5.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── appengine_functions.R │ └── appengine_objects.R ├── README.md ├── googleappenginev1beta5.auto.Rproj └── man │ ├── ApiConfigHandler.Rd │ ├── ApiEndpointHandler.Rd │ ├── Application.Rd │ ├── AutomaticScaling.Rd │ ├── BasicScaling.Rd │ ├── ContainerInfo.Rd │ ├── CpuUtilization.Rd │ ├── DebugInstanceRequest.Rd │ ├── Deployment.Rd │ ├── Deployment.files.Rd │ ├── DiskUtilization.Rd │ ├── EndpointsApiService.Rd │ ├── ErrorHandler.Rd │ ├── FileInfo.Rd │ ├── HealthCheck.Rd │ ├── Instance.Rd │ ├── Library.Rd │ ├── ListInstancesResponse.Rd │ ├── ListLocationsResponse.Rd │ ├── ListOperationsResponse.Rd │ ├── ListServicesResponse.Rd │ ├── ListVersionsResponse.Rd │ ├── Location.Rd │ ├── Location.labels.Rd │ ├── Location.metadata.Rd │ ├── LocationMetadata.Rd │ ├── ManualScaling.Rd │ ├── Network.Rd │ ├── NetworkUtilization.Rd │ ├── Operation.Rd │ ├── Operation.metadata.Rd │ ├── Operation.response.Rd │ ├── OperationMetadata.Rd │ ├── OperationMetadataExperimental.Rd │ ├── OperationMetadataV1.Rd │ ├── OperationMetadataV1Beta5.Rd │ ├── RequestUtilization.Rd │ ├── Resources.Rd │ ├── ScriptHandler.Rd │ ├── Service.Rd │ ├── SourceReference.Rd │ ├── StaticFilesHandler.Rd │ ├── StaticFilesHandler.httpHeaders.Rd │ ├── Status.Rd │ ├── TrafficSplit.Rd │ ├── TrafficSplit.allocations.Rd │ ├── UrlDispatchRule.Rd │ ├── UrlMap.Rd │ ├── Version.Rd │ ├── Version.betaSettings.Rd │ ├── Version.envVariables.Rd │ ├── Volume.Rd │ ├── appengine_googleAuthR.Rd │ ├── apps.create.Rd │ ├── apps.get.Rd │ ├── apps.patch.Rd │ ├── is.NullOb.Rd │ └── rmNullObs.Rd ├── googleappsactivityv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── appsactivity_functions.R │ └── appsactivity_objects.R ├── README.md ├── googleappsactivityv1.auto.Rproj └── man │ ├── Activity.Rd │ ├── Event.Rd │ ├── ListActivitiesResponse.Rd │ ├── Move.Rd │ ├── Parent.Rd │ ├── Permission.Rd │ ├── PermissionChange.Rd │ ├── Photo.Rd │ ├── Rename.Rd │ ├── Target.Rd │ ├── User.Rd │ ├── activities.list.Rd │ ├── appsactivity_googleAuthR.Rd │ ├── is.NullOb.Rd │ └── rmNullObs.Rd ├── googleappstatev1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── appstate_functions.R │ └── appstate_objects.R ├── README.md ├── googleappstatev1.auto.Rproj └── man │ ├── GetResponse.Rd │ ├── ListResponse.Rd │ ├── UpdateRequest.Rd │ ├── WriteResult.Rd │ ├── appstate_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── rmNullObs.Rd │ ├── states.clear.Rd │ ├── states.delete.Rd │ ├── states.get.Rd │ ├── states.list.Rd │ └── states.update.Rd ├── googlebigqueryv2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── bigquery_functions.R │ └── bigquery_objects.R ├── README.md ├── googlebigqueryv2.auto.Rproj └── man │ ├── BigtableColumn.Rd │ ├── BigtableColumnFamily.Rd │ ├── BigtableOptions.Rd │ ├── CsvOptions.Rd │ ├── Dataset.Rd │ ├── Dataset.access.Rd │ ├── Dataset.labels.Rd │ ├── DatasetList.Rd │ ├── DatasetList.datasets.Rd │ ├── DatasetList.datasets.labels.Rd │ ├── DatasetReference.Rd │ ├── ErrorProto.Rd │ ├── ExplainQueryStage.Rd │ ├── ExplainQueryStep.Rd │ ├── ExternalDataConfiguration.Rd │ ├── GetQueryResultsResponse.Rd │ ├── GoogleSheetsOptions.Rd │ ├── Job.Rd │ ├── JobCancelResponse.Rd │ ├── JobConfiguration.Rd │ ├── JobConfiguration.labels.Rd │ ├── JobConfigurationExtract.Rd │ ├── JobConfigurationLoad.Rd │ ├── JobConfigurationQuery.Rd │ ├── JobConfigurationQuery.tableDefinitions.Rd │ ├── JobConfigurationTableCopy.Rd │ ├── JobList.Rd │ ├── JobList.jobs.Rd │ ├── JobReference.Rd │ ├── JobStatistics.Rd │ ├── JobStatistics2.Rd │ ├── JobStatistics3.Rd │ ├── JobStatistics4.Rd │ ├── JobStatus.Rd │ ├── JsonObject.Rd │ ├── ProjectList.Rd │ ├── ProjectList.projects.Rd │ ├── ProjectReference.Rd │ ├── QueryParameter.Rd │ ├── QueryParameterType.Rd │ ├── QueryParameterType.structTypes.Rd │ ├── QueryParameterValue.Rd │ ├── QueryParameterValue.structValues.Rd │ ├── QueryRequest.Rd │ ├── QueryResponse.Rd │ ├── Streamingbuffer.Rd │ ├── Table.Rd │ ├── Table.labels.Rd │ ├── TableCell.Rd │ ├── TableDataInsertAllRequest.Rd │ ├── TableDataInsertAllRequest.rows.Rd │ ├── TableDataInsertAllResponse.Rd │ ├── TableDataInsertAllResponse.insertErrors.Rd │ ├── TableDataList.Rd │ ├── TableFieldSchema.Rd │ ├── TableList.Rd │ ├── TableList.tables.Rd │ ├── TableList.tables.labels.Rd │ ├── TableList.tables.view.Rd │ ├── TableReference.Rd │ ├── TableRow.Rd │ ├── TableSchema.Rd │ ├── TimePartitioning.Rd │ ├── UserDefinedFunctionResource.Rd │ ├── ViewDefinition.Rd │ ├── bigquery_googleAuthR.Rd │ ├── datasets.delete.Rd │ ├── datasets.get.Rd │ ├── datasets.insert.Rd │ ├── datasets.list.Rd │ ├── datasets.patch.Rd │ ├── datasets.update.Rd │ ├── is.NullOb.Rd │ ├── jobs.cancel.Rd │ ├── jobs.get.Rd │ ├── jobs.getQueryResults.Rd │ ├── jobs.insert.Rd │ ├── jobs.list.Rd │ ├── jobs.query.Rd │ ├── projects.list.Rd │ ├── rmNullObs.Rd │ ├── tabledata.insertAll.Rd │ ├── tabledata.list.Rd │ ├── tables.delete.Rd │ ├── tables.get.Rd │ ├── tables.insert.Rd │ ├── tables.list.Rd │ ├── tables.patch.Rd │ └── tables.update.Rd ├── googlebloggerv2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── blogger_functions.R │ └── blogger_objects.R ├── README.md ├── googlebloggerv2.auto.Rproj └── man │ ├── Blog.Rd │ ├── Blog.locale.Rd │ ├── Blog.pages.Rd │ ├── Blog.posts.Rd │ ├── BlogList.Rd │ ├── Comment.Rd │ ├── Comment.author.Rd │ ├── Comment.author.image.Rd │ ├── Comment.blog.Rd │ ├── Comment.inReplyTo.Rd │ ├── Comment.post.Rd │ ├── CommentList.Rd │ ├── Page.Rd │ ├── Page.author.Rd │ ├── Page.author.image.Rd │ ├── Page.blog.Rd │ ├── PageList.Rd │ ├── Post.Rd │ ├── Post.author.Rd │ ├── Post.author.image.Rd │ ├── Post.blog.Rd │ ├── Post.replies.Rd │ ├── PostList.Rd │ ├── User.Rd │ ├── User.blogs.Rd │ ├── User.locale.Rd │ ├── blogger_googleAuthR.Rd │ ├── blogs.get.Rd │ ├── comments.get.Rd │ ├── comments.list.Rd │ ├── is.NullOb.Rd │ ├── pages.get.Rd │ ├── pages.list.Rd │ ├── posts.get.Rd │ ├── posts.list.Rd │ ├── rmNullObs.Rd │ └── users.get.Rd ├── googlebloggerv3.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── blogger_functions.R │ └── blogger_objects.R ├── README.md ├── googlebloggerv3.auto.Rproj └── man │ ├── Blog.Rd │ ├── Blog.locale.Rd │ ├── Blog.pages.Rd │ ├── Blog.posts.Rd │ ├── BlogList.Rd │ ├── BlogPerUserInfo.Rd │ ├── BlogUserInfo.Rd │ ├── Comment.Rd │ ├── Comment.author.Rd │ ├── Comment.author.image.Rd │ ├── Comment.blog.Rd │ ├── Comment.inReplyTo.Rd │ ├── Comment.post.Rd │ ├── CommentList.Rd │ ├── Page.Rd │ ├── Page.author.Rd │ ├── Page.author.image.Rd │ ├── Page.blog.Rd │ ├── PageList.Rd │ ├── Pageviews.Rd │ ├── Pageviews.counts.Rd │ ├── Post.Rd │ ├── Post.author.Rd │ ├── Post.author.image.Rd │ ├── Post.blog.Rd │ ├── Post.images.Rd │ ├── Post.location.Rd │ ├── Post.replies.Rd │ ├── PostList.Rd │ ├── PostPerUserInfo.Rd │ ├── PostUserInfo.Rd │ ├── PostUserInfosList.Rd │ ├── User.Rd │ ├── User.blogs.Rd │ ├── User.locale.Rd │ ├── blogUserInfos.get.Rd │ ├── blogger_googleAuthR.Rd │ ├── blogs.get.Rd │ ├── blogs.getByUrl.Rd │ ├── blogs.listByUser.Rd │ ├── comments.approve.Rd │ ├── comments.delete.Rd │ ├── comments.get.Rd │ ├── comments.list.Rd │ ├── comments.listByBlog.Rd │ ├── comments.markAsSpam.Rd │ ├── comments.removeContent.Rd │ ├── is.NullOb.Rd │ ├── pageViews.get.Rd │ ├── pages.delete.Rd │ ├── pages.get.Rd │ ├── pages.insert.Rd │ ├── pages.list.Rd │ ├── pages.patch.Rd │ ├── pages.publish.Rd │ ├── pages.revert.Rd │ ├── pages.update.Rd │ ├── postUserInfos.get.Rd │ ├── postUserInfos.list.Rd │ ├── posts.delete.Rd │ ├── posts.get.Rd │ ├── posts.getByPath.Rd │ ├── posts.insert.Rd │ ├── posts.list.Rd │ ├── posts.patch.Rd │ ├── posts.publish.Rd │ ├── posts.revert.Rd │ ├── posts.search.Rd │ ├── posts.update.Rd │ ├── rmNullObs.Rd │ └── users.get.Rd ├── googlebooksv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── books_functions.R │ └── books_objects.R ├── README.md ├── googlebooksv1.auto.Rproj └── man │ ├── Annotation.Rd │ ├── Annotation.clientVersionRanges.Rd │ ├── Annotation.currentVersionRanges.Rd │ ├── Annotation.layerSummary.Rd │ ├── Annotationdata.Rd │ ├── Annotations.Rd │ ├── AnnotationsSummary.Rd │ ├── AnnotationsSummary.layers.Rd │ ├── Annotationsdata.Rd │ ├── BooksAnnotationsRange.Rd │ ├── BooksCloudloadingResource.Rd │ ├── BooksVolumesRecommendedRateResponse.Rd │ ├── Bookshelf.Rd │ ├── Bookshelves.Rd │ ├── Category.Rd │ ├── Category.items.Rd │ ├── ConcurrentAccessRestriction.Rd │ ├── Dictlayerdata.Rd │ ├── Dictlayerdata.common.Rd │ ├── Dictlayerdata.dict.Rd │ ├── Dictlayerdata.dict.source.Rd │ ├── Dictlayerdata.dict.words.Rd │ ├── Dictlayerdata.dict.words.derivatives.Rd │ ├── Dictlayerdata.dict.words.derivatives.source.Rd │ ├── Dictlayerdata.dict.words.examples.Rd │ ├── Dictlayerdata.dict.words.examples.source.Rd │ ├── Dictlayerdata.dict.words.senses.Rd │ ├── Dictlayerdata.dict.words.senses.conjugations.Rd │ ├── Dictlayerdata.dict.words.senses.definitions.Rd │ ├── Dictlayerdata.dict.words.senses.definitions.examples.Rd │ ├── Dictlayerdata.dict.words.senses.definitions.examples.source.Rd │ ├── Dictlayerdata.dict.words.senses.source.Rd │ ├── Dictlayerdata.dict.words.senses.synonyms.Rd │ ├── Dictlayerdata.dict.words.senses.synonyms.source.Rd │ ├── Dictlayerdata.dict.words.source.Rd │ ├── Discoveryclusters.Rd │ ├── Discoveryclusters.clusters.Rd │ ├── Discoveryclusters.clusters.banner_with_content_container.Rd │ ├── DownloadAccessRestriction.Rd │ ├── DownloadAccesses.Rd │ ├── Geolayerdata.Rd │ ├── Geolayerdata.common.Rd │ ├── Geolayerdata.geo.Rd │ ├── Geolayerdata.geo.viewport.Rd │ ├── Geolayerdata.geo.viewport.hi.Rd │ ├── Geolayerdata.geo.viewport.lo.Rd │ ├── Layersummaries.Rd │ ├── Layersummary.Rd │ ├── Metadata.Rd │ ├── Metadata.items.Rd │ ├── Notification.Rd │ ├── Offers.Rd │ ├── Offers.items.Rd │ ├── Offers.items.items.Rd │ ├── ReadingPosition.Rd │ ├── RequestAccess.Rd │ ├── Review.Rd │ ├── Review.author.Rd │ ├── Review.source.Rd │ ├── Series.Rd │ ├── Series.series.Rd │ ├── Seriesmembership.Rd │ ├── Usersettings.Rd │ ├── Usersettings.notesExport.Rd │ ├── Usersettings.notification.Rd │ ├── Usersettings.notification.moreFromAuthors.Rd │ ├── Usersettings.notification.moreFromSeries.Rd │ ├── Volume.Rd │ ├── Volume.accessInfo.Rd │ ├── Volume.accessInfo.epub.Rd │ ├── Volume.accessInfo.pdf.Rd │ ├── Volume.layerInfo.Rd │ ├── Volume.layerInfo.layers.Rd │ ├── Volume.recommendedInfo.Rd │ ├── Volume.saleInfo.Rd │ ├── Volume.saleInfo.listPrice.Rd │ ├── Volume.saleInfo.offers.Rd │ ├── Volume.saleInfo.offers.listPrice.Rd │ ├── Volume.saleInfo.offers.rentalDuration.Rd │ ├── Volume.saleInfo.offers.retailPrice.Rd │ ├── Volume.saleInfo.retailPrice.Rd │ ├── Volume.searchInfo.Rd │ ├── Volume.userInfo.Rd │ ├── Volume.userInfo.copy.Rd │ ├── Volume.userInfo.familySharing.Rd │ ├── Volume.userInfo.rentalPeriod.Rd │ ├── Volume.userInfo.userUploadedVolumeInfo.Rd │ ├── Volume.volumeInfo.Rd │ ├── Volume.volumeInfo.dimensions.Rd │ ├── Volume.volumeInfo.imageLinks.Rd │ ├── Volume.volumeInfo.industryIdentifiers.Rd │ ├── Volume.volumeInfo.panelizationSummary.Rd │ ├── Volume2.Rd │ ├── Volumeannotation.Rd │ ├── Volumeannotation.contentRanges.Rd │ ├── Volumeannotations.Rd │ ├── Volumes.Rd │ ├── Volumeseriesinfo.Rd │ ├── Volumeseriesinfo.volumeSeries.Rd │ ├── Volumeseriesinfo.volumeSeries.issue.Rd │ ├── books_googleAuthR.Rd │ ├── cloudloading.addBook.Rd │ ├── cloudloading.deleteBook.Rd │ ├── cloudloading.updateBook.Rd │ ├── dictionary.listOfflineMetadata.Rd │ ├── elves.get.Rd │ ├── elves.list.Rd │ ├── is.NullOb.Rd │ ├── layers.get.Rd │ ├── layers.list.Rd │ ├── myconfig.getUserSettings.Rd │ ├── myconfig.releaseDownloadAccess.Rd │ ├── myconfig.requestAccess.Rd │ ├── myconfig.syncVolumeLicenses.Rd │ ├── myconfig.updateUserSettings.Rd │ ├── mylibrary.annotations.delete.Rd │ ├── mylibrary.annotations.insert.Rd │ ├── mylibrary.annotations.list.Rd │ ├── mylibrary.annotations.summary.Rd │ ├── mylibrary.annotations.update.Rd │ ├── mylibrary.elves.addVolume.Rd │ ├── mylibrary.elves.clearVolumes.Rd │ ├── mylibrary.elves.get.Rd │ ├── mylibrary.elves.list.Rd │ ├── mylibrary.elves.moveVolume.Rd │ ├── mylibrary.elves.removeVolume.Rd │ ├── mylibrary.readingpositions.get.Rd │ ├── mylibrary.readingpositions.setPosition.Rd │ ├── notification.get.Rd │ ├── onboarding.listCategories.Rd │ ├── onboarding.listCategoryVolumes.Rd │ ├── personalizedstream.get.Rd │ ├── promooffer.accept.Rd │ ├── promooffer.dismiss.Rd │ ├── promooffer.get.Rd │ ├── rmNullObs.Rd │ ├── series.get.Rd │ ├── volumes.get.Rd │ └── volumes.list.Rd ├── googlecalendarv3.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── calendar_functions.R │ └── calendar_objects.R ├── README.md ├── googlecalendarv3.auto.Rproj └── man │ ├── Acl.Rd │ ├── AclRule.Rd │ ├── AclRule.scope.Rd │ ├── Calendar.Rd │ ├── CalendarList.Rd │ ├── CalendarListEntry.Rd │ ├── CalendarListEntry.notificationSettings.Rd │ ├── CalendarNotification.Rd │ ├── Channel.Rd │ ├── Channel.params.Rd │ ├── ColorDefinition.Rd │ ├── Colors.Rd │ ├── Colors.calendar.Rd │ ├── Colors.event.Rd │ ├── Error.Rd │ ├── Event.Rd │ ├── Event.creator.Rd │ ├── Event.extendedProperties.Rd │ ├── Event.extendedProperties.private.Rd │ ├── Event.extendedProperties.shared.Rd │ ├── Event.gadget.Rd │ ├── Event.gadget.preferences.Rd │ ├── Event.organizer.Rd │ ├── Event.reminders.Rd │ ├── Event.source.Rd │ ├── EventAttachment.Rd │ ├── EventAttendee.Rd │ ├── EventDateTime.Rd │ ├── EventReminder.Rd │ ├── Events.Rd │ ├── FreeBusyCalendar.Rd │ ├── FreeBusyGroup.Rd │ ├── FreeBusyRequest.Rd │ ├── FreeBusyRequestItem.Rd │ ├── FreeBusyResponse.Rd │ ├── FreeBusyResponse.calendars.Rd │ ├── FreeBusyResponse.groups.Rd │ ├── Setting.Rd │ ├── Settings.Rd │ ├── TimePeriod.Rd │ ├── acl.delete.Rd │ ├── acl.get.Rd │ ├── acl.insert.Rd │ ├── acl.list.Rd │ ├── acl.patch.Rd │ ├── acl.update.Rd │ ├── acl.watch.Rd │ ├── calendar_googleAuthR.Rd │ ├── channels.stop.Rd │ ├── colors.get.Rd │ ├── events.delete.Rd │ ├── events.get.Rd │ ├── events.import.Rd │ ├── events.insert.Rd │ ├── events.instances.Rd │ ├── events.list.Rd │ ├── events.move.Rd │ ├── events.patch.Rd │ ├── events.quickAdd.Rd │ ├── events.update.Rd │ ├── events.watch.Rd │ ├── freebusy.query.Rd │ ├── is.NullOb.Rd │ ├── ist.delete.Rd │ ├── ist.get.Rd │ ├── ist.insert.Rd │ ├── ist.list.Rd │ ├── ist.patch.Rd │ ├── ist.update.Rd │ ├── ist.watch.Rd │ ├── rmNullObs.Rd │ ├── settings.get.Rd │ ├── settings.list.Rd │ └── settings.watch.Rd ├── googlecivicinfov2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── civicinfo_functions.R │ └── civicinfo_objects.R ├── README.md ├── googlecivicinfov2.auto.Rproj └── man │ ├── AdministrationRegion.Rd │ ├── AdministrativeBody.Rd │ ├── Candidate.Rd │ ├── Channel.Rd │ ├── Contest.Rd │ ├── ContextParams.Rd │ ├── DivisionRepresentativeInfoRequest.Rd │ ├── DivisionSearchRequest.Rd │ ├── DivisionSearchResponse.Rd │ ├── DivisionSearchResult.Rd │ ├── Election.Rd │ ├── ElectionOfficial.Rd │ ├── ElectionsQueryRequest.Rd │ ├── ElectionsQueryResponse.Rd │ ├── ElectoralDistrict.Rd │ ├── GeographicDivision.Rd │ ├── Office.Rd │ ├── Official.Rd │ ├── PollingLocation.Rd │ ├── PostalAddress.Rd │ ├── RepresentativeInfoData.Rd │ ├── RepresentativeInfoData.divisions.Rd │ ├── RepresentativeInfoRequest.Rd │ ├── RepresentativeInfoResponse.Rd │ ├── RepresentativeInfoResponse.divisions.Rd │ ├── SimpleAddressType.Rd │ ├── Source.Rd │ ├── VoterInfoRequest.Rd │ ├── VoterInfoResponse.Rd │ ├── VoterInfoSegmentResult.Rd │ ├── civicinfo_googleAuthR.Rd │ ├── divisions.search.Rd │ ├── elections.electionQuery.Rd │ ├── elections.voterInfoQuery.Rd │ ├── is.NullOb.Rd │ ├── representatives.representativeInfoByAddress.Rd │ ├── representatives.representativeInfoByDivision.Rd │ └── rmNullObs.Rd ├── googleclassroomv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── classroom_functions.R │ └── classroom_objects.R ├── README.md ├── googleclassroomv1.auto.Rproj └── man │ ├── Assignment.Rd │ ├── AssignmentSubmission.Rd │ ├── Attachment.Rd │ ├── Course.Rd │ ├── CourseAlias.Rd │ ├── CourseMaterial.Rd │ ├── CourseMaterialSet.Rd │ ├── CourseWork.Rd │ ├── Date.Rd │ ├── DriveFile.Rd │ ├── DriveFolder.Rd │ ├── Empty.Rd │ ├── Form.Rd │ ├── GlobalPermission.Rd │ ├── Guardian.Rd │ ├── GuardianInvitation.Rd │ ├── Invitation.Rd │ ├── Link.Rd │ ├── ListCourseAliasesResponse.Rd │ ├── ListCourseWorkResponse.Rd │ ├── ListCoursesResponse.Rd │ ├── ListGuardianInvitationsResponse.Rd │ ├── ListGuardiansResponse.Rd │ ├── ListInvitationsResponse.Rd │ ├── ListStudentSubmissionsResponse.Rd │ ├── ListStudentsResponse.Rd │ ├── ListTeachersResponse.Rd │ ├── Material.Rd │ ├── ModifyAttachmentsRequest.Rd │ ├── MultipleChoiceQuestion.Rd │ ├── MultipleChoiceSubmission.Rd │ ├── Name.Rd │ ├── ReclaimStudentSubmissionRequest.Rd │ ├── ReturnStudentSubmissionRequest.Rd │ ├── SharedDriveFile.Rd │ ├── ShortAnswerSubmission.Rd │ ├── Student.Rd │ ├── StudentSubmission.Rd │ ├── Teacher.Rd │ ├── TimeOfDay.Rd │ ├── TurnInStudentSubmissionRequest.Rd │ ├── UserProfile.Rd │ ├── YouTubeVideo.Rd │ ├── classroom_googleAuthR.Rd │ ├── courses.create.Rd │ ├── courses.delete.Rd │ ├── courses.get.Rd │ ├── courses.list.Rd │ ├── courses.patch.Rd │ ├── courses.update.Rd │ ├── invitations.accept.Rd │ ├── invitations.create.Rd │ ├── invitations.delete.Rd │ ├── invitations.get.Rd │ ├── invitations.list.Rd │ ├── is.NullOb.Rd │ ├── rmNullObs.Rd │ └── userProfiles.get.Rd ├── googlecloudbillingv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── cloudbilling_functions.R │ └── cloudbilling_objects.R ├── README.md ├── googlecloudbillingv1.auto.Rproj └── man │ ├── BillingAccount.Rd │ ├── ListBillingAccountsResponse.Rd │ ├── ListProjectBillingInfoResponse.Rd │ ├── ProjectBillingInfo.Rd │ ├── billingAccounts.get.Rd │ ├── billingAccounts.list.Rd │ ├── cloudbilling_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── projects.getBillingInfo.Rd │ ├── projects.updateBillingInfo.Rd │ └── rmNullObs.Rd ├── googlecloudbuildv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── cloudbuild_functions.R │ └── cloudbuild_objects.R ├── README.md ├── googlecloudbuildv1.auto.Rproj └── man │ ├── Build.Rd │ ├── Build.substitutions.Rd │ ├── BuildOperationMetadata.Rd │ ├── BuildOptions.Rd │ ├── BuildStep.Rd │ ├── BuildTrigger.Rd │ ├── BuildTrigger.substitutions.Rd │ ├── BuiltImage.Rd │ ├── CancelBuildRequest.Rd │ ├── CancelOperationRequest.Rd │ ├── Empty.Rd │ ├── FileHashes.Rd │ ├── Hash.Rd │ ├── ListBuildTriggersResponse.Rd │ ├── ListBuildsResponse.Rd │ ├── ListOperationsResponse.Rd │ ├── Operation.Rd │ ├── Operation.metadata.Rd │ ├── Operation.response.Rd │ ├── RepoSource.Rd │ ├── Results.Rd │ ├── Source.Rd │ ├── SourceProvenance.Rd │ ├── SourceProvenance.fileHashes.Rd │ ├── Status.Rd │ ├── StorageSource.Rd │ ├── cloudbuild_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── operations.cancel.Rd │ ├── operations.get.Rd │ ├── operations.list.Rd │ ├── projects.builds.cancel.Rd │ ├── projects.builds.create.Rd │ ├── projects.builds.get.Rd │ ├── projects.builds.list.Rd │ ├── projects.triggers.create.Rd │ ├── projects.triggers.delete.Rd │ ├── projects.triggers.get.Rd │ ├── projects.triggers.list.Rd │ ├── projects.triggers.patch.Rd │ └── rmNullObs.Rd ├── googleclouddebuggerv2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── clouddebugger_functions.R │ └── clouddebugger_objects.R ├── README.md ├── googleclouddebuggerv2.auto.Rproj └── man │ ├── AliasContext.Rd │ ├── Breakpoint.Rd │ ├── Breakpoint.labels.Rd │ ├── CloudRepoSourceContext.Rd │ ├── CloudWorkspaceId.Rd │ ├── CloudWorkspaceSourceContext.Rd │ ├── Debuggee.Rd │ ├── Debuggee.labels.Rd │ ├── Empty.Rd │ ├── ExtendedSourceContext.Rd │ ├── ExtendedSourceContext.labels.Rd │ ├── FormatMessage.Rd │ ├── GerritSourceContext.Rd │ ├── GetBreakpointResponse.Rd │ ├── GitSourceContext.Rd │ ├── ListActiveBreakpointsResponse.Rd │ ├── ListBreakpointsResponse.Rd │ ├── ListDebuggeesResponse.Rd │ ├── ProjectRepoId.Rd │ ├── RegisterDebuggeeRequest.Rd │ ├── RegisterDebuggeeResponse.Rd │ ├── RepoId.Rd │ ├── SetBreakpointResponse.Rd │ ├── SourceContext.Rd │ ├── SourceLocation.Rd │ ├── StackFrame.Rd │ ├── StatusMessage.Rd │ ├── UpdateActiveBreakpointRequest.Rd │ ├── UpdateActiveBreakpointResponse.Rd │ ├── Variable.Rd │ ├── clouddebugger_googleAuthR.Rd │ ├── controller.debuggees.register.Rd │ ├── debugger.debuggees.list.Rd │ ├── is.NullOb.Rd │ └── rmNullObs.Rd ├── googleclouderrorreportingv1beta1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── clouderrorreporting_functions.R │ └── clouderrorreporting_objects.R ├── README.md ├── googleclouderrorreportingv1beta1.auto.Rproj └── man │ ├── DeleteEventsResponse.Rd │ ├── ErrorContext.Rd │ ├── ErrorEvent.Rd │ ├── ErrorGroup.Rd │ ├── ErrorGroupStats.Rd │ ├── HttpRequestContext.Rd │ ├── ListEventsResponse.Rd │ ├── ListGroupStatsResponse.Rd │ ├── ReportErrorEventResponse.Rd │ ├── ReportedErrorEvent.Rd │ ├── ServiceContext.Rd │ ├── SourceLocation.Rd │ ├── TimedCount.Rd │ ├── TrackingIssue.Rd │ ├── clouderrorreporting_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── projects.deleteEvents.Rd │ └── rmNullObs.Rd ├── googlecloudkmsv1beta1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── cloudkms_functions.R │ └── cloudkms_objects.R ├── README.md ├── googlecloudkmsv1beta1.auto.Rproj └── man │ ├── AuditConfig.Rd │ ├── AuditLogConfig.Rd │ ├── Binding.Rd │ ├── CloudAuditOptions.Rd │ ├── Condition.Rd │ ├── CounterOptions.Rd │ ├── CryptoKey.Rd │ ├── CryptoKeyVersion.Rd │ ├── DataAccessOptions.Rd │ ├── DecryptRequest.Rd │ ├── DecryptResponse.Rd │ ├── DestroyCryptoKeyVersionRequest.Rd │ ├── EncryptRequest.Rd │ ├── EncryptResponse.Rd │ ├── KeyRing.Rd │ ├── ListCryptoKeyVersionsResponse.Rd │ ├── ListCryptoKeysResponse.Rd │ ├── ListKeyRingsResponse.Rd │ ├── ListLocationsResponse.Rd │ ├── Location.Rd │ ├── Location.labels.Rd │ ├── Location.metadata.Rd │ ├── LogConfig.Rd │ ├── Policy.Rd │ ├── RestoreCryptoKeyVersionRequest.Rd │ ├── Rule.Rd │ ├── SetIamPolicyRequest.Rd │ ├── TestIamPermissionsRequest.Rd │ ├── TestIamPermissionsResponse.Rd │ ├── UpdateCryptoKeyPrimaryVersionRequest.Rd │ ├── cloudkms_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── projects.locations.get.Rd │ ├── projects.locations.list.Rd │ └── rmNullObs.Rd ├── googlecloudmonitoringv2beta2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── cloudmonitoring_functions.R │ └── cloudmonitoring_objects.R ├── README.md ├── googlecloudmonitoringv2beta2.auto.Rproj └── man │ ├── DeleteMetricDescriptorResponse.Rd │ ├── ListMetricDescriptorsRequest.Rd │ ├── ListMetricDescriptorsResponse.Rd │ ├── ListTimeseriesDescriptorsRequest.Rd │ ├── ListTimeseriesDescriptorsResponse.Rd │ ├── ListTimeseriesRequest.Rd │ ├── ListTimeseriesResponse.Rd │ ├── MetricDescriptor.Rd │ ├── MetricDescriptorLabelDescriptor.Rd │ ├── MetricDescriptorTypeDescriptor.Rd │ ├── Point.Rd │ ├── PointDistribution.Rd │ ├── PointDistributionBucket.Rd │ ├── PointDistributionOverflowBucket.Rd │ ├── PointDistributionUnderflowBucket.Rd │ ├── Timeseries.Rd │ ├── TimeseriesDescriptor.Rd │ ├── TimeseriesDescriptor.labels.Rd │ ├── TimeseriesDescriptorLabel.Rd │ ├── TimeseriesPoint.Rd │ ├── WriteTimeseriesRequest.Rd │ ├── WriteTimeseriesRequest.commonLabels.Rd │ ├── WriteTimeseriesResponse.Rd │ ├── cloudmonitoring_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── metricDescriptors.create.Rd │ ├── metricDescriptors.delete.Rd │ ├── metricDescriptors.list.Rd │ ├── rmNullObs.Rd │ ├── timeseries.list.Rd │ ├── timeseries.write.Rd │ └── timeseriesDescriptors.list.Rd ├── googlecloudresourcemanagerv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── cloudresourcemanager_functions.R │ └── cloudresourcemanager_objects.R ├── README.md ├── googlecloudresourcemanagerv1.auto.Rproj └── man │ ├── Ancestor.Rd │ ├── Binding.Rd │ ├── Empty.Rd │ ├── FolderOperation.Rd │ ├── FolderOperationError.Rd │ ├── GetAncestryRequest.Rd │ ├── GetAncestryResponse.Rd │ ├── GetIamPolicyRequest.Rd │ ├── Lien.Rd │ ├── ListLiensResponse.Rd │ ├── ListProjectsResponse.Rd │ ├── Operation.Rd │ ├── Operation.metadata.Rd │ ├── Operation.response.Rd │ ├── Organization.Rd │ ├── OrganizationOwner.Rd │ ├── Policy.Rd │ ├── Project.Rd │ ├── Project.labels.Rd │ ├── ProjectCreationStatus.Rd │ ├── ResourceId.Rd │ ├── SearchOrganizationsRequest.Rd │ ├── SearchOrganizationsResponse.Rd │ ├── SetIamPolicyRequest.Rd │ ├── Status.Rd │ ├── TestIamPermissionsRequest.Rd │ ├── TestIamPermissionsResponse.Rd │ ├── UndeleteProjectRequest.Rd │ ├── cloudresourcemanager_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── liens.create.Rd │ ├── liens.delete.Rd │ ├── liens.list.Rd │ ├── operations.get.Rd │ ├── organizations.get.Rd │ ├── organizations.getIamPolicy.Rd │ ├── organizations.search.Rd │ ├── organizations.setIamPolicy.Rd │ ├── organizations.testIamPermissions.Rd │ ├── projects.create.Rd │ ├── projects.delete.Rd │ ├── projects.get.Rd │ ├── projects.getAncestry.Rd │ ├── projects.getIamPolicy.Rd │ ├── projects.list.Rd │ ├── projects.setIamPolicy.Rd │ ├── projects.testIamPermissions.Rd │ ├── projects.undelete.Rd │ ├── projects.update.Rd │ └── rmNullObs.Rd ├── googlecloudresourcemanagerv1beta1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── cloudresourcemanager_functions.R │ └── cloudresourcemanager_objects.R ├── README.md ├── googlecloudresourcemanagerv1beta1.auto.Rproj └── man │ ├── Ancestor.Rd │ ├── Binding.Rd │ ├── Empty.Rd │ ├── FolderOperation.Rd │ ├── FolderOperationError.Rd │ ├── GetAncestryRequest.Rd │ ├── GetAncestryResponse.Rd │ ├── GetIamPolicyRequest.Rd │ ├── ListOrganizationsResponse.Rd │ ├── ListProjectsResponse.Rd │ ├── Organization.Rd │ ├── OrganizationOwner.Rd │ ├── Policy.Rd │ ├── Project.Rd │ ├── Project.labels.Rd │ ├── ProjectCreationStatus.Rd │ ├── ResourceId.Rd │ ├── SetIamPolicyRequest.Rd │ ├── TestIamPermissionsRequest.Rd │ ├── TestIamPermissionsResponse.Rd │ ├── UndeleteProjectRequest.Rd │ ├── cloudresourcemanager_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── organizations.get.Rd │ ├── organizations.getIamPolicy.Rd │ ├── organizations.list.Rd │ ├── organizations.setIamPolicy.Rd │ ├── organizations.testIamPermissions.Rd │ ├── organizations.update.Rd │ ├── projects.create.Rd │ ├── projects.delete.Rd │ ├── projects.get.Rd │ ├── projects.getAncestry.Rd │ ├── projects.getIamPolicy.Rd │ ├── projects.list.Rd │ ├── projects.setIamPolicy.Rd │ ├── projects.testIamPermissions.Rd │ ├── projects.undelete.Rd │ ├── projects.update.Rd │ └── rmNullObs.Rd ├── googlecloudtracev1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── cloudtrace_functions.R │ └── cloudtrace_objects.R ├── README.md ├── googlecloudtracev1.auto.Rproj └── man │ ├── Empty.Rd │ ├── ListTracesResponse.Rd │ ├── Trace.Rd │ ├── TraceSpan.Rd │ ├── TraceSpan.labels.Rd │ ├── Traces.Rd │ ├── cloudtrace_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── projects.patchTraces.Rd │ └── rmNullObs.Rd ├── googleclouduseraccountsalpha.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── clouduseraccounts_functions.R │ └── clouduseraccounts_objects.R ├── README.md ├── googleclouduseraccountsalpha.auto.Rproj └── man │ ├── AuditConfig.Rd │ ├── AuthorizedKeysView.Rd │ ├── Binding.Rd │ ├── Condition.Rd │ ├── Group.Rd │ ├── GroupList.Rd │ ├── GroupsAddMemberRequest.Rd │ ├── GroupsRemoveMemberRequest.Rd │ ├── LinuxAccountViews.Rd │ ├── LinuxGetAuthorizedKeysViewResponse.Rd │ ├── LinuxGetLinuxAccountViewsResponse.Rd │ ├── LinuxGroupView.Rd │ ├── LinuxUserView.Rd │ ├── LogConfig.Rd │ ├── LogConfigCounterOptions.Rd │ ├── Operation.Rd │ ├── Operation.error.Rd │ ├── Operation.error.errors.Rd │ ├── Operation.warnings.Rd │ ├── Operation.warnings.data.Rd │ ├── OperationList.Rd │ ├── Policy.Rd │ ├── PublicKey.Rd │ ├── Rule.Rd │ ├── TestPermissionsRequest.Rd │ ├── TestPermissionsResponse.Rd │ ├── User.Rd │ ├── UserList.Rd │ ├── clouduseraccounts_googleAuthR.Rd │ ├── globalAccountsOperations.delete.Rd │ ├── globalAccountsOperations.get.Rd │ ├── globalAccountsOperations.list.Rd │ ├── groups.addMember.Rd │ ├── groups.delete.Rd │ ├── groups.get.Rd │ ├── groups.getIamPolicy.Rd │ ├── groups.insert.Rd │ ├── groups.list.Rd │ ├── groups.removeMember.Rd │ ├── groups.setIamPolicy.Rd │ ├── groups.testIamPermissions.Rd │ ├── is.NullOb.Rd │ ├── linux.getAuthorizedKeysView.Rd │ ├── linux.getLinuxAccountViews.Rd │ ├── rmNullObs.Rd │ ├── users.addPublicKey.Rd │ ├── users.delete.Rd │ ├── users.get.Rd │ ├── users.getIamPolicy.Rd │ ├── users.insert.Rd │ ├── users.list.Rd │ ├── users.removePublicKey.Rd │ ├── users.setIamPolicy.Rd │ └── users.testIamPermissions.Rd ├── googleclouduseraccountsbeta.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── clouduseraccounts_functions.R │ └── clouduseraccounts_objects.R ├── README.md ├── googleclouduseraccountsbeta.auto.Rproj └── man │ ├── AuthorizedKeysView.Rd │ ├── Group.Rd │ ├── GroupList.Rd │ ├── GroupsAddMemberRequest.Rd │ ├── GroupsRemoveMemberRequest.Rd │ ├── LinuxAccountViews.Rd │ ├── LinuxGetAuthorizedKeysViewResponse.Rd │ ├── LinuxGetLinuxAccountViewsResponse.Rd │ ├── LinuxGroupView.Rd │ ├── LinuxUserView.Rd │ ├── Operation.Rd │ ├── Operation.error.Rd │ ├── Operation.error.errors.Rd │ ├── Operation.warnings.Rd │ ├── Operation.warnings.data.Rd │ ├── OperationList.Rd │ ├── PublicKey.Rd │ ├── User.Rd │ ├── UserList.Rd │ ├── clouduseraccounts_googleAuthR.Rd │ ├── globalAccountsOperations.delete.Rd │ ├── globalAccountsOperations.get.Rd │ ├── globalAccountsOperations.list.Rd │ ├── groups.addMember.Rd │ ├── groups.delete.Rd │ ├── groups.get.Rd │ ├── groups.insert.Rd │ ├── groups.list.Rd │ ├── groups.removeMember.Rd │ ├── is.NullOb.Rd │ ├── linux.getAuthorizedKeysView.Rd │ ├── linux.getLinuxAccountViews.Rd │ ├── rmNullObs.Rd │ ├── users.addPublicKey.Rd │ ├── users.delete.Rd │ ├── users.get.Rd │ ├── users.insert.Rd │ ├── users.list.Rd │ └── users.removePublicKey.Rd ├── googleclouduseraccountsvmalpha.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── clouduseraccounts_functions.R │ └── clouduseraccounts_objects.R ├── README.md ├── googleclouduseraccountsvmalpha.auto.Rproj └── man │ ├── AuditConfig.Rd │ ├── AuthorizedKeysView.Rd │ ├── Binding.Rd │ ├── Condition.Rd │ ├── Group.Rd │ ├── GroupList.Rd │ ├── GroupsAddMemberRequest.Rd │ ├── GroupsRemoveMemberRequest.Rd │ ├── LinuxAccountViews.Rd │ ├── LinuxGetAuthorizedKeysViewResponse.Rd │ ├── LinuxGetLinuxAccountViewsResponse.Rd │ ├── LinuxGroupView.Rd │ ├── LinuxUserView.Rd │ ├── LogConfig.Rd │ ├── LogConfigCounterOptions.Rd │ ├── Operation.Rd │ ├── Operation.error.Rd │ ├── Operation.error.errors.Rd │ ├── Operation.warnings.Rd │ ├── Operation.warnings.data.Rd │ ├── OperationList.Rd │ ├── Policy.Rd │ ├── PublicKey.Rd │ ├── Rule.Rd │ ├── TestPermissionsRequest.Rd │ ├── TestPermissionsResponse.Rd │ ├── User.Rd │ ├── UserList.Rd │ ├── clouduseraccounts_googleAuthR.Rd │ ├── globalAccountsOperations.delete.Rd │ ├── globalAccountsOperations.get.Rd │ ├── globalAccountsOperations.list.Rd │ ├── groups.addMember.Rd │ ├── groups.delete.Rd │ ├── groups.get.Rd │ ├── groups.getIamPolicy.Rd │ ├── groups.insert.Rd │ ├── groups.list.Rd │ ├── groups.removeMember.Rd │ ├── groups.setIamPolicy.Rd │ ├── groups.testIamPermissions.Rd │ ├── is.NullOb.Rd │ ├── linux.getAuthorizedKeysView.Rd │ ├── linux.getLinuxAccountViews.Rd │ ├── rmNullObs.Rd │ ├── users.addPublicKey.Rd │ ├── users.delete.Rd │ ├── users.get.Rd │ ├── users.getIamPolicy.Rd │ ├── users.insert.Rd │ ├── users.list.Rd │ ├── users.removePublicKey.Rd │ ├── users.setIamPolicy.Rd │ └── users.testIamPermissions.Rd ├── googleclouduseraccountsvmbeta.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── clouduseraccounts_functions.R │ └── clouduseraccounts_objects.R ├── README.md ├── googleclouduseraccountsvmbeta.auto.Rproj └── man │ ├── AuthorizedKeysView.Rd │ ├── Group.Rd │ ├── GroupList.Rd │ ├── GroupsAddMemberRequest.Rd │ ├── GroupsRemoveMemberRequest.Rd │ ├── LinuxAccountViews.Rd │ ├── LinuxGetAuthorizedKeysViewResponse.Rd │ ├── LinuxGetLinuxAccountViewsResponse.Rd │ ├── LinuxGroupView.Rd │ ├── LinuxUserView.Rd │ ├── Operation.Rd │ ├── Operation.error.Rd │ ├── Operation.error.errors.Rd │ ├── Operation.warnings.Rd │ ├── Operation.warnings.data.Rd │ ├── OperationList.Rd │ ├── PublicKey.Rd │ ├── User.Rd │ ├── UserList.Rd │ ├── clouduseraccounts_googleAuthR.Rd │ ├── globalAccountsOperations.delete.Rd │ ├── globalAccountsOperations.get.Rd │ ├── globalAccountsOperations.list.Rd │ ├── groups.addMember.Rd │ ├── groups.delete.Rd │ ├── groups.get.Rd │ ├── groups.insert.Rd │ ├── groups.list.Rd │ ├── groups.removeMember.Rd │ ├── is.NullOb.Rd │ ├── linux.getAuthorizedKeysView.Rd │ ├── linux.getLinuxAccountViews.Rd │ ├── rmNullObs.Rd │ ├── users.addPublicKey.Rd │ ├── users.delete.Rd │ ├── users.get.Rd │ ├── users.insert.Rd │ ├── users.list.Rd │ └── users.removePublicKey.Rd ├── googlecomputealpha.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── compute_functions.R │ └── compute_objects.R ├── README.md ├── googlecomputealpha.auto.Rproj └── man │ ├── AcceleratorConfig.Rd │ ├── AcceleratorType.Rd │ ├── AcceleratorTypeAggregatedList.Rd │ ├── AcceleratorTypeAggregatedList.items.Rd │ ├── AcceleratorTypeList.Rd │ ├── AcceleratorTypesScopedList.Rd │ ├── AcceleratorTypesScopedList.warning.Rd │ ├── AcceleratorTypesScopedList.warning.data.Rd │ ├── AccessConfig.Rd │ ├── Address.Rd │ ├── Address.labels.Rd │ ├── AddressAggregatedList.Rd │ ├── AddressAggregatedList.items.Rd │ ├── AddressList.Rd │ ├── AddressesScopedList.Rd │ ├── AddressesScopedList.warning.Rd │ ├── AddressesScopedList.warning.data.Rd │ ├── AliasIpRange.Rd │ ├── AttachedDisk.Rd │ ├── AttachedDiskInitializeParams.Rd │ ├── AuditConfig.Rd │ ├── AuditLogConfig.Rd │ ├── Autoscaler.Rd │ ├── AutoscalerAggregatedList.Rd │ ├── AutoscalerAggregatedList.items.Rd │ ├── AutoscalerList.Rd │ ├── AutoscalerStatusDetails.Rd │ ├── AutoscalersScopedList.Rd │ ├── AutoscalersScopedList.warning.Rd │ ├── AutoscalersScopedList.warning.data.Rd │ ├── AutoscalingPolicy.Rd │ ├── AutoscalingPolicyCpuUtilization.Rd │ ├── AutoscalingPolicyCustomMetricUtilization.Rd │ ├── AutoscalingPolicyLoadBalancingUtilization.Rd │ ├── AutoscalingPolicyQueueBasedScaling.Rd │ ├── AutoscalingPolicyQueueBasedScalingCloudPubSub.Rd │ ├── Backend.Rd │ ├── BackendBucket.Rd │ ├── BackendBucketList.Rd │ ├── BackendService.Rd │ ├── BackendServiceAggregatedList.Rd │ ├── BackendServiceAggregatedList.items.Rd │ ├── BackendServiceCdnPolicy.Rd │ ├── BackendServiceGroupHealth.Rd │ ├── BackendServiceIAP.Rd │ ├── BackendServiceList.Rd │ ├── BackendServicesScopedList.Rd │ ├── BackendServicesScopedList.warning.Rd │ ├── BackendServicesScopedList.warning.data.Rd │ ├── Binding.Rd │ ├── CacheInvalidationRule.Rd │ ├── CacheKeyPolicy.Rd │ ├── Commitment.Rd │ ├── CommitmentAggregatedList.Rd │ ├── CommitmentAggregatedList.items.Rd │ ├── CommitmentList.Rd │ ├── CommitmentsScopedList.Rd │ ├── CommitmentsScopedList.warning.Rd │ ├── CommitmentsScopedList.warning.data.Rd │ ├── Condition.Rd │ ├── ConnectionDraining.Rd │ ├── CustomerEncryptionKey.Rd │ ├── CustomerEncryptionKeyProtectedDisk.Rd │ ├── DeprecationStatus.Rd │ ├── Disk.Rd │ ├── Disk.labels.Rd │ ├── DiskAggregatedList.Rd │ ├── DiskAggregatedList.items.Rd │ ├── DiskList.Rd │ ├── DiskMoveRequest.Rd │ ├── DiskType.Rd │ ├── DiskTypeAggregatedList.Rd │ ├── DiskTypeAggregatedList.items.Rd │ ├── DiskTypeList.Rd │ ├── DiskTypesScopedList.Rd │ ├── DiskTypesScopedList.warning.Rd │ ├── DiskTypesScopedList.warning.data.Rd │ ├── DisksResizeRequest.Rd │ ├── DisksScopedList.Rd │ ├── DisksScopedList.warning.Rd │ ├── DisksScopedList.warning.data.Rd │ ├── DistributionPolicy.Rd │ ├── DistributionPolicyZoneConfiguration.Rd │ ├── Firewall.Rd │ ├── Firewall.allowed.Rd │ ├── Firewall.denied.Rd │ ├── FirewallList.Rd │ ├── FixedOrPercent.Rd │ ├── ForwardingRule.Rd │ ├── ForwardingRule.labels.Rd │ ├── ForwardingRuleAggregatedList.Rd │ ├── ForwardingRuleAggregatedList.items.Rd │ ├── ForwardingRuleList.Rd │ ├── ForwardingRulesScopedList.Rd │ ├── ForwardingRulesScopedList.warning.Rd │ ├── ForwardingRulesScopedList.warning.data.Rd │ ├── GlobalSetLabelsRequest.Rd │ ├── GlobalSetLabelsRequest.labels.Rd │ ├── GuestOsFeature.Rd │ ├── HTTP2HealthCheck.Rd │ ├── HTTPHealthCheck.Rd │ ├── HTTPSHealthCheck.Rd │ ├── HealthCheck.Rd │ ├── HealthCheckList.Rd │ ├── HealthCheckReference.Rd │ ├── HealthStatus.Rd │ ├── Host.Rd │ ├── HostAggregatedList.Rd │ ├── HostAggregatedList.items.Rd │ ├── HostList.Rd │ ├── HostRule.Rd │ ├── HostType.Rd │ ├── HostTypeAggregatedList.Rd │ ├── HostTypeAggregatedList.items.Rd │ ├── HostTypeList.Rd │ ├── HostTypesScopedList.Rd │ ├── HostTypesScopedList.warning.Rd │ ├── HostTypesScopedList.warning.data.Rd │ ├── HostsScopedList.Rd │ ├── HostsScopedList.warning.Rd │ ├── HostsScopedList.warning.data.Rd │ ├── HttpHealthCheckList.Rd │ ├── HttpsHealthCheckList.Rd │ ├── Image.Rd │ ├── Image.labels.Rd │ ├── Image.rawDisk.Rd │ ├── ImageList.Rd │ ├── Instance.Rd │ ├── Instance.labels.Rd │ ├── InstanceAggregatedList.Rd │ ├── InstanceAggregatedList.items.Rd │ ├── InstanceGroup.Rd │ ├── InstanceGroupAggregatedList.Rd │ ├── InstanceGroupAggregatedList.items.Rd │ ├── InstanceGroupList.Rd │ ├── InstanceGroupManager.Rd │ ├── InstanceGroupManagerActionsSummary.Rd │ ├── InstanceGroupManagerAggregatedList.Rd │ ├── InstanceGroupManagerAggregatedList.items.Rd │ ├── InstanceGroupManagerAutoHealingPolicy.Rd │ ├── InstanceGroupManagerList.Rd │ ├── InstanceGroupManagerPendingActionsSummary.Rd │ ├── InstanceGroupManagerUpdatePolicy.Rd │ ├── InstanceGroupManagerVersion.Rd │ ├── InstanceGroupManagersAbandonInstancesRequest.Rd │ ├── InstanceGroupManagersDeleteInstancesRequest.Rd │ ├── InstanceGroupManagersListManagedInstancesResponse.Rd │ ├── InstanceGroupManagersRecreateInstancesRequest.Rd │ ├── InstanceGroupManagersResizeAdvancedRequest.Rd │ ├── InstanceGroupManagersScopedList.Rd │ ├── InstanceGroupManagersScopedList.warning.Rd │ ├── InstanceGroupManagersScopedList.warning.data.Rd │ ├── InstanceGroupManagersSetAutoHealingRequest.Rd │ ├── InstanceGroupManagersSetInstanceTemplateRequest.Rd │ ├── InstanceGroupManagersSetTargetPoolsRequest.Rd │ ├── InstanceGroupsAddInstancesRequest.Rd │ ├── InstanceGroupsListInstances.Rd │ ├── InstanceGroupsListInstancesRequest.Rd │ ├── InstanceGroupsRemoveInstancesRequest.Rd │ ├── InstanceGroupsScopedList.Rd │ ├── InstanceGroupsScopedList.warning.Rd │ ├── InstanceGroupsScopedList.warning.data.Rd │ ├── InstanceGroupsSetNamedPortsRequest.Rd │ ├── InstanceList.Rd │ ├── InstanceMoveRequest.Rd │ ├── InstanceProperties.Rd │ ├── InstanceProperties.labels.Rd │ ├── InstanceReference.Rd │ ├── InstanceTemplate.Rd │ ├── InstanceTemplateList.Rd │ ├── InstanceWithNamedPorts.Rd │ ├── InstancesScopedList.Rd │ ├── InstancesScopedList.warning.Rd │ ├── InstancesScopedList.warning.data.Rd │ ├── InstancesSetLabelsRequest.Rd │ ├── InstancesSetLabelsRequest.labels.Rd │ ├── InstancesSetMachineResourcesRequest.Rd │ ├── InstancesSetMachineTypeRequest.Rd │ ├── InstancesSetMinCpuPlatformRequest.Rd │ ├── InstancesSetServiceAccountRequest.Rd │ ├── InstancesStartWithEncryptionKeyRequest.Rd │ ├── License.Rd │ ├── LicenseResourceRequirements.Rd │ ├── LogConfig.Rd │ ├── LogConfigCounterOptions.Rd │ ├── MachineType.Rd │ ├── MachineTypeAggregatedList.Rd │ ├── MachineTypeAggregatedList.items.Rd │ ├── MachineTypeList.Rd │ ├── MachineTypesScopedList.Rd │ ├── MachineTypesScopedList.warning.Rd │ ├── MachineTypesScopedList.warning.data.Rd │ ├── ManagedInstance.Rd │ ├── ManagedInstanceLastAttempt.Rd │ ├── ManagedInstanceLastAttempt.errors.Rd │ ├── ManagedInstanceLastAttempt.errors.errors.Rd │ ├── ManagedInstanceVersion.Rd │ ├── Metadata.Rd │ ├── Metadata.items.Rd │ ├── NamedPort.Rd │ ├── Network.Rd │ ├── NetworkInterface.Rd │ ├── NetworkList.Rd │ ├── NetworkPeering.Rd │ ├── NetworksAddPeeringRequest.Rd │ ├── NetworksRemovePeeringRequest.Rd │ ├── Operation.Rd │ ├── Operation.error.Rd │ ├── Operation.error.errors.Rd │ ├── Operation.warnings.Rd │ ├── Operation.warnings.data.Rd │ ├── OperationAggregatedList.Rd │ ├── OperationAggregatedList.items.Rd │ ├── OperationList.Rd │ ├── OperationsScopedList.Rd │ ├── OperationsScopedList.warning.Rd │ ├── OperationsScopedList.warning.data.Rd │ ├── PathMatcher.Rd │ ├── PathRule.Rd │ ├── Policy.Rd │ ├── Project.Rd │ ├── ProjectsDisableXpnResourceRequest.Rd │ ├── ProjectsEnableXpnResourceRequest.Rd │ ├── ProjectsGetXpnResources.Rd │ ├── ProjectsListXpnHostsRequest.Rd │ ├── ProjectsSetDefaultServiceAccountRequest.Rd │ ├── Quota.Rd │ ├── Region.Rd │ ├── RegionAutoscalerList.Rd │ ├── RegionDiskTypeList.Rd │ ├── RegionDisksResizeRequest.Rd │ ├── RegionInstanceGroupList.Rd │ ├── RegionInstanceGroupManagerList.Rd │ ├── RegionInstanceGroupManagersAbandonInstancesRequest.Rd │ ├── RegionInstanceGroupManagersDeleteInstancesRequest.Rd │ ├── RegionInstanceGroupManagersListInstancesResponse.Rd │ ├── RegionInstanceGroupManagersRecreateRequest.Rd │ ├── RegionInstanceGroupManagersSetAutoHealingRequest.Rd │ ├── RegionInstanceGroupManagersSetTargetPoolsRequest.Rd │ ├── RegionInstanceGroupManagersSetTemplateRequest.Rd │ ├── RegionInstanceGroupsListInstances.Rd │ ├── RegionInstanceGroupsListInstancesRequest.Rd │ ├── RegionInstanceGroupsSetNamedPortsRequest.Rd │ ├── RegionList.Rd │ ├── RegionSetLabelsRequest.Rd │ ├── RegionSetLabelsRequest.labels.Rd │ ├── ResourceCommitment.Rd │ ├── ResourceGroupReference.Rd │ ├── Route.Rd │ ├── Route.warnings.Rd │ ├── Route.warnings.data.Rd │ ├── RouteList.Rd │ ├── Router.Rd │ ├── RouterAggregatedList.Rd │ ├── RouterAggregatedList.items.Rd │ ├── RouterBgp.Rd │ ├── RouterBgpPeer.Rd │ ├── RouterInterface.Rd │ ├── RouterList.Rd │ ├── RouterStatus.Rd │ ├── RouterStatusBgpPeerStatus.Rd │ ├── RouterStatusResponse.Rd │ ├── RoutersPreviewResponse.Rd │ ├── RoutersScopedList.Rd │ ├── RoutersScopedList.warning.Rd │ ├── RoutersScopedList.warning.data.Rd │ ├── Rule.Rd │ ├── SSLHealthCheck.Rd │ ├── Scheduling.Rd │ ├── SerialPortOutput.Rd │ ├── ServiceAccount.Rd │ ├── Snapshot.Rd │ ├── Snapshot.labels.Rd │ ├── SnapshotList.Rd │ ├── SpreadingPolicy.Rd │ ├── SpreadingPolicyZoneConfiguration.Rd │ ├── SslCertificate.Rd │ ├── SslCertificateList.Rd │ ├── Subnetwork.Rd │ ├── SubnetworkAggregatedList.Rd │ ├── SubnetworkAggregatedList.items.Rd │ ├── SubnetworkList.Rd │ ├── SubnetworkSecondaryRange.Rd │ ├── SubnetworksExpandIpCidrRangeRequest.Rd │ ├── SubnetworksScopedList.Rd │ ├── SubnetworksScopedList.warning.Rd │ ├── SubnetworksScopedList.warning.data.Rd │ ├── SubnetworksSetPrivateIpGoogleAccessRequest.Rd │ ├── TCPHealthCheck.Rd │ ├── Tags.Rd │ ├── TargetHttpProxy.Rd │ ├── TargetHttpProxyList.Rd │ ├── TargetHttpsProxiesSetSslCertificatesRequest.Rd │ ├── TargetHttpsProxy.Rd │ ├── TargetHttpsProxyList.Rd │ ├── TargetInstance.Rd │ ├── TargetInstanceAggregatedList.Rd │ ├── TargetInstanceAggregatedList.items.Rd │ ├── TargetInstanceList.Rd │ ├── TargetInstancesScopedList.Rd │ ├── TargetInstancesScopedList.warning.Rd │ ├── TargetInstancesScopedList.warning.data.Rd │ ├── TargetPool.Rd │ ├── TargetPoolAggregatedList.Rd │ ├── TargetPoolAggregatedList.items.Rd │ ├── TargetPoolInstanceHealth.Rd │ ├── TargetPoolList.Rd │ ├── TargetPoolsAddHealthCheckRequest.Rd │ ├── TargetPoolsAddInstanceRequest.Rd │ ├── TargetPoolsRemoveHealthCheckRequest.Rd │ ├── TargetPoolsRemoveInstanceRequest.Rd │ ├── TargetPoolsScopedList.Rd │ ├── TargetPoolsScopedList.warning.Rd │ ├── TargetPoolsScopedList.warning.data.Rd │ ├── TargetReference.Rd │ ├── TargetSslProxiesSetBackendServiceRequest.Rd │ ├── TargetSslProxiesSetProxyHeaderRequest.Rd │ ├── TargetSslProxiesSetSslCertificatesRequest.Rd │ ├── TargetSslProxy.Rd │ ├── TargetSslProxyList.Rd │ ├── TargetTcpProxiesSetBackendServiceRequest.Rd │ ├── TargetTcpProxiesSetProxyHeaderRequest.Rd │ ├── TargetTcpProxy.Rd │ ├── TargetTcpProxyList.Rd │ ├── TargetVpnGateway.Rd │ ├── TargetVpnGatewayAggregatedList.Rd │ ├── TargetVpnGatewayAggregatedList.items.Rd │ ├── TargetVpnGatewayList.Rd │ ├── TargetVpnGatewaysScopedList.Rd │ ├── TargetVpnGatewaysScopedList.warning.Rd │ ├── TargetVpnGatewaysScopedList.warning.data.Rd │ ├── TestFailure.Rd │ ├── TestPermissionsRequest.Rd │ ├── TestPermissionsResponse.Rd │ ├── UDPHealthCheck.Rd │ ├── UrlMap.Rd │ ├── UrlMapList.Rd │ ├── UrlMapReference.Rd │ ├── UrlMapTest.Rd │ ├── UrlMapValidationResult.Rd │ ├── UrlMapsValidateRequest.Rd │ ├── UrlMapsValidateResponse.Rd │ ├── UsageExportLocation.Rd │ ├── VpnTunnel.Rd │ ├── VpnTunnel.labels.Rd │ ├── VpnTunnelAggregatedList.Rd │ ├── VpnTunnelAggregatedList.items.Rd │ ├── VpnTunnelList.Rd │ ├── VpnTunnelsScopedList.Rd │ ├── VpnTunnelsScopedList.warning.Rd │ ├── VpnTunnelsScopedList.warning.data.Rd │ ├── XpnHostList.Rd │ ├── XpnResourceId.Rd │ ├── Zone.Rd │ ├── ZoneList.Rd │ ├── ZoneSetLabelsRequest.Rd │ ├── ZoneSetLabelsRequest.labels.Rd │ ├── acceleratorTypes.aggregatedList.Rd │ ├── acceleratorTypes.get.Rd │ ├── acceleratorTypes.list.Rd │ ├── addresses.aggregatedList.Rd │ ├── addresses.delete.Rd │ ├── addresses.get.Rd │ ├── addresses.insert.Rd │ ├── addresses.list.Rd │ ├── addresses.setLabels.Rd │ ├── addresses.testIamPermissions.Rd │ ├── autoscalers.aggregatedList.Rd │ ├── autoscalers.delete.Rd │ ├── autoscalers.get.Rd │ ├── autoscalers.insert.Rd │ ├── autoscalers.list.Rd │ ├── autoscalers.patch.Rd │ ├── autoscalers.testIamPermissions.Rd │ ├── autoscalers.update.Rd │ ├── backendBuckets.delete.Rd │ ├── backendBuckets.get.Rd │ ├── backendBuckets.getIamPolicy.Rd │ ├── backendBuckets.insert.Rd │ ├── backendBuckets.list.Rd │ ├── backendBuckets.patch.Rd │ ├── backendBuckets.setIamPolicy.Rd │ ├── backendBuckets.testIamPermissions.Rd │ ├── backendBuckets.update.Rd │ ├── backendServices.aggregatedList.Rd │ ├── backendServices.delete.Rd │ ├── backendServices.get.Rd │ ├── backendServices.getHealth.Rd │ ├── backendServices.insert.Rd │ ├── backendServices.list.Rd │ ├── backendServices.patch.Rd │ ├── backendServices.testIamPermissions.Rd │ ├── backendServices.update.Rd │ ├── clientSslPolicies.testIamPermissions.Rd │ ├── commitments.aggregatedList.Rd │ ├── commitments.get.Rd │ ├── commitments.insert.Rd │ ├── commitments.list.Rd │ ├── commitments.testIamPermissions.Rd │ ├── compute_googleAuthR.Rd │ ├── diskTypes.aggregatedList.Rd │ ├── diskTypes.get.Rd │ ├── diskTypes.list.Rd │ ├── disks.aggregatedList.Rd │ ├── disks.createSnapshot.Rd │ ├── disks.delete.Rd │ ├── disks.get.Rd │ ├── disks.insert.Rd │ ├── disks.list.Rd │ ├── disks.resize.Rd │ ├── disks.setLabels.Rd │ ├── disks.testIamPermissions.Rd │ ├── firewalls.delete.Rd │ ├── firewalls.get.Rd │ ├── firewalls.insert.Rd │ ├── firewalls.list.Rd │ ├── firewalls.patch.Rd │ ├── firewalls.testIamPermissions.Rd │ ├── firewalls.update.Rd │ ├── forwardingRules.aggregatedList.Rd │ ├── forwardingRules.delete.Rd │ ├── forwardingRules.get.Rd │ ├── forwardingRules.insert.Rd │ ├── forwardingRules.list.Rd │ ├── forwardingRules.setLabels.Rd │ ├── forwardingRules.setTarget.Rd │ ├── forwardingRules.testIamPermissions.Rd │ ├── globalAddresses.delete.Rd │ ├── globalAddresses.get.Rd │ ├── globalAddresses.insert.Rd │ ├── globalAddresses.list.Rd │ ├── globalAddresses.setLabels.Rd │ ├── globalAddresses.testIamPermissions.Rd │ ├── globalForwardingRules.delete.Rd │ ├── globalForwardingRules.get.Rd │ ├── globalForwardingRules.insert.Rd │ ├── globalForwardingRules.list.Rd │ ├── globalForwardingRules.setLabels.Rd │ ├── globalForwardingRules.setTarget.Rd │ ├── globalForwardingRules.testIamPermissions.Rd │ ├── globalOperations.aggregatedList.Rd │ ├── globalOperations.delete.Rd │ ├── globalOperations.get.Rd │ ├── globalOperations.list.Rd │ ├── healthChecks.delete.Rd │ ├── healthChecks.get.Rd │ ├── healthChecks.insert.Rd │ ├── healthChecks.list.Rd │ ├── healthChecks.patch.Rd │ ├── healthChecks.testIamPermissions.Rd │ ├── healthChecks.update.Rd │ ├── hostTypes.aggregatedList.Rd │ ├── hostTypes.get.Rd │ ├── hostTypes.list.Rd │ ├── hosts.aggregatedList.Rd │ ├── hosts.delete.Rd │ ├── hosts.get.Rd │ ├── hosts.getIamPolicy.Rd │ ├── hosts.insert.Rd │ ├── hosts.list.Rd │ ├── hosts.setIamPolicy.Rd │ ├── hosts.testIamPermissions.Rd │ ├── httpHealthChecks.delete.Rd │ ├── httpHealthChecks.get.Rd │ ├── httpHealthChecks.insert.Rd │ ├── httpHealthChecks.list.Rd │ ├── httpHealthChecks.patch.Rd │ ├── httpHealthChecks.testIamPermissions.Rd │ ├── httpHealthChecks.update.Rd │ ├── httpsHealthChecks.delete.Rd │ ├── httpsHealthChecks.get.Rd │ ├── httpsHealthChecks.insert.Rd │ ├── httpsHealthChecks.list.Rd │ ├── httpsHealthChecks.patch.Rd │ ├── httpsHealthChecks.testIamPermissions.Rd │ ├── httpsHealthChecks.update.Rd │ ├── images.delete.Rd │ ├── images.deprecate.Rd │ ├── images.get.Rd │ ├── images.getFromFamily.Rd │ ├── images.insert.Rd │ ├── images.list.Rd │ ├── images.setLabels.Rd │ ├── images.testIamPermissions.Rd │ ├── instanceGroupManagers.abandonInstances.Rd │ ├── instanceGroupManagers.aggregatedList.Rd │ ├── instanceGroupManagers.delete.Rd │ ├── instanceGroupManagers.deleteInstances.Rd │ ├── instanceGroupManagers.get.Rd │ ├── instanceGroupManagers.insert.Rd │ ├── instanceGroupManagers.list.Rd │ ├── instanceGroupManagers.listManagedInstances.Rd │ ├── instanceGroupManagers.patch.Rd │ ├── instanceGroupManagers.recreateInstances.Rd │ ├── instanceGroupManagers.resize.Rd │ ├── instanceGroupManagers.resizeAdvanced.Rd │ ├── instanceGroupManagers.setAutoHealingPolicies.Rd │ ├── instanceGroupManagers.setInstanceTemplate.Rd │ ├── instanceGroupManagers.setTargetPools.Rd │ ├── instanceGroupManagers.testIamPermissions.Rd │ ├── instanceGroupManagers.update.Rd │ ├── instanceGroups.addInstances.Rd │ ├── instanceGroups.aggregatedList.Rd │ ├── instanceGroups.delete.Rd │ ├── instanceGroups.get.Rd │ ├── instanceGroups.insert.Rd │ ├── instanceGroups.list.Rd │ ├── instanceGroups.listInstances.Rd │ ├── instanceGroups.removeInstances.Rd │ ├── instanceGroups.setNamedPorts.Rd │ ├── instanceGroups.testIamPermissions.Rd │ ├── instanceTemplates.delete.Rd │ ├── instanceTemplates.get.Rd │ ├── instanceTemplates.insert.Rd │ ├── instanceTemplates.list.Rd │ ├── instanceTemplates.testIamPermissions.Rd │ ├── instances.addAccessConfig.Rd │ ├── instances.aggregatedList.Rd │ ├── instances.attachDisk.Rd │ ├── instances.delete.Rd │ ├── instances.deleteAccessConfig.Rd │ ├── instances.detachDisk.Rd │ ├── instances.get.Rd │ ├── instances.getIamPolicy.Rd │ ├── instances.getSerialPortOutput.Rd │ ├── instances.insert.Rd │ ├── instances.list.Rd │ ├── instances.reset.Rd │ ├── instances.setDiskAutoDelete.Rd │ ├── instances.setIamPolicy.Rd │ ├── instances.setLabels.Rd │ ├── instances.setMachineResources.Rd │ ├── instances.setMachineType.Rd │ ├── instances.setMetadata.Rd │ ├── instances.setMinCpuPlatform.Rd │ ├── instances.setScheduling.Rd │ ├── instances.setServiceAccount.Rd │ ├── instances.setTags.Rd │ ├── instances.start.Rd │ ├── instances.startWithEncryptionKey.Rd │ ├── instances.stop.Rd │ ├── instances.suspend.Rd │ ├── instances.testIamPermissions.Rd │ ├── instances.updateAccessConfig.Rd │ ├── is.NullOb.Rd │ ├── licenses.get.Rd │ ├── machineTypes.aggregatedList.Rd │ ├── machineTypes.get.Rd │ ├── machineTypes.list.Rd │ ├── networks.addPeering.Rd │ ├── networks.delete.Rd │ ├── networks.get.Rd │ ├── networks.insert.Rd │ ├── networks.list.Rd │ ├── networks.removePeering.Rd │ ├── networks.switchToCustomMode.Rd │ ├── networks.testIamPermissions.Rd │ ├── projects.disableXpnHost.Rd │ ├── projects.disableXpnResource.Rd │ ├── projects.enableXpnHost.Rd │ ├── projects.enableXpnResource.Rd │ ├── projects.get.Rd │ ├── projects.getXpnHost.Rd │ ├── projects.getXpnResources.Rd │ ├── projects.listXpnHosts.Rd │ ├── projects.moveDisk.Rd │ ├── projects.moveInstance.Rd │ ├── projects.setCommonInstanceMetadata.Rd │ ├── projects.setDefaultServiceAccount.Rd │ ├── projects.setUsageExportBucket.Rd │ ├── regionAutoscalers.delete.Rd │ ├── regionAutoscalers.get.Rd │ ├── regionAutoscalers.insert.Rd │ ├── regionAutoscalers.list.Rd │ ├── regionAutoscalers.patch.Rd │ ├── regionAutoscalers.testIamPermissions.Rd │ ├── regionAutoscalers.update.Rd │ ├── regionBackendServices.delete.Rd │ ├── regionBackendServices.get.Rd │ ├── regionBackendServices.getHealth.Rd │ ├── regionBackendServices.insert.Rd │ ├── regionBackendServices.list.Rd │ ├── regionBackendServices.patch.Rd │ ├── regionBackendServices.testIamPermissions.Rd │ ├── regionBackendServices.update.Rd │ ├── regionDiskTypes.get.Rd │ ├── regionDiskTypes.list.Rd │ ├── regionDisks.createSnapshot.Rd │ ├── regionDisks.delete.Rd │ ├── regionDisks.get.Rd │ ├── regionDisks.insert.Rd │ ├── regionDisks.list.Rd │ ├── regionDisks.resize.Rd │ ├── regionDisks.setLabels.Rd │ ├── regionDisks.testIamPermissions.Rd │ ├── regionInstanceGroupManagers.abandonInstances.Rd │ ├── regionInstanceGroupManagers.delete.Rd │ ├── regionInstanceGroupManagers.deleteInstances.Rd │ ├── regionInstanceGroupManagers.get.Rd │ ├── regionInstanceGroupManagers.insert.Rd │ ├── regionInstanceGroupManagers.list.Rd │ ├── regionInstanceGroupManagers.listManagedInstances.Rd │ ├── regionInstanceGroupManagers.patch.Rd │ ├── regionInstanceGroupManagers.recreateInstances.Rd │ ├── regionInstanceGroupManagers.resize.Rd │ ├── regionInstanceGroupManagers.setAutoHealingPolicies.Rd │ ├── regionInstanceGroupManagers.setInstanceTemplate.Rd │ ├── regionInstanceGroupManagers.setTargetPools.Rd │ ├── regionInstanceGroupManagers.testIamPermissions.Rd │ ├── regionInstanceGroupManagers.update.Rd │ ├── regionInstanceGroups.get.Rd │ ├── regionInstanceGroups.list.Rd │ ├── regionInstanceGroups.listInstances.Rd │ ├── regionInstanceGroups.setNamedPorts.Rd │ ├── regionInstanceGroups.testIamPermissions.Rd │ ├── regionOperations.delete.Rd │ ├── regionOperations.get.Rd │ ├── regionOperations.list.Rd │ ├── regions.get.Rd │ ├── regions.list.Rd │ ├── rmNullObs.Rd │ ├── routers.aggregatedList.Rd │ ├── routers.delete.Rd │ ├── routers.get.Rd │ ├── routers.getRouterStatus.Rd │ ├── routers.insert.Rd │ ├── routers.list.Rd │ ├── routers.patch.Rd │ ├── routers.preview.Rd │ ├── routers.testIamPermissions.Rd │ ├── routers.update.Rd │ ├── routes.delete.Rd │ ├── routes.get.Rd │ ├── routes.insert.Rd │ ├── routes.list.Rd │ ├── routes.testIamPermissions.Rd │ ├── snapshots.delete.Rd │ ├── snapshots.get.Rd │ ├── snapshots.list.Rd │ ├── snapshots.setLabels.Rd │ ├── snapshots.testIamPermissions.Rd │ ├── sslCertificates.delete.Rd │ ├── sslCertificates.get.Rd │ ├── sslCertificates.insert.Rd │ ├── sslCertificates.list.Rd │ ├── sslCertificates.testIamPermissions.Rd │ ├── subnetworks.aggregatedList.Rd │ ├── subnetworks.delete.Rd │ ├── subnetworks.expandIpCidrRange.Rd │ ├── subnetworks.get.Rd │ ├── subnetworks.getIamPolicy.Rd │ ├── subnetworks.insert.Rd │ ├── subnetworks.list.Rd │ ├── subnetworks.setIamPolicy.Rd │ ├── subnetworks.setPrivateIpGoogleAccess.Rd │ ├── subnetworks.testIamPermissions.Rd │ ├── targetHttpProxies.delete.Rd │ ├── targetHttpProxies.get.Rd │ ├── targetHttpProxies.insert.Rd │ ├── targetHttpProxies.list.Rd │ ├── targetHttpProxies.setUrlMap.Rd │ ├── targetHttpProxies.testIamPermissions.Rd │ ├── targetHttpsProxies.delete.Rd │ ├── targetHttpsProxies.get.Rd │ ├── targetHttpsProxies.insert.Rd │ ├── targetHttpsProxies.list.Rd │ ├── targetHttpsProxies.setSslCertificates.Rd │ ├── targetHttpsProxies.setUrlMap.Rd │ ├── targetHttpsProxies.testIamPermissions.Rd │ ├── targetInstances.aggregatedList.Rd │ ├── targetInstances.delete.Rd │ ├── targetInstances.get.Rd │ ├── targetInstances.insert.Rd │ ├── targetInstances.list.Rd │ ├── targetInstances.testIamPermissions.Rd │ ├── targetPools.addHealthCheck.Rd │ ├── targetPools.addInstance.Rd │ ├── targetPools.aggregatedList.Rd │ ├── targetPools.delete.Rd │ ├── targetPools.get.Rd │ ├── targetPools.getHealth.Rd │ ├── targetPools.insert.Rd │ ├── targetPools.list.Rd │ ├── targetPools.removeHealthCheck.Rd │ ├── targetPools.removeInstance.Rd │ ├── targetPools.setBackup.Rd │ ├── targetPools.testIamPermissions.Rd │ ├── targetSslProxies.delete.Rd │ ├── targetSslProxies.get.Rd │ ├── targetSslProxies.insert.Rd │ ├── targetSslProxies.list.Rd │ ├── targetSslProxies.setBackendService.Rd │ ├── targetSslProxies.setProxyHeader.Rd │ ├── targetSslProxies.setSslCertificates.Rd │ ├── targetSslProxies.testIamPermissions.Rd │ ├── targetTcpProxies.delete.Rd │ ├── targetTcpProxies.get.Rd │ ├── targetTcpProxies.insert.Rd │ ├── targetTcpProxies.list.Rd │ ├── targetTcpProxies.setBackendService.Rd │ ├── targetTcpProxies.setProxyHeader.Rd │ ├── targetTcpProxies.testIamPermissions.Rd │ ├── targetVpnGateways.aggregatedList.Rd │ ├── targetVpnGateways.delete.Rd │ ├── targetVpnGateways.get.Rd │ ├── targetVpnGateways.insert.Rd │ ├── targetVpnGateways.list.Rd │ ├── targetVpnGateways.testIamPermissions.Rd │ ├── urlMaps.delete.Rd │ ├── urlMaps.get.Rd │ ├── urlMaps.insert.Rd │ ├── urlMaps.invalidateCache.Rd │ ├── urlMaps.list.Rd │ ├── urlMaps.patch.Rd │ ├── urlMaps.testIamPermissions.Rd │ ├── urlMaps.update.Rd │ ├── urlMaps.validate.Rd │ ├── vpnTunnels.aggregatedList.Rd │ ├── vpnTunnels.delete.Rd │ ├── vpnTunnels.get.Rd │ ├── vpnTunnels.insert.Rd │ ├── vpnTunnels.list.Rd │ ├── vpnTunnels.setLabels.Rd │ ├── vpnTunnels.testIamPermissions.Rd │ ├── zoneOperations.delete.Rd │ ├── zoneOperations.get.Rd │ ├── zoneOperations.list.Rd │ ├── zones.get.Rd │ └── zones.list.Rd ├── googlecomputebeta.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── compute_functions.R │ └── compute_objects.R ├── README.md ├── googlecomputebeta.auto.Rproj └── man │ ├── AcceleratorConfig.Rd │ ├── AcceleratorType.Rd │ ├── AcceleratorTypeAggregatedList.Rd │ ├── AcceleratorTypeAggregatedList.items.Rd │ ├── AcceleratorTypeList.Rd │ ├── AcceleratorTypesScopedList.Rd │ ├── AcceleratorTypesScopedList.warning.Rd │ ├── AcceleratorTypesScopedList.warning.data.Rd │ ├── AccessConfig.Rd │ ├── Address.Rd │ ├── AddressAggregatedList.Rd │ ├── AddressAggregatedList.items.Rd │ ├── AddressList.Rd │ ├── AddressesScopedList.Rd │ ├── AddressesScopedList.warning.Rd │ ├── AddressesScopedList.warning.data.Rd │ ├── AttachedDisk.Rd │ ├── AttachedDiskInitializeParams.Rd │ ├── AuditConfig.Rd │ ├── AuditLogConfig.Rd │ ├── Autoscaler.Rd │ ├── AutoscalerAggregatedList.Rd │ ├── AutoscalerAggregatedList.items.Rd │ ├── AutoscalerList.Rd │ ├── AutoscalerStatusDetails.Rd │ ├── AutoscalersScopedList.Rd │ ├── AutoscalersScopedList.warning.Rd │ ├── AutoscalersScopedList.warning.data.Rd │ ├── AutoscalingPolicy.Rd │ ├── AutoscalingPolicyCpuUtilization.Rd │ ├── AutoscalingPolicyCustomMetricUtilization.Rd │ ├── AutoscalingPolicyLoadBalancingUtilization.Rd │ ├── Backend.Rd │ ├── BackendBucket.Rd │ ├── BackendBucketList.Rd │ ├── BackendService.Rd │ ├── BackendServiceAggregatedList.Rd │ ├── BackendServiceAggregatedList.items.Rd │ ├── BackendServiceCdnPolicy.Rd │ ├── BackendServiceGroupHealth.Rd │ ├── BackendServiceIAP.Rd │ ├── BackendServiceList.Rd │ ├── BackendServicesScopedList.Rd │ ├── BackendServicesScopedList.warning.Rd │ ├── BackendServicesScopedList.warning.data.Rd │ ├── Binding.Rd │ ├── CacheInvalidationRule.Rd │ ├── CacheKeyPolicy.Rd │ ├── Condition.Rd │ ├── ConnectionDraining.Rd │ ├── CustomerEncryptionKey.Rd │ ├── CustomerEncryptionKeyProtectedDisk.Rd │ ├── DeprecationStatus.Rd │ ├── Disk.Rd │ ├── Disk.labels.Rd │ ├── DiskAggregatedList.Rd │ ├── DiskAggregatedList.items.Rd │ ├── DiskList.Rd │ ├── DiskMoveRequest.Rd │ ├── DiskType.Rd │ ├── DiskTypeAggregatedList.Rd │ ├── DiskTypeAggregatedList.items.Rd │ ├── DiskTypeList.Rd │ ├── DiskTypesScopedList.Rd │ ├── DiskTypesScopedList.warning.Rd │ ├── DiskTypesScopedList.warning.data.Rd │ ├── DisksResizeRequest.Rd │ ├── DisksScopedList.Rd │ ├── DisksScopedList.warning.Rd │ ├── DisksScopedList.warning.data.Rd │ ├── Firewall.Rd │ ├── Firewall.allowed.Rd │ ├── FirewallList.Rd │ ├── ForwardingRule.Rd │ ├── ForwardingRuleAggregatedList.Rd │ ├── ForwardingRuleAggregatedList.items.Rd │ ├── ForwardingRuleList.Rd │ ├── ForwardingRulesScopedList.Rd │ ├── ForwardingRulesScopedList.warning.Rd │ ├── ForwardingRulesScopedList.warning.data.Rd │ ├── GlobalSetLabelsRequest.Rd │ ├── GlobalSetLabelsRequest.labels.Rd │ ├── GuestOsFeature.Rd │ ├── HTTPHealthCheck.Rd │ ├── HTTPSHealthCheck.Rd │ ├── HealthCheck.Rd │ ├── HealthCheckList.Rd │ ├── HealthCheckReference.Rd │ ├── HealthStatus.Rd │ ├── HostRule.Rd │ ├── HttpHealthCheckList.Rd │ ├── HttpsHealthCheckList.Rd │ ├── Image.Rd │ ├── Image.labels.Rd │ ├── Image.rawDisk.Rd │ ├── ImageList.Rd │ ├── Instance.Rd │ ├── Instance.labels.Rd │ ├── InstanceAggregatedList.Rd │ ├── InstanceAggregatedList.items.Rd │ ├── InstanceGroup.Rd │ ├── InstanceGroupAggregatedList.Rd │ ├── InstanceGroupAggregatedList.items.Rd │ ├── InstanceGroupList.Rd │ ├── InstanceGroupManager.Rd │ ├── InstanceGroupManagerActionsSummary.Rd │ ├── InstanceGroupManagerAggregatedList.Rd │ ├── InstanceGroupManagerAggregatedList.items.Rd │ ├── InstanceGroupManagerAutoHealingPolicy.Rd │ ├── InstanceGroupManagerList.Rd │ ├── InstanceGroupManagersAbandonInstancesRequest.Rd │ ├── InstanceGroupManagersDeleteInstancesRequest.Rd │ ├── InstanceGroupManagersListManagedInstancesResponse.Rd │ ├── InstanceGroupManagersRecreateInstancesRequest.Rd │ ├── InstanceGroupManagersResizeAdvancedRequest.Rd │ ├── InstanceGroupManagersScopedList.Rd │ ├── InstanceGroupManagersScopedList.warning.Rd │ ├── InstanceGroupManagersScopedList.warning.data.Rd │ ├── InstanceGroupManagersSetAutoHealingRequest.Rd │ ├── InstanceGroupManagersSetInstanceTemplateRequest.Rd │ ├── InstanceGroupManagersSetTargetPoolsRequest.Rd │ ├── InstanceGroupsAddInstancesRequest.Rd │ ├── InstanceGroupsListInstances.Rd │ ├── InstanceGroupsListInstancesRequest.Rd │ ├── InstanceGroupsRemoveInstancesRequest.Rd │ ├── InstanceGroupsScopedList.Rd │ ├── InstanceGroupsScopedList.warning.Rd │ ├── InstanceGroupsScopedList.warning.data.Rd │ ├── InstanceGroupsSetNamedPortsRequest.Rd │ ├── InstanceList.Rd │ ├── InstanceMoveRequest.Rd │ ├── InstanceProperties.Rd │ ├── InstanceProperties.labels.Rd │ ├── InstanceReference.Rd │ ├── InstanceTemplate.Rd │ ├── InstanceTemplateList.Rd │ ├── InstanceWithNamedPorts.Rd │ ├── InstancesScopedList.Rd │ ├── InstancesScopedList.warning.Rd │ ├── InstancesScopedList.warning.data.Rd │ ├── InstancesSetLabelsRequest.Rd │ ├── InstancesSetLabelsRequest.labels.Rd │ ├── InstancesSetMachineResourcesRequest.Rd │ ├── InstancesSetMachineTypeRequest.Rd │ ├── InstancesSetServiceAccountRequest.Rd │ ├── InstancesStartWithEncryptionKeyRequest.Rd │ ├── License.Rd │ ├── LogConfig.Rd │ ├── LogConfigCounterOptions.Rd │ ├── MachineType.Rd │ ├── MachineTypeAggregatedList.Rd │ ├── MachineTypeAggregatedList.items.Rd │ ├── MachineTypeList.Rd │ ├── MachineTypesScopedList.Rd │ ├── MachineTypesScopedList.warning.Rd │ ├── MachineTypesScopedList.warning.data.Rd │ ├── ManagedInstance.Rd │ ├── ManagedInstanceLastAttempt.Rd │ ├── ManagedInstanceLastAttempt.errors.Rd │ ├── ManagedInstanceLastAttempt.errors.errors.Rd │ ├── Metadata.Rd │ ├── Metadata.items.Rd │ ├── NamedPort.Rd │ ├── Network.Rd │ ├── NetworkInterface.Rd │ ├── NetworkList.Rd │ ├── NetworkPeering.Rd │ ├── Operation.Rd │ ├── Operation.error.Rd │ ├── Operation.error.errors.Rd │ ├── Operation.warnings.Rd │ ├── Operation.warnings.data.Rd │ ├── OperationAggregatedList.Rd │ ├── OperationAggregatedList.items.Rd │ ├── OperationList.Rd │ ├── OperationsScopedList.Rd │ ├── OperationsScopedList.warning.Rd │ ├── OperationsScopedList.warning.data.Rd │ ├── PathMatcher.Rd │ ├── PathRule.Rd │ ├── Policy.Rd │ ├── Project.Rd │ ├── ProjectsListXpnHostsRequest.Rd │ ├── Quota.Rd │ ├── Region.Rd │ ├── RegionAutoscalerList.Rd │ ├── RegionInstanceGroupList.Rd │ ├── RegionInstanceGroupManagerList.Rd │ ├── RegionInstanceGroupManagersAbandonInstancesRequest.Rd │ ├── RegionInstanceGroupManagersDeleteInstancesRequest.Rd │ ├── RegionInstanceGroupManagersListInstancesResponse.Rd │ ├── RegionInstanceGroupManagersRecreateRequest.Rd │ ├── RegionInstanceGroupManagersSetAutoHealingRequest.Rd │ ├── RegionInstanceGroupManagersSetTargetPoolsRequest.Rd │ ├── RegionInstanceGroupManagersSetTemplateRequest.Rd │ ├── RegionInstanceGroupsListInstances.Rd │ ├── RegionInstanceGroupsListInstancesRequest.Rd │ ├── RegionInstanceGroupsSetNamedPortsRequest.Rd │ ├── RegionList.Rd │ ├── ResourceGroupReference.Rd │ ├── Route.Rd │ ├── Route.warnings.Rd │ ├── Route.warnings.data.Rd │ ├── RouteList.Rd │ ├── Router.Rd │ ├── RouterAggregatedList.Rd │ ├── RouterAggregatedList.items.Rd │ ├── RouterBgp.Rd │ ├── RouterBgpPeer.Rd │ ├── RouterInterface.Rd │ ├── RouterList.Rd │ ├── RouterStatus.Rd │ ├── RouterStatusBgpPeerStatus.Rd │ ├── RouterStatusResponse.Rd │ ├── RoutersPreviewResponse.Rd │ ├── RoutersScopedList.Rd │ ├── RoutersScopedList.warning.Rd │ ├── RoutersScopedList.warning.data.Rd │ ├── Rule.Rd │ ├── SSLHealthCheck.Rd │ ├── Scheduling.Rd │ ├── SerialPortOutput.Rd │ ├── ServiceAccount.Rd │ ├── Snapshot.Rd │ ├── Snapshot.labels.Rd │ ├── SnapshotList.Rd │ ├── SslCertificate.Rd │ ├── SslCertificateList.Rd │ ├── Subnetwork.Rd │ ├── SubnetworkAggregatedList.Rd │ ├── SubnetworkAggregatedList.items.Rd │ ├── SubnetworkList.Rd │ ├── SubnetworksExpandIpCidrRangeRequest.Rd │ ├── SubnetworksScopedList.Rd │ ├── SubnetworksScopedList.warning.Rd │ ├── SubnetworksScopedList.warning.data.Rd │ ├── TCPHealthCheck.Rd │ ├── Tags.Rd │ ├── TargetHttpProxy.Rd │ ├── TargetHttpProxyList.Rd │ ├── TargetHttpsProxiesSetSslCertificatesRequest.Rd │ ├── TargetHttpsProxy.Rd │ ├── TargetHttpsProxyList.Rd │ ├── TargetInstance.Rd │ ├── TargetInstanceAggregatedList.Rd │ ├── TargetInstanceAggregatedList.items.Rd │ ├── TargetInstanceList.Rd │ ├── TargetInstancesScopedList.Rd │ ├── TargetInstancesScopedList.warning.Rd │ ├── TargetInstancesScopedList.warning.data.Rd │ ├── TargetPool.Rd │ ├── TargetPoolAggregatedList.Rd │ ├── TargetPoolAggregatedList.items.Rd │ ├── TargetPoolInstanceHealth.Rd │ ├── TargetPoolList.Rd │ ├── TargetPoolsAddHealthCheckRequest.Rd │ ├── TargetPoolsAddInstanceRequest.Rd │ ├── TargetPoolsRemoveHealthCheckRequest.Rd │ ├── TargetPoolsRemoveInstanceRequest.Rd │ ├── TargetPoolsScopedList.Rd │ ├── TargetPoolsScopedList.warning.Rd │ ├── TargetPoolsScopedList.warning.data.Rd │ ├── TargetReference.Rd │ ├── TargetSslProxiesSetBackendServiceRequest.Rd │ ├── TargetSslProxiesSetProxyHeaderRequest.Rd │ ├── TargetSslProxiesSetSslCertificatesRequest.Rd │ ├── TargetSslProxy.Rd │ ├── TargetSslProxyList.Rd │ ├── TargetVpnGateway.Rd │ ├── TargetVpnGatewayAggregatedList.Rd │ ├── TargetVpnGatewayAggregatedList.items.Rd │ ├── TargetVpnGatewayList.Rd │ ├── TargetVpnGatewaysScopedList.Rd │ ├── TargetVpnGatewaysScopedList.warning.Rd │ ├── TargetVpnGatewaysScopedList.warning.data.Rd │ ├── TestFailure.Rd │ ├── TestPermissionsRequest.Rd │ ├── TestPermissionsResponse.Rd │ ├── UDPHealthCheck.Rd │ ├── UrlMap.Rd │ ├── UrlMapList.Rd │ ├── UrlMapReference.Rd │ ├── UrlMapTest.Rd │ ├── UrlMapValidationResult.Rd │ ├── UrlMapsValidateRequest.Rd │ ├── UrlMapsValidateResponse.Rd │ ├── UsageExportLocation.Rd │ ├── VpnTunnel.Rd │ ├── VpnTunnelAggregatedList.Rd │ ├── VpnTunnelAggregatedList.items.Rd │ ├── VpnTunnelList.Rd │ ├── VpnTunnelsScopedList.Rd │ ├── VpnTunnelsScopedList.warning.Rd │ ├── VpnTunnelsScopedList.warning.data.Rd │ ├── XpnHostList.Rd │ ├── Zone.Rd │ ├── ZoneList.Rd │ ├── ZoneSetLabelsRequest.Rd │ ├── ZoneSetLabelsRequest.labels.Rd │ ├── acceleratorTypes.aggregatedList.Rd │ ├── acceleratorTypes.get.Rd │ ├── acceleratorTypes.list.Rd │ ├── addresses.aggregatedList.Rd │ ├── addresses.delete.Rd │ ├── addresses.get.Rd │ ├── addresses.insert.Rd │ ├── addresses.list.Rd │ ├── addresses.testIamPermissions.Rd │ ├── autoscalers.aggregatedList.Rd │ ├── autoscalers.delete.Rd │ ├── autoscalers.get.Rd │ ├── autoscalers.insert.Rd │ ├── autoscalers.list.Rd │ ├── autoscalers.patch.Rd │ ├── autoscalers.testIamPermissions.Rd │ ├── autoscalers.update.Rd │ ├── backendBuckets.delete.Rd │ ├── backendBuckets.get.Rd │ ├── backendBuckets.insert.Rd │ ├── backendBuckets.list.Rd │ ├── backendBuckets.patch.Rd │ ├── backendBuckets.update.Rd │ ├── backendServices.aggregatedList.Rd │ ├── backendServices.delete.Rd │ ├── backendServices.get.Rd │ ├── backendServices.getHealth.Rd │ ├── backendServices.insert.Rd │ ├── backendServices.list.Rd │ ├── backendServices.patch.Rd │ ├── backendServices.testIamPermissions.Rd │ ├── backendServices.update.Rd │ ├── compute_googleAuthR.Rd │ ├── diskTypes.aggregatedList.Rd │ ├── diskTypes.get.Rd │ ├── diskTypes.list.Rd │ ├── disks.aggregatedList.Rd │ ├── disks.createSnapshot.Rd │ ├── disks.delete.Rd │ ├── disks.get.Rd │ ├── disks.insert.Rd │ ├── disks.list.Rd │ ├── disks.resize.Rd │ ├── disks.setLabels.Rd │ ├── disks.testIamPermissions.Rd │ ├── firewalls.delete.Rd │ ├── firewalls.get.Rd │ ├── firewalls.insert.Rd │ ├── firewalls.list.Rd │ ├── firewalls.patch.Rd │ ├── firewalls.testIamPermissions.Rd │ ├── firewalls.update.Rd │ ├── forwardingRules.aggregatedList.Rd │ ├── forwardingRules.delete.Rd │ ├── forwardingRules.get.Rd │ ├── forwardingRules.insert.Rd │ ├── forwardingRules.list.Rd │ ├── forwardingRules.setTarget.Rd │ ├── forwardingRules.testIamPermissions.Rd │ ├── globalAddresses.delete.Rd │ ├── globalAddresses.get.Rd │ ├── globalAddresses.insert.Rd │ ├── globalAddresses.list.Rd │ ├── globalAddresses.testIamPermissions.Rd │ ├── globalForwardingRules.delete.Rd │ ├── globalForwardingRules.get.Rd │ ├── globalForwardingRules.insert.Rd │ ├── globalForwardingRules.list.Rd │ ├── globalForwardingRules.setTarget.Rd │ ├── globalForwardingRules.testIamPermissions.Rd │ ├── globalOperations.aggregatedList.Rd │ ├── globalOperations.delete.Rd │ ├── globalOperations.get.Rd │ ├── globalOperations.list.Rd │ ├── healthChecks.delete.Rd │ ├── healthChecks.get.Rd │ ├── healthChecks.insert.Rd │ ├── healthChecks.list.Rd │ ├── healthChecks.patch.Rd │ ├── healthChecks.testIamPermissions.Rd │ ├── healthChecks.update.Rd │ ├── httpHealthChecks.delete.Rd │ ├── httpHealthChecks.get.Rd │ ├── httpHealthChecks.insert.Rd │ ├── httpHealthChecks.list.Rd │ ├── httpHealthChecks.patch.Rd │ ├── httpHealthChecks.testIamPermissions.Rd │ ├── httpHealthChecks.update.Rd │ ├── httpsHealthChecks.delete.Rd │ ├── httpsHealthChecks.get.Rd │ ├── httpsHealthChecks.insert.Rd │ ├── httpsHealthChecks.list.Rd │ ├── httpsHealthChecks.patch.Rd │ ├── httpsHealthChecks.testIamPermissions.Rd │ ├── httpsHealthChecks.update.Rd │ ├── images.delete.Rd │ ├── images.deprecate.Rd │ ├── images.get.Rd │ ├── images.getFromFamily.Rd │ ├── images.insert.Rd │ ├── images.list.Rd │ ├── images.setLabels.Rd │ ├── images.testIamPermissions.Rd │ ├── instanceGroupManagers.abandonInstances.Rd │ ├── instanceGroupManagers.aggregatedList.Rd │ ├── instanceGroupManagers.delete.Rd │ ├── instanceGroupManagers.deleteInstances.Rd │ ├── instanceGroupManagers.get.Rd │ ├── instanceGroupManagers.insert.Rd │ ├── instanceGroupManagers.list.Rd │ ├── instanceGroupManagers.listManagedInstances.Rd │ ├── instanceGroupManagers.patch.Rd │ ├── instanceGroupManagers.recreateInstances.Rd │ ├── instanceGroupManagers.resize.Rd │ ├── instanceGroupManagers.resizeAdvanced.Rd │ ├── instanceGroupManagers.setAutoHealingPolicies.Rd │ ├── instanceGroupManagers.setInstanceTemplate.Rd │ ├── instanceGroupManagers.setTargetPools.Rd │ ├── instanceGroupManagers.testIamPermissions.Rd │ ├── instanceGroupManagers.update.Rd │ ├── instanceGroups.addInstances.Rd │ ├── instanceGroups.aggregatedList.Rd │ ├── instanceGroups.delete.Rd │ ├── instanceGroups.get.Rd │ ├── instanceGroups.insert.Rd │ ├── instanceGroups.list.Rd │ ├── instanceGroups.listInstances.Rd │ ├── instanceGroups.removeInstances.Rd │ ├── instanceGroups.setNamedPorts.Rd │ ├── instanceGroups.testIamPermissions.Rd │ ├── instanceTemplates.delete.Rd │ ├── instanceTemplates.get.Rd │ ├── instanceTemplates.insert.Rd │ ├── instanceTemplates.list.Rd │ ├── instanceTemplates.testIamPermissions.Rd │ ├── instances.addAccessConfig.Rd │ ├── instances.aggregatedList.Rd │ ├── instances.attachDisk.Rd │ ├── instances.delete.Rd │ ├── instances.deleteAccessConfig.Rd │ ├── instances.detachDisk.Rd │ ├── instances.get.Rd │ ├── instances.getSerialPortOutput.Rd │ ├── instances.insert.Rd │ ├── instances.list.Rd │ ├── instances.reset.Rd │ ├── instances.setDiskAutoDelete.Rd │ ├── instances.setLabels.Rd │ ├── instances.setMachineResources.Rd │ ├── instances.setMachineType.Rd │ ├── instances.setMetadata.Rd │ ├── instances.setScheduling.Rd │ ├── instances.setServiceAccount.Rd │ ├── instances.setTags.Rd │ ├── instances.start.Rd │ ├── instances.startWithEncryptionKey.Rd │ ├── instances.stop.Rd │ ├── instances.testIamPermissions.Rd │ ├── is.NullOb.Rd │ ├── licenses.get.Rd │ ├── machineTypes.aggregatedList.Rd │ ├── machineTypes.get.Rd │ ├── machineTypes.list.Rd │ ├── networks.delete.Rd │ ├── networks.get.Rd │ ├── networks.insert.Rd │ ├── networks.list.Rd │ ├── networks.switchToCustomMode.Rd │ ├── networks.testIamPermissions.Rd │ ├── projects.get.Rd │ ├── projects.getXpnHost.Rd │ ├── projects.listXpnHosts.Rd │ ├── projects.moveDisk.Rd │ ├── projects.moveInstance.Rd │ ├── projects.setCommonInstanceMetadata.Rd │ ├── projects.setUsageExportBucket.Rd │ ├── regionAutoscalers.delete.Rd │ ├── regionAutoscalers.get.Rd │ ├── regionAutoscalers.insert.Rd │ ├── regionAutoscalers.list.Rd │ ├── regionAutoscalers.patch.Rd │ ├── regionAutoscalers.testIamPermissions.Rd │ ├── regionAutoscalers.update.Rd │ ├── regionBackendServices.delete.Rd │ ├── regionBackendServices.get.Rd │ ├── regionBackendServices.getHealth.Rd │ ├── regionBackendServices.insert.Rd │ ├── regionBackendServices.list.Rd │ ├── regionBackendServices.patch.Rd │ ├── regionBackendServices.testIamPermissions.Rd │ ├── regionBackendServices.update.Rd │ ├── regionInstanceGroupManagers.abandonInstances.Rd │ ├── regionInstanceGroupManagers.delete.Rd │ ├── regionInstanceGroupManagers.deleteInstances.Rd │ ├── regionInstanceGroupManagers.get.Rd │ ├── regionInstanceGroupManagers.insert.Rd │ ├── regionInstanceGroupManagers.list.Rd │ ├── regionInstanceGroupManagers.listManagedInstances.Rd │ ├── regionInstanceGroupManagers.patch.Rd │ ├── regionInstanceGroupManagers.recreateInstances.Rd │ ├── regionInstanceGroupManagers.resize.Rd │ ├── regionInstanceGroupManagers.setAutoHealingPolicies.Rd │ ├── regionInstanceGroupManagers.setInstanceTemplate.Rd │ ├── regionInstanceGroupManagers.setTargetPools.Rd │ ├── regionInstanceGroupManagers.testIamPermissions.Rd │ ├── regionInstanceGroupManagers.update.Rd │ ├── regionInstanceGroups.get.Rd │ ├── regionInstanceGroups.list.Rd │ ├── regionInstanceGroups.listInstances.Rd │ ├── regionInstanceGroups.setNamedPorts.Rd │ ├── regionInstanceGroups.testIamPermissions.Rd │ ├── regionOperations.delete.Rd │ ├── regionOperations.get.Rd │ ├── regionOperations.list.Rd │ ├── regions.get.Rd │ ├── regions.list.Rd │ ├── rmNullObs.Rd │ ├── routers.aggregatedList.Rd │ ├── routers.delete.Rd │ ├── routers.get.Rd │ ├── routers.getRouterStatus.Rd │ ├── routers.insert.Rd │ ├── routers.list.Rd │ ├── routers.patch.Rd │ ├── routers.preview.Rd │ ├── routers.testIamPermissions.Rd │ ├── routers.update.Rd │ ├── routes.delete.Rd │ ├── routes.get.Rd │ ├── routes.insert.Rd │ ├── routes.list.Rd │ ├── routes.testIamPermissions.Rd │ ├── snapshots.delete.Rd │ ├── snapshots.get.Rd │ ├── snapshots.list.Rd │ ├── snapshots.setLabels.Rd │ ├── snapshots.testIamPermissions.Rd │ ├── sslCertificates.delete.Rd │ ├── sslCertificates.get.Rd │ ├── sslCertificates.insert.Rd │ ├── sslCertificates.list.Rd │ ├── sslCertificates.testIamPermissions.Rd │ ├── subnetworks.aggregatedList.Rd │ ├── subnetworks.delete.Rd │ ├── subnetworks.expandIpCidrRange.Rd │ ├── subnetworks.get.Rd │ ├── subnetworks.getIamPolicy.Rd │ ├── subnetworks.insert.Rd │ ├── subnetworks.list.Rd │ ├── subnetworks.setIamPolicy.Rd │ ├── subnetworks.testIamPermissions.Rd │ ├── targetHttpProxies.delete.Rd │ ├── targetHttpProxies.get.Rd │ ├── targetHttpProxies.insert.Rd │ ├── targetHttpProxies.list.Rd │ ├── targetHttpProxies.setUrlMap.Rd │ ├── targetHttpProxies.testIamPermissions.Rd │ ├── targetHttpsProxies.delete.Rd │ ├── targetHttpsProxies.get.Rd │ ├── targetHttpsProxies.insert.Rd │ ├── targetHttpsProxies.list.Rd │ ├── targetHttpsProxies.setSslCertificates.Rd │ ├── targetHttpsProxies.setUrlMap.Rd │ ├── targetHttpsProxies.testIamPermissions.Rd │ ├── targetInstances.aggregatedList.Rd │ ├── targetInstances.delete.Rd │ ├── targetInstances.get.Rd │ ├── targetInstances.insert.Rd │ ├── targetInstances.list.Rd │ ├── targetInstances.testIamPermissions.Rd │ ├── targetPools.addHealthCheck.Rd │ ├── targetPools.addInstance.Rd │ ├── targetPools.aggregatedList.Rd │ ├── targetPools.delete.Rd │ ├── targetPools.get.Rd │ ├── targetPools.getHealth.Rd │ ├── targetPools.insert.Rd │ ├── targetPools.list.Rd │ ├── targetPools.removeHealthCheck.Rd │ ├── targetPools.removeInstance.Rd │ ├── targetPools.setBackup.Rd │ ├── targetPools.testIamPermissions.Rd │ ├── targetSslProxies.delete.Rd │ ├── targetSslProxies.get.Rd │ ├── targetSslProxies.insert.Rd │ ├── targetSslProxies.list.Rd │ ├── targetSslProxies.setBackendService.Rd │ ├── targetSslProxies.setProxyHeader.Rd │ ├── targetSslProxies.setSslCertificates.Rd │ ├── targetSslProxies.testIamPermissions.Rd │ ├── targetVpnGateways.aggregatedList.Rd │ ├── targetVpnGateways.delete.Rd │ ├── targetVpnGateways.get.Rd │ ├── targetVpnGateways.insert.Rd │ ├── targetVpnGateways.list.Rd │ ├── targetVpnGateways.testIamPermissions.Rd │ ├── urlMaps.delete.Rd │ ├── urlMaps.get.Rd │ ├── urlMaps.insert.Rd │ ├── urlMaps.invalidateCache.Rd │ ├── urlMaps.list.Rd │ ├── urlMaps.patch.Rd │ ├── urlMaps.testIamPermissions.Rd │ ├── urlMaps.update.Rd │ ├── urlMaps.validate.Rd │ ├── vpnTunnels.aggregatedList.Rd │ ├── vpnTunnels.delete.Rd │ ├── vpnTunnels.get.Rd │ ├── vpnTunnels.insert.Rd │ ├── vpnTunnels.list.Rd │ ├── vpnTunnels.testIamPermissions.Rd │ ├── zoneOperations.delete.Rd │ ├── zoneOperations.get.Rd │ ├── zoneOperations.list.Rd │ ├── zones.get.Rd │ └── zones.list.Rd ├── googlecomputev1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── compute_functions.R │ └── compute_objects.R ├── README.md ├── googlecomputev1.auto.Rproj └── man │ ├── AccessConfig.Rd │ ├── Address.Rd │ ├── AddressAggregatedList.Rd │ ├── AddressAggregatedList.items.Rd │ ├── AddressList.Rd │ ├── AddressesScopedList.Rd │ ├── AddressesScopedList.warning.Rd │ ├── AddressesScopedList.warning.data.Rd │ ├── AttachedDisk.Rd │ ├── AttachedDiskInitializeParams.Rd │ ├── Autoscaler.Rd │ ├── AutoscalerAggregatedList.Rd │ ├── AutoscalerAggregatedList.items.Rd │ ├── AutoscalerList.Rd │ ├── AutoscalersScopedList.Rd │ ├── AutoscalersScopedList.warning.Rd │ ├── AutoscalersScopedList.warning.data.Rd │ ├── AutoscalingPolicy.Rd │ ├── AutoscalingPolicyCpuUtilization.Rd │ ├── AutoscalingPolicyCustomMetricUtilization.Rd │ ├── AutoscalingPolicyLoadBalancingUtilization.Rd │ ├── Backend.Rd │ ├── BackendService.Rd │ ├── BackendServiceAggregatedList.Rd │ ├── BackendServiceAggregatedList.items.Rd │ ├── BackendServiceGroupHealth.Rd │ ├── BackendServiceList.Rd │ ├── BackendServicesScopedList.Rd │ ├── BackendServicesScopedList.warning.Rd │ ├── BackendServicesScopedList.warning.data.Rd │ ├── CacheInvalidationRule.Rd │ ├── ConnectionDraining.Rd │ ├── CustomerEncryptionKey.Rd │ ├── CustomerEncryptionKeyProtectedDisk.Rd │ ├── DeprecationStatus.Rd │ ├── Disk.Rd │ ├── DiskAggregatedList.Rd │ ├── DiskAggregatedList.items.Rd │ ├── DiskList.Rd │ ├── DiskMoveRequest.Rd │ ├── DiskType.Rd │ ├── DiskTypeAggregatedList.Rd │ ├── DiskTypeAggregatedList.items.Rd │ ├── DiskTypeList.Rd │ ├── DiskTypesScopedList.Rd │ ├── DiskTypesScopedList.warning.Rd │ ├── DiskTypesScopedList.warning.data.Rd │ ├── DisksResizeRequest.Rd │ ├── DisksScopedList.Rd │ ├── DisksScopedList.warning.Rd │ ├── DisksScopedList.warning.data.Rd │ ├── Firewall.Rd │ ├── Firewall.allowed.Rd │ ├── FirewallList.Rd │ ├── ForwardingRule.Rd │ ├── ForwardingRuleAggregatedList.Rd │ ├── ForwardingRuleAggregatedList.items.Rd │ ├── ForwardingRuleList.Rd │ ├── ForwardingRulesScopedList.Rd │ ├── ForwardingRulesScopedList.warning.Rd │ ├── ForwardingRulesScopedList.warning.data.Rd │ ├── GuestOsFeature.Rd │ ├── HealthCheck.Rd │ ├── HealthCheckList.Rd │ ├── HealthCheckReference.Rd │ ├── HealthStatus.Rd │ ├── HostRule.Rd │ ├── HttpHealthCheck.Rd │ ├── HttpHealthCheckList.Rd │ ├── HttpsHealthCheck.Rd │ ├── HttpsHealthCheckList.Rd │ ├── Image.Rd │ ├── Image.rawDisk.Rd │ ├── ImageList.Rd │ ├── Instance.Rd │ ├── InstanceAggregatedList.Rd │ ├── InstanceAggregatedList.items.Rd │ ├── InstanceGroup.Rd │ ├── InstanceGroupAggregatedList.Rd │ ├── InstanceGroupAggregatedList.items.Rd │ ├── InstanceGroupList.Rd │ ├── InstanceGroupManager.Rd │ ├── InstanceGroupManagerActionsSummary.Rd │ ├── InstanceGroupManagerAggregatedList.Rd │ ├── InstanceGroupManagerAggregatedList.items.Rd │ ├── InstanceGroupManagerList.Rd │ ├── InstanceGroupManagersAbandonInstancesRequest.Rd │ ├── InstanceGroupManagersDeleteInstancesRequest.Rd │ ├── InstanceGroupManagersListManagedInstancesResponse.Rd │ ├── InstanceGroupManagersRecreateInstancesRequest.Rd │ ├── InstanceGroupManagersScopedList.Rd │ ├── InstanceGroupManagersScopedList.warning.Rd │ ├── InstanceGroupManagersScopedList.warning.data.Rd │ ├── InstanceGroupManagersSetInstanceTemplateRequest.Rd │ ├── InstanceGroupManagersSetTargetPoolsRequest.Rd │ ├── InstanceGroupsAddInstancesRequest.Rd │ ├── InstanceGroupsListInstances.Rd │ ├── InstanceGroupsListInstancesRequest.Rd │ ├── InstanceGroupsRemoveInstancesRequest.Rd │ ├── InstanceGroupsScopedList.Rd │ ├── InstanceGroupsScopedList.warning.Rd │ ├── InstanceGroupsScopedList.warning.data.Rd │ ├── InstanceGroupsSetNamedPortsRequest.Rd │ ├── InstanceList.Rd │ ├── InstanceMoveRequest.Rd │ ├── InstanceProperties.Rd │ ├── InstanceReference.Rd │ ├── InstanceTemplate.Rd │ ├── InstanceTemplateList.Rd │ ├── InstanceWithNamedPorts.Rd │ ├── InstancesScopedList.Rd │ ├── InstancesScopedList.warning.Rd │ ├── InstancesScopedList.warning.data.Rd │ ├── InstancesSetMachineTypeRequest.Rd │ ├── InstancesSetServiceAccountRequest.Rd │ ├── InstancesStartWithEncryptionKeyRequest.Rd │ ├── License.Rd │ ├── MachineType.Rd │ ├── MachineType.scratchDisks.Rd │ ├── MachineTypeAggregatedList.Rd │ ├── MachineTypeAggregatedList.items.Rd │ ├── MachineTypeList.Rd │ ├── MachineTypesScopedList.Rd │ ├── MachineTypesScopedList.warning.Rd │ ├── MachineTypesScopedList.warning.data.Rd │ ├── ManagedInstance.Rd │ ├── ManagedInstanceLastAttempt.Rd │ ├── ManagedInstanceLastAttempt.errors.Rd │ ├── ManagedInstanceLastAttempt.errors.errors.Rd │ ├── Metadata.Rd │ ├── Metadata.items.Rd │ ├── NamedPort.Rd │ ├── Network.Rd │ ├── NetworkInterface.Rd │ ├── NetworkList.Rd │ ├── Operation.Rd │ ├── Operation.error.Rd │ ├── Operation.error.errors.Rd │ ├── Operation.warnings.Rd │ ├── Operation.warnings.data.Rd │ ├── OperationAggregatedList.Rd │ ├── OperationAggregatedList.items.Rd │ ├── OperationList.Rd │ ├── OperationsScopedList.Rd │ ├── OperationsScopedList.warning.Rd │ ├── OperationsScopedList.warning.data.Rd │ ├── PathMatcher.Rd │ ├── PathRule.Rd │ ├── Project.Rd │ ├── Quota.Rd │ ├── Region.Rd │ ├── RegionAutoscalerList.Rd │ ├── RegionInstanceGroupList.Rd │ ├── RegionInstanceGroupManagerList.Rd │ ├── RegionInstanceGroupManagersAbandonInstancesRequest.Rd │ ├── RegionInstanceGroupManagersDeleteInstancesRequest.Rd │ ├── RegionInstanceGroupManagersListInstancesResponse.Rd │ ├── RegionInstanceGroupManagersRecreateRequest.Rd │ ├── RegionInstanceGroupManagersSetTargetPoolsRequest.Rd │ ├── RegionInstanceGroupManagersSetTemplateRequest.Rd │ ├── RegionInstanceGroupsListInstances.Rd │ ├── RegionInstanceGroupsListInstancesRequest.Rd │ ├── RegionInstanceGroupsSetNamedPortsRequest.Rd │ ├── RegionList.Rd │ ├── ResourceGroupReference.Rd │ ├── Route.Rd │ ├── Route.warnings.Rd │ ├── Route.warnings.data.Rd │ ├── RouteList.Rd │ ├── Router.Rd │ ├── RouterAggregatedList.Rd │ ├── RouterAggregatedList.items.Rd │ ├── RouterBgp.Rd │ ├── RouterBgpPeer.Rd │ ├── RouterInterface.Rd │ ├── RouterList.Rd │ ├── RouterStatus.Rd │ ├── RouterStatusBgpPeerStatus.Rd │ ├── RouterStatusResponse.Rd │ ├── RoutersPreviewResponse.Rd │ ├── RoutersScopedList.Rd │ ├── RoutersScopedList.warning.Rd │ ├── RoutersScopedList.warning.data.Rd │ ├── SSLHealthCheck.Rd │ ├── Scheduling.Rd │ ├── SerialPortOutput.Rd │ ├── ServiceAccount.Rd │ ├── Snapshot.Rd │ ├── SnapshotList.Rd │ ├── SslCertificate.Rd │ ├── SslCertificateList.Rd │ ├── Subnetwork.Rd │ ├── SubnetworkAggregatedList.Rd │ ├── SubnetworkAggregatedList.items.Rd │ ├── SubnetworkList.Rd │ ├── SubnetworksExpandIpCidrRangeRequest.Rd │ ├── SubnetworksScopedList.Rd │ ├── SubnetworksScopedList.warning.Rd │ ├── SubnetworksScopedList.warning.data.Rd │ ├── TCPHealthCheck.Rd │ ├── Tags.Rd │ ├── TargetHttpProxy.Rd │ ├── TargetHttpProxyList.Rd │ ├── TargetHttpsProxiesSetSslCertificatesRequest.Rd │ ├── TargetHttpsProxy.Rd │ ├── TargetHttpsProxyList.Rd │ ├── TargetInstance.Rd │ ├── TargetInstanceAggregatedList.Rd │ ├── TargetInstanceAggregatedList.items.Rd │ ├── TargetInstanceList.Rd │ ├── TargetInstancesScopedList.Rd │ ├── TargetInstancesScopedList.warning.Rd │ ├── TargetInstancesScopedList.warning.data.Rd │ ├── TargetPool.Rd │ ├── TargetPoolAggregatedList.Rd │ ├── TargetPoolAggregatedList.items.Rd │ ├── TargetPoolInstanceHealth.Rd │ ├── TargetPoolList.Rd │ ├── TargetPoolsAddHealthCheckRequest.Rd │ ├── TargetPoolsAddInstanceRequest.Rd │ ├── TargetPoolsRemoveHealthCheckRequest.Rd │ ├── TargetPoolsRemoveInstanceRequest.Rd │ ├── TargetPoolsScopedList.Rd │ ├── TargetPoolsScopedList.warning.Rd │ ├── TargetPoolsScopedList.warning.data.Rd │ ├── TargetReference.Rd │ ├── TargetSslProxiesSetBackendServiceRequest.Rd │ ├── TargetSslProxiesSetProxyHeaderRequest.Rd │ ├── TargetSslProxiesSetSslCertificatesRequest.Rd │ ├── TargetSslProxy.Rd │ ├── TargetSslProxyList.Rd │ ├── TargetVpnGateway.Rd │ ├── TargetVpnGatewayAggregatedList.Rd │ ├── TargetVpnGatewayAggregatedList.items.Rd │ ├── TargetVpnGatewayList.Rd │ ├── TargetVpnGatewaysScopedList.Rd │ ├── TargetVpnGatewaysScopedList.warning.Rd │ ├── TargetVpnGatewaysScopedList.warning.data.Rd │ ├── TestFailure.Rd │ ├── UrlMap.Rd │ ├── UrlMapList.Rd │ ├── UrlMapReference.Rd │ ├── UrlMapTest.Rd │ ├── UrlMapValidationResult.Rd │ ├── UrlMapsValidateRequest.Rd │ ├── UrlMapsValidateResponse.Rd │ ├── UsageExportLocation.Rd │ ├── VpnTunnel.Rd │ ├── VpnTunnelAggregatedList.Rd │ ├── VpnTunnelAggregatedList.items.Rd │ ├── VpnTunnelList.Rd │ ├── VpnTunnelsScopedList.Rd │ ├── VpnTunnelsScopedList.warning.Rd │ ├── VpnTunnelsScopedList.warning.data.Rd │ ├── Zone.Rd │ ├── ZoneList.Rd │ ├── addresses.aggregatedList.Rd │ ├── addresses.delete.Rd │ ├── addresses.get.Rd │ ├── addresses.insert.Rd │ ├── addresses.list.Rd │ ├── autoscalers.aggregatedList.Rd │ ├── autoscalers.delete.Rd │ ├── autoscalers.get.Rd │ ├── autoscalers.insert.Rd │ ├── autoscalers.list.Rd │ ├── autoscalers.patch.Rd │ ├── autoscalers.update.Rd │ ├── backendServices.aggregatedList.Rd │ ├── backendServices.delete.Rd │ ├── backendServices.get.Rd │ ├── backendServices.getHealth.Rd │ ├── backendServices.insert.Rd │ ├── backendServices.list.Rd │ ├── backendServices.patch.Rd │ ├── backendServices.update.Rd │ ├── compute_googleAuthR.Rd │ ├── diskTypes.aggregatedList.Rd │ ├── diskTypes.get.Rd │ ├── diskTypes.list.Rd │ ├── disks.aggregatedList.Rd │ ├── disks.createSnapshot.Rd │ ├── disks.delete.Rd │ ├── disks.get.Rd │ ├── disks.insert.Rd │ ├── disks.list.Rd │ ├── disks.resize.Rd │ ├── firewalls.delete.Rd │ ├── firewalls.get.Rd │ ├── firewalls.insert.Rd │ ├── firewalls.list.Rd │ ├── firewalls.patch.Rd │ ├── firewalls.update.Rd │ ├── forwardingRules.aggregatedList.Rd │ ├── forwardingRules.delete.Rd │ ├── forwardingRules.get.Rd │ ├── forwardingRules.insert.Rd │ ├── forwardingRules.list.Rd │ ├── forwardingRules.setTarget.Rd │ ├── globalAddresses.delete.Rd │ ├── globalAddresses.get.Rd │ ├── globalAddresses.insert.Rd │ ├── globalAddresses.list.Rd │ ├── globalForwardingRules.delete.Rd │ ├── globalForwardingRules.get.Rd │ ├── globalForwardingRules.insert.Rd │ ├── globalForwardingRules.list.Rd │ ├── globalForwardingRules.setTarget.Rd │ ├── globalOperations.aggregatedList.Rd │ ├── globalOperations.delete.Rd │ ├── globalOperations.get.Rd │ ├── globalOperations.list.Rd │ ├── healthChecks.delete.Rd │ ├── healthChecks.get.Rd │ ├── healthChecks.insert.Rd │ ├── healthChecks.list.Rd │ ├── healthChecks.patch.Rd │ ├── healthChecks.update.Rd │ ├── httpHealthChecks.delete.Rd │ ├── httpHealthChecks.get.Rd │ ├── httpHealthChecks.insert.Rd │ ├── httpHealthChecks.list.Rd │ ├── httpHealthChecks.patch.Rd │ ├── httpHealthChecks.update.Rd │ ├── httpsHealthChecks.delete.Rd │ ├── httpsHealthChecks.get.Rd │ ├── httpsHealthChecks.insert.Rd │ ├── httpsHealthChecks.list.Rd │ ├── httpsHealthChecks.patch.Rd │ ├── httpsHealthChecks.update.Rd │ ├── images.delete.Rd │ ├── images.deprecate.Rd │ ├── images.get.Rd │ ├── images.getFromFamily.Rd │ ├── images.insert.Rd │ ├── images.list.Rd │ ├── instanceGroupManagers.abandonInstances.Rd │ ├── instanceGroupManagers.aggregatedList.Rd │ ├── instanceGroupManagers.delete.Rd │ ├── instanceGroupManagers.deleteInstances.Rd │ ├── instanceGroupManagers.get.Rd │ ├── instanceGroupManagers.insert.Rd │ ├── instanceGroupManagers.list.Rd │ ├── instanceGroupManagers.listManagedInstances.Rd │ ├── instanceGroupManagers.recreateInstances.Rd │ ├── instanceGroupManagers.resize.Rd │ ├── instanceGroupManagers.setInstanceTemplate.Rd │ ├── instanceGroupManagers.setTargetPools.Rd │ ├── instanceGroups.addInstances.Rd │ ├── instanceGroups.aggregatedList.Rd │ ├── instanceGroups.delete.Rd │ ├── instanceGroups.get.Rd │ ├── instanceGroups.insert.Rd │ ├── instanceGroups.list.Rd │ ├── instanceGroups.listInstances.Rd │ ├── instanceGroups.removeInstances.Rd │ ├── instanceGroups.setNamedPorts.Rd │ ├── instanceTemplates.delete.Rd │ ├── instanceTemplates.get.Rd │ ├── instanceTemplates.insert.Rd │ ├── instanceTemplates.list.Rd │ ├── instances.addAccessConfig.Rd │ ├── instances.aggregatedList.Rd │ ├── instances.attachDisk.Rd │ ├── instances.delete.Rd │ ├── instances.deleteAccessConfig.Rd │ ├── instances.detachDisk.Rd │ ├── instances.get.Rd │ ├── instances.getSerialPortOutput.Rd │ ├── instances.insert.Rd │ ├── instances.list.Rd │ ├── instances.reset.Rd │ ├── instances.setDiskAutoDelete.Rd │ ├── instances.setMachineType.Rd │ ├── instances.setMetadata.Rd │ ├── instances.setScheduling.Rd │ ├── instances.setServiceAccount.Rd │ ├── instances.setTags.Rd │ ├── instances.start.Rd │ ├── instances.startWithEncryptionKey.Rd │ ├── instances.stop.Rd │ ├── is.NullOb.Rd │ ├── licenses.get.Rd │ ├── machineTypes.aggregatedList.Rd │ ├── machineTypes.get.Rd │ ├── machineTypes.list.Rd │ ├── networks.delete.Rd │ ├── networks.get.Rd │ ├── networks.insert.Rd │ ├── networks.list.Rd │ ├── networks.switchToCustomMode.Rd │ ├── projects.get.Rd │ ├── projects.moveDisk.Rd │ ├── projects.moveInstance.Rd │ ├── projects.setCommonInstanceMetadata.Rd │ ├── projects.setUsageExportBucket.Rd │ ├── regionAutoscalers.delete.Rd │ ├── regionAutoscalers.get.Rd │ ├── regionAutoscalers.insert.Rd │ ├── regionAutoscalers.list.Rd │ ├── regionAutoscalers.patch.Rd │ ├── regionAutoscalers.update.Rd │ ├── regionBackendServices.delete.Rd │ ├── regionBackendServices.get.Rd │ ├── regionBackendServices.getHealth.Rd │ ├── regionBackendServices.insert.Rd │ ├── regionBackendServices.list.Rd │ ├── regionBackendServices.patch.Rd │ ├── regionBackendServices.update.Rd │ ├── regionInstanceGroupManagers.abandonInstances.Rd │ ├── regionInstanceGroupManagers.delete.Rd │ ├── regionInstanceGroupManagers.deleteInstances.Rd │ ├── regionInstanceGroupManagers.get.Rd │ ├── regionInstanceGroupManagers.insert.Rd │ ├── regionInstanceGroupManagers.list.Rd │ ├── regionInstanceGroupManagers.listManagedInstances.Rd │ ├── regionInstanceGroupManagers.recreateInstances.Rd │ ├── regionInstanceGroupManagers.resize.Rd │ ├── regionInstanceGroupManagers.setInstanceTemplate.Rd │ ├── regionInstanceGroupManagers.setTargetPools.Rd │ ├── regionInstanceGroups.get.Rd │ ├── regionInstanceGroups.list.Rd │ ├── regionInstanceGroups.listInstances.Rd │ ├── regionInstanceGroups.setNamedPorts.Rd │ ├── regionOperations.delete.Rd │ ├── regionOperations.get.Rd │ ├── regionOperations.list.Rd │ ├── regions.get.Rd │ ├── regions.list.Rd │ ├── rmNullObs.Rd │ ├── routers.aggregatedList.Rd │ ├── routers.delete.Rd │ ├── routers.get.Rd │ ├── routers.getRouterStatus.Rd │ ├── routers.insert.Rd │ ├── routers.list.Rd │ ├── routers.patch.Rd │ ├── routers.preview.Rd │ ├── routers.update.Rd │ ├── routes.delete.Rd │ ├── routes.get.Rd │ ├── routes.insert.Rd │ ├── routes.list.Rd │ ├── snapshots.delete.Rd │ ├── snapshots.get.Rd │ ├── snapshots.list.Rd │ ├── sslCertificates.delete.Rd │ ├── sslCertificates.get.Rd │ ├── sslCertificates.insert.Rd │ ├── sslCertificates.list.Rd │ ├── subnetworks.aggregatedList.Rd │ ├── subnetworks.delete.Rd │ ├── subnetworks.expandIpCidrRange.Rd │ ├── subnetworks.get.Rd │ ├── subnetworks.insert.Rd │ ├── subnetworks.list.Rd │ ├── targetHttpProxies.delete.Rd │ ├── targetHttpProxies.get.Rd │ ├── targetHttpProxies.insert.Rd │ ├── targetHttpProxies.list.Rd │ ├── targetHttpProxies.setUrlMap.Rd │ ├── targetHttpsProxies.delete.Rd │ ├── targetHttpsProxies.get.Rd │ ├── targetHttpsProxies.insert.Rd │ ├── targetHttpsProxies.list.Rd │ ├── targetHttpsProxies.setSslCertificates.Rd │ ├── targetHttpsProxies.setUrlMap.Rd │ ├── targetInstances.aggregatedList.Rd │ ├── targetInstances.delete.Rd │ ├── targetInstances.get.Rd │ ├── targetInstances.insert.Rd │ ├── targetInstances.list.Rd │ ├── targetPools.addHealthCheck.Rd │ ├── targetPools.addInstance.Rd │ ├── targetPools.aggregatedList.Rd │ ├── targetPools.delete.Rd │ ├── targetPools.get.Rd │ ├── targetPools.getHealth.Rd │ ├── targetPools.insert.Rd │ ├── targetPools.list.Rd │ ├── targetPools.removeHealthCheck.Rd │ ├── targetPools.removeInstance.Rd │ ├── targetPools.setBackup.Rd │ ├── targetSslProxies.delete.Rd │ ├── targetSslProxies.get.Rd │ ├── targetSslProxies.insert.Rd │ ├── targetSslProxies.list.Rd │ ├── targetSslProxies.setBackendService.Rd │ ├── targetSslProxies.setProxyHeader.Rd │ ├── targetSslProxies.setSslCertificates.Rd │ ├── targetVpnGateways.aggregatedList.Rd │ ├── targetVpnGateways.delete.Rd │ ├── targetVpnGateways.get.Rd │ ├── targetVpnGateways.insert.Rd │ ├── targetVpnGateways.list.Rd │ ├── urlMaps.delete.Rd │ ├── urlMaps.get.Rd │ ├── urlMaps.insert.Rd │ ├── urlMaps.invalidateCache.Rd │ ├── urlMaps.list.Rd │ ├── urlMaps.patch.Rd │ ├── urlMaps.update.Rd │ ├── urlMaps.validate.Rd │ ├── vpnTunnels.aggregatedList.Rd │ ├── vpnTunnels.delete.Rd │ ├── vpnTunnels.get.Rd │ ├── vpnTunnels.insert.Rd │ ├── vpnTunnels.list.Rd │ ├── zoneOperations.delete.Rd │ ├── zoneOperations.get.Rd │ ├── zoneOperations.list.Rd │ ├── zones.get.Rd │ └── zones.list.Rd ├── googleconsumersurveysv2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── consumersurveys_functions.R │ └── consumersurveys_objects.R ├── README.md ├── googleconsumersurveysv2.auto.Rproj └── man │ ├── FieldMask.Rd │ ├── MobileAppPanel.Rd │ ├── MobileAppPanelsListResponse.Rd │ ├── PageInfo.Rd │ ├── ResultsGetRequest.Rd │ ├── ResultsMask.Rd │ ├── Survey.Rd │ ├── SurveyAudience.Rd │ ├── SurveyCost.Rd │ ├── SurveyQuestion.Rd │ ├── SurveyQuestionImage.Rd │ ├── SurveyRejection.Rd │ ├── SurveyResults.Rd │ ├── SurveysDeleteResponse.Rd │ ├── SurveysListResponse.Rd │ ├── SurveysStartRequest.Rd │ ├── SurveysStartResponse.Rd │ ├── SurveysStopResponse.Rd │ ├── TokenPagination.Rd │ ├── consumersurveys_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── mobileapppanels.get.Rd │ ├── mobileapppanels.list.Rd │ ├── mobileapppanels.update.Rd │ ├── results.get.Rd │ ├── rmNullObs.Rd │ ├── surveys.delete.Rd │ ├── surveys.get.Rd │ ├── surveys.insert.Rd │ ├── surveys.list.Rd │ ├── surveys.start.Rd │ ├── surveys.stop.Rd │ └── surveys.update.Rd ├── googlecontainerv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── container_functions.R │ └── container_objects.R ├── README.md ├── googlecontainerv1.auto.Rproj └── man │ ├── AddonsConfig.Rd │ ├── AutoUpgradeOptions.Rd │ ├── CancelOperationRequest.Rd │ ├── Cluster.Rd │ ├── ClusterUpdate.Rd │ ├── CreateClusterRequest.Rd │ ├── CreateNodePoolRequest.Rd │ ├── Empty.Rd │ ├── HorizontalPodAutoscaling.Rd │ ├── HttpLoadBalancing.Rd │ ├── ListClustersResponse.Rd │ ├── ListNodePoolsResponse.Rd │ ├── ListOperationsResponse.Rd │ ├── MasterAuth.Rd │ ├── NodeConfig.Rd │ ├── NodeConfig.labels.Rd │ ├── NodeConfig.metadata.Rd │ ├── NodeManagement.Rd │ ├── NodePool.Rd │ ├── NodePoolAutoscaling.Rd │ ├── Operation.Rd │ ├── RollbackNodePoolUpgradeRequest.Rd │ ├── ServerConfig.Rd │ ├── SetNodePoolManagementRequest.Rd │ ├── UpdateClusterRequest.Rd │ ├── container_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── projects.zones.getServerconfig.Rd │ └── rmNullObs.Rd ├── googlecontentv2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── content_functions.R │ └── content_objects.R ├── README.md ├── googlecontentv2.auto.Rproj └── man │ ├── Account.Rd │ ├── AccountAdwordsLink.Rd │ ├── AccountIdentifier.Rd │ ├── AccountShipping.Rd │ ├── AccountShippingCarrierRate.Rd │ ├── AccountShippingCondition.Rd │ ├── AccountShippingLocationGroup.Rd │ ├── AccountShippingPostalCodeRange.Rd │ ├── AccountShippingRateTable.Rd │ ├── AccountShippingRateTableCell.Rd │ ├── AccountShippingShippingService.Rd │ ├── AccountShippingShippingServiceCalculationMethod.Rd │ ├── AccountShippingShippingServiceCostRule.Rd │ ├── AccountStatus.Rd │ ├── AccountStatusDataQualityIssue.Rd │ ├── AccountStatusExampleItem.Rd │ ├── AccountTax.Rd │ ├── AccountTaxTaxRule.Rd │ ├── AccountUser.Rd │ ├── AccountsAuthInfoResponse.Rd │ ├── AccountsCustomBatchRequest.Rd │ ├── AccountsCustomBatchRequestEntry.Rd │ ├── AccountsCustomBatchResponse.Rd │ ├── AccountsCustomBatchResponseEntry.Rd │ ├── AccountsListResponse.Rd │ ├── AccountshippingCustomBatchRequest.Rd │ ├── AccountshippingCustomBatchRequestEntry.Rd │ ├── AccountshippingCustomBatchResponse.Rd │ ├── AccountshippingCustomBatchResponseEntry.Rd │ ├── AccountshippingListResponse.Rd │ ├── AccountstatusesCustomBatchRequest.Rd │ ├── AccountstatusesCustomBatchRequestEntry.Rd │ ├── AccountstatusesCustomBatchResponse.Rd │ ├── AccountstatusesCustomBatchResponseEntry.Rd │ ├── AccountstatusesListResponse.Rd │ ├── AccounttaxCustomBatchRequest.Rd │ ├── AccounttaxCustomBatchRequestEntry.Rd │ ├── AccounttaxCustomBatchResponse.Rd │ ├── AccounttaxCustomBatchResponseEntry.Rd │ ├── AccounttaxListResponse.Rd │ ├── CarrierRate.Rd │ ├── CarriersCarrier.Rd │ ├── Datafeed.Rd │ ├── DatafeedFetchSchedule.Rd │ ├── DatafeedFormat.Rd │ ├── DatafeedStatus.Rd │ ├── DatafeedStatusError.Rd │ ├── DatafeedStatusExample.Rd │ ├── DatafeedsCustomBatchRequest.Rd │ ├── DatafeedsCustomBatchRequestEntry.Rd │ ├── DatafeedsCustomBatchResponse.Rd │ ├── DatafeedsCustomBatchResponseEntry.Rd │ ├── DatafeedsListResponse.Rd │ ├── DatafeedstatusesCustomBatchRequest.Rd │ ├── DatafeedstatusesCustomBatchRequestEntry.Rd │ ├── DatafeedstatusesCustomBatchResponse.Rd │ ├── DatafeedstatusesCustomBatchResponseEntry.Rd │ ├── DatafeedstatusesListResponse.Rd │ ├── DeliveryTime.Rd │ ├── Error.Rd │ ├── Errors.Rd │ ├── Headers.Rd │ ├── Installment.Rd │ ├── Inventory.Rd │ ├── InventoryCustomBatchRequest.Rd │ ├── InventoryCustomBatchRequestEntry.Rd │ ├── InventoryCustomBatchResponse.Rd │ ├── InventoryCustomBatchResponseEntry.Rd │ ├── InventoryPickup.Rd │ ├── InventorySetRequest.Rd │ ├── InventorySetResponse.Rd │ ├── LocationIdSet.Rd │ ├── LoyaltyPoints.Rd │ ├── Order.Rd │ ├── OrderAddress.Rd │ ├── OrderCancellation.Rd │ ├── OrderCustomer.Rd │ ├── OrderDeliveryDetails.Rd │ ├── OrderLineItem.Rd │ ├── OrderLineItemProduct.Rd │ ├── OrderLineItemProductVariantAttribute.Rd │ ├── OrderLineItemReturnInfo.Rd │ ├── OrderLineItemShippingDetails.Rd │ ├── OrderLineItemShippingDetailsMethod.Rd │ ├── OrderPaymentMethod.Rd │ ├── OrderPromotion.Rd │ ├── OrderPromotionBenefit.Rd │ ├── OrderRefund.Rd │ ├── OrderReturn.Rd │ ├── OrderShipment.Rd │ ├── OrderShipmentLineItemShipment.Rd │ ├── OrdersAcknowledgeRequest.Rd │ ├── OrdersAcknowledgeResponse.Rd │ ├── OrdersAdvanceTestOrderResponse.Rd │ ├── OrdersCancelLineItemRequest.Rd │ ├── OrdersCancelLineItemResponse.Rd │ ├── OrdersCancelRequest.Rd │ ├── OrdersCancelResponse.Rd │ ├── OrdersCreateTestOrderRequest.Rd │ ├── OrdersCreateTestOrderResponse.Rd │ ├── OrdersCustomBatchRequest.Rd │ ├── OrdersCustomBatchRequestEntry.Rd │ ├── OrdersCustomBatchRequestEntryCancel.Rd │ ├── OrdersCustomBatchRequestEntryCancelLineItem.Rd │ ├── OrdersCustomBatchRequestEntryRefund.Rd │ ├── OrdersCustomBatchRequestEntryReturnLineItem.Rd │ ├── OrdersCustomBatchRequestEntryShipLineItems.Rd │ ├── OrdersCustomBatchRequestEntryUpdateShipment.Rd │ ├── OrdersCustomBatchResponse.Rd │ ├── OrdersCustomBatchResponseEntry.Rd │ ├── OrdersGetByMerchantOrderIdResponse.Rd │ ├── OrdersGetTestOrderTemplateResponse.Rd │ ├── OrdersListResponse.Rd │ ├── OrdersRefundRequest.Rd │ ├── OrdersRefundResponse.Rd │ ├── OrdersReturnLineItemRequest.Rd │ ├── OrdersReturnLineItemResponse.Rd │ ├── OrdersShipLineItemsRequest.Rd │ ├── OrdersShipLineItemsResponse.Rd │ ├── OrdersUpdateMerchantOrderIdRequest.Rd │ ├── OrdersUpdateMerchantOrderIdResponse.Rd │ ├── OrdersUpdateShipmentRequest.Rd │ ├── OrdersUpdateShipmentResponse.Rd │ ├── PostalCodeGroup.Rd │ ├── PostalCodeRange.Rd │ ├── Price.Rd │ ├── Product.Rd │ ├── ProductAspect.Rd │ ├── ProductCustomAttribute.Rd │ ├── ProductCustomGroup.Rd │ ├── ProductDestination.Rd │ ├── ProductShipping.Rd │ ├── ProductShippingDimension.Rd │ ├── ProductShippingWeight.Rd │ ├── ProductStatus.Rd │ ├── ProductStatusDataQualityIssue.Rd │ ├── ProductStatusDestinationStatus.Rd │ ├── ProductTax.Rd │ ├── ProductUnitPricingBaseMeasure.Rd │ ├── ProductUnitPricingMeasure.Rd │ ├── ProductsCustomBatchRequest.Rd │ ├── ProductsCustomBatchRequestEntry.Rd │ ├── ProductsCustomBatchResponse.Rd │ ├── ProductsCustomBatchResponseEntry.Rd │ ├── ProductsListResponse.Rd │ ├── ProductstatusesCustomBatchRequest.Rd │ ├── ProductstatusesCustomBatchRequestEntry.Rd │ ├── ProductstatusesCustomBatchResponse.Rd │ ├── ProductstatusesCustomBatchResponseEntry.Rd │ ├── ProductstatusesListResponse.Rd │ ├── RateGroup.Rd │ ├── Row.Rd │ ├── Service.Rd │ ├── ShippingSettings.Rd │ ├── ShippingsettingsCustomBatchRequest.Rd │ ├── ShippingsettingsCustomBatchRequestEntry.Rd │ ├── ShippingsettingsCustomBatchResponse.Rd │ ├── ShippingsettingsCustomBatchResponseEntry.Rd │ ├── ShippingsettingsGetSupportedCarriersResponse.Rd │ ├── ShippingsettingsListResponse.Rd │ ├── Table.Rd │ ├── TestOrder.Rd │ ├── TestOrderCustomer.Rd │ ├── TestOrderLineItem.Rd │ ├── TestOrderLineItemProduct.Rd │ ├── TestOrderPaymentMethod.Rd │ ├── Value.Rd │ ├── Weight.Rd │ ├── accounts.authinfo.Rd │ ├── accounts.custombatch.Rd │ ├── accounts.delete.Rd │ ├── accounts.get.Rd │ ├── accounts.insert.Rd │ ├── accounts.list.Rd │ ├── accounts.patch.Rd │ ├── accounts.update.Rd │ ├── accountshipping.custombatch.Rd │ ├── accountshipping.get.Rd │ ├── accountshipping.list.Rd │ ├── accountshipping.patch.Rd │ ├── accountshipping.update.Rd │ ├── accountstatuses.custombatch.Rd │ ├── accountstatuses.get.Rd │ ├── accountstatuses.list.Rd │ ├── accounttax.custombatch.Rd │ ├── accounttax.get.Rd │ ├── accounttax.list.Rd │ ├── accounttax.patch.Rd │ ├── accounttax.update.Rd │ ├── content_googleAuthR.Rd │ ├── datafeeds.custombatch.Rd │ ├── datafeeds.delete.Rd │ ├── datafeeds.get.Rd │ ├── datafeeds.insert.Rd │ ├── datafeeds.list.Rd │ ├── datafeeds.patch.Rd │ ├── datafeeds.update.Rd │ ├── datafeedstatuses.custombatch.Rd │ ├── datafeedstatuses.get.Rd │ ├── datafeedstatuses.list.Rd │ ├── inventory.custombatch.Rd │ ├── inventory.set.Rd │ ├── is.NullOb.Rd │ ├── orders.acknowledge.Rd │ ├── orders.advancetestorder.Rd │ ├── orders.cancel.Rd │ ├── orders.cancellineitem.Rd │ ├── orders.createtestorder.Rd │ ├── orders.custombatch.Rd │ ├── orders.get.Rd │ ├── orders.getbymerchantorderid.Rd │ ├── orders.gettestordertemplate.Rd │ ├── orders.list.Rd │ ├── orders.refund.Rd │ ├── orders.returnlineitem.Rd │ ├── orders.shiplineitems.Rd │ ├── orders.updatemerchantorderid.Rd │ ├── orders.updateshipment.Rd │ ├── products.custombatch.Rd │ ├── products.delete.Rd │ ├── products.get.Rd │ ├── products.insert.Rd │ ├── products.list.Rd │ ├── productstatuses.custombatch.Rd │ ├── productstatuses.get.Rd │ ├── productstatuses.list.Rd │ ├── rmNullObs.Rd │ ├── shippingsettings.custombatch.Rd │ ├── shippingsettings.get.Rd │ ├── shippingsettings.getsupportedcarriers.Rd │ ├── shippingsettings.list.Rd │ ├── shippingsettings.patch.Rd │ └── shippingsettings.update.Rd ├── googlecontentv2sandbox.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── content_functions.R │ └── content_objects.R ├── README.md ├── googlecontentv2sandbox.auto.Rproj └── man │ ├── Error.Rd │ ├── Errors.Rd │ ├── Order.Rd │ ├── OrderAddress.Rd │ ├── OrderCancellation.Rd │ ├── OrderCustomer.Rd │ ├── OrderDeliveryDetails.Rd │ ├── OrderLineItem.Rd │ ├── OrderLineItemProduct.Rd │ ├── OrderLineItemProductVariantAttribute.Rd │ ├── OrderLineItemReturnInfo.Rd │ ├── OrderLineItemShippingDetails.Rd │ ├── OrderLineItemShippingDetailsMethod.Rd │ ├── OrderPaymentMethod.Rd │ ├── OrderPromotion.Rd │ ├── OrderPromotionBenefit.Rd │ ├── OrderRefund.Rd │ ├── OrderReturn.Rd │ ├── OrderShipment.Rd │ ├── OrderShipmentLineItemShipment.Rd │ ├── OrdersAcknowledgeRequest.Rd │ ├── OrdersAcknowledgeResponse.Rd │ ├── OrdersAdvanceTestOrderResponse.Rd │ ├── OrdersCancelLineItemRequest.Rd │ ├── OrdersCancelLineItemResponse.Rd │ ├── OrdersCancelRequest.Rd │ ├── OrdersCancelResponse.Rd │ ├── OrdersCreateTestOrderRequest.Rd │ ├── OrdersCreateTestOrderResponse.Rd │ ├── OrdersCustomBatchRequest.Rd │ ├── OrdersCustomBatchRequestEntry.Rd │ ├── OrdersCustomBatchRequestEntryCancel.Rd │ ├── OrdersCustomBatchRequestEntryCancelLineItem.Rd │ ├── OrdersCustomBatchRequestEntryRefund.Rd │ ├── OrdersCustomBatchRequestEntryReturnLineItem.Rd │ ├── OrdersCustomBatchRequestEntryShipLineItems.Rd │ ├── OrdersCustomBatchRequestEntryUpdateShipment.Rd │ ├── OrdersCustomBatchResponse.Rd │ ├── OrdersCustomBatchResponseEntry.Rd │ ├── OrdersGetByMerchantOrderIdResponse.Rd │ ├── OrdersGetTestOrderTemplateResponse.Rd │ ├── OrdersListResponse.Rd │ ├── OrdersRefundRequest.Rd │ ├── OrdersRefundResponse.Rd │ ├── OrdersReturnLineItemRequest.Rd │ ├── OrdersReturnLineItemResponse.Rd │ ├── OrdersShipLineItemsRequest.Rd │ ├── OrdersShipLineItemsResponse.Rd │ ├── OrdersUpdateMerchantOrderIdRequest.Rd │ ├── OrdersUpdateMerchantOrderIdResponse.Rd │ ├── OrdersUpdateShipmentRequest.Rd │ ├── OrdersUpdateShipmentResponse.Rd │ ├── Price.Rd │ ├── TestOrder.Rd │ ├── TestOrderCustomer.Rd │ ├── TestOrderLineItem.Rd │ ├── TestOrderLineItemProduct.Rd │ ├── TestOrderPaymentMethod.Rd │ ├── content_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── orders.acknowledge.Rd │ ├── orders.advancetestorder.Rd │ ├── orders.cancel.Rd │ ├── orders.cancellineitem.Rd │ ├── orders.createtestorder.Rd │ ├── orders.custombatch.Rd │ ├── orders.get.Rd │ ├── orders.getbymerchantorderid.Rd │ ├── orders.gettestordertemplate.Rd │ ├── orders.list.Rd │ ├── orders.refund.Rd │ ├── orders.returnlineitem.Rd │ ├── orders.shiplineitems.Rd │ ├── orders.updatemerchantorderid.Rd │ ├── orders.updateshipment.Rd │ └── rmNullObs.Rd ├── googlecustomsearchv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── customsearch_functions.R │ └── customsearch_objects.R ├── README.md ├── googlecustomsearchv1.auto.Rproj └── man │ ├── Context.Rd │ ├── Promotion.Rd │ ├── Promotion.bodyLines.Rd │ ├── Promotion.image.Rd │ ├── Query.Rd │ ├── Result.Rd │ ├── Result.image.Rd │ ├── Result.labels.Rd │ ├── Result.pagemap.Rd │ ├── Search.Rd │ ├── Search.queries.Rd │ ├── Search.searchInformation.Rd │ ├── Search.spelling.Rd │ ├── Search.url.Rd │ ├── customsearch_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── rmNullObs.Rd │ └── search.cse.list.Rd ├── googledataflowv1b3.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── dataflow_functions.R │ └── dataflow_objects.R ├── README.md ├── googledataflowv1b3.auto.Rproj └── man │ ├── ApproximateProgress.Rd │ ├── ApproximateReportedProgress.Rd │ ├── ApproximateSplitRequest.Rd │ ├── AutoscalingSettings.Rd │ ├── CPUTime.Rd │ ├── ComponentSource.Rd │ ├── ComponentTransform.Rd │ ├── ComputationTopology.Rd │ ├── ConcatPosition.Rd │ ├── CounterMetadata.Rd │ ├── CounterStructuredName.Rd │ ├── CounterStructuredNameAndMetadata.Rd │ ├── CounterUpdate.Rd │ ├── CreateJobFromTemplateRequest.Rd │ ├── CreateJobFromTemplateRequest.parameters.Rd │ ├── CustomSourceLocation.Rd │ ├── DataDiskAssignment.Rd │ ├── DerivedSource.Rd │ ├── Disk.Rd │ ├── DisplayData.Rd │ ├── DistributionUpdate.Rd │ ├── DynamicSourceSplit.Rd │ ├── Environment.Rd │ ├── Environment.internalExperiments.Rd │ ├── Environment.sdkPipelineOptions.Rd │ ├── Environment.userAgent.Rd │ ├── Environment.version.Rd │ ├── ExecutionStageSummary.Rd │ ├── FailedLocation.Rd │ ├── FlattenInstruction.Rd │ ├── FloatingPointList.Rd │ ├── FloatingPointMean.Rd │ ├── GetDebugConfigRequest.Rd │ ├── GetDebugConfigResponse.Rd │ ├── InstructionInput.Rd │ ├── InstructionOutput.Rd │ ├── InstructionOutput.codec.Rd │ ├── IntegerList.Rd │ ├── IntegerMean.Rd │ ├── Job.Rd │ ├── Job.labels.Rd │ ├── Job.transformNameMapping.Rd │ ├── JobExecutionInfo.Rd │ ├── JobExecutionInfo.stages.Rd │ ├── JobExecutionStageInfo.Rd │ ├── JobMessage.Rd │ ├── JobMetrics.Rd │ ├── KeyRangeDataDiskAssignment.Rd │ ├── KeyRangeLocation.Rd │ ├── LeaseWorkItemRequest.Rd │ ├── LeaseWorkItemResponse.Rd │ ├── ListJobMessagesResponse.Rd │ ├── ListJobsResponse.Rd │ ├── MapTask.Rd │ ├── MetricShortId.Rd │ ├── MetricStructuredName.Rd │ ├── MetricStructuredName.context.Rd │ ├── MetricUpdate.Rd │ ├── MountedDataDisk.Rd │ ├── MultiOutputInfo.Rd │ ├── NameAndKind.Rd │ ├── Package.Rd │ ├── ParDoInstruction.Rd │ ├── ParDoInstruction.userFn.Rd │ ├── ParallelInstruction.Rd │ ├── PartialGroupByKeyInstruction.Rd │ ├── PartialGroupByKeyInstruction.inputElementCodec.Rd │ ├── PartialGroupByKeyInstruction.valueCombiningFn.Rd │ ├── PipelineDescription.Rd │ ├── Position.Rd │ ├── PubsubLocation.Rd │ ├── ReadInstruction.Rd │ ├── ReportWorkItemStatusRequest.Rd │ ├── ReportWorkItemStatusResponse.Rd │ ├── ReportedParallelism.Rd │ ├── ResourceUtilizationReport.Rd │ ├── ResourceUtilizationReportResponse.Rd │ ├── RuntimeEnvironment.Rd │ ├── SendDebugCaptureRequest.Rd │ ├── SendDebugCaptureResponse.Rd │ ├── SendWorkerMessagesRequest.Rd │ ├── SendWorkerMessagesResponse.Rd │ ├── SeqMapTask.Rd │ ├── SeqMapTask.userFn.Rd │ ├── SeqMapTaskOutputInfo.Rd │ ├── ShellTask.Rd │ ├── SideInputInfo.Rd │ ├── SideInputInfo.kind.Rd │ ├── Sink.Rd │ ├── Sink.codec.Rd │ ├── Sink.spec.Rd │ ├── Source.Rd │ ├── Source.codec.Rd │ ├── Source.spec.Rd │ ├── SourceFork.Rd │ ├── SourceGetMetadataRequest.Rd │ ├── SourceGetMetadataResponse.Rd │ ├── SourceMetadata.Rd │ ├── SourceOperationRequest.Rd │ ├── SourceOperationResponse.Rd │ ├── SourceSplitOptions.Rd │ ├── SourceSplitRequest.Rd │ ├── SourceSplitResponse.Rd │ ├── SourceSplitShard.Rd │ ├── SplitInt64.Rd │ ├── StageSource.Rd │ ├── StateFamilyConfig.Rd │ ├── Status.Rd │ ├── Step.Rd │ ├── Step.properties.Rd │ ├── StreamLocation.Rd │ ├── StreamingComputationConfig.Rd │ ├── StreamingComputationRanges.Rd │ ├── StreamingComputationTask.Rd │ ├── StreamingConfigTask.Rd │ ├── StreamingConfigTask.userStepToStateFamilyNameMap.Rd │ ├── StreamingSetupTask.Rd │ ├── StreamingSideInputLocation.Rd │ ├── StreamingStageLocation.Rd │ ├── StringList.Rd │ ├── TaskRunnerSettings.Rd │ ├── TopologyConfig.Rd │ ├── TopologyConfig.userStageToComputationNameMap.Rd │ ├── TransformSummary.Rd │ ├── WorkItem.Rd │ ├── WorkItemServiceState.Rd │ ├── WorkItemServiceState.harnessData.Rd │ ├── WorkItemStatus.Rd │ ├── WorkerHealthReport.Rd │ ├── WorkerHealthReportResponse.Rd │ ├── WorkerMessage.Rd │ ├── WorkerMessage.labels.Rd │ ├── WorkerMessageCode.Rd │ ├── WorkerMessageCode.parameters.Rd │ ├── WorkerMessageResponse.Rd │ ├── WorkerPool.Rd │ ├── WorkerPool.metadata.Rd │ ├── WorkerPool.poolArgs.Rd │ ├── WorkerSettings.Rd │ ├── WriteInstruction.Rd │ ├── dataflow_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── projects.workerMessages.Rd │ └── rmNullObs.Rd ├── googledataprocv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── dataproc_functions.R │ └── dataproc_objects.R ├── README.md ├── googledataprocv1.auto.Rproj └── man │ ├── AcceleratorConfig.Rd │ ├── CancelJobRequest.Rd │ ├── Cluster.Rd │ ├── Cluster.labels.Rd │ ├── ClusterConfig.Rd │ ├── ClusterMetrics.Rd │ ├── ClusterMetrics.hdfsMetrics.Rd │ ├── ClusterMetrics.yarnMetrics.Rd │ ├── ClusterOperationMetadata.Rd │ ├── ClusterOperationMetadata.labels.Rd │ ├── ClusterOperationStatus.Rd │ ├── ClusterStatus.Rd │ ├── DiagnoseClusterOutputLocation.Rd │ ├── DiagnoseClusterRequest.Rd │ ├── DiagnoseClusterResults.Rd │ ├── DiskConfig.Rd │ ├── Empty.Rd │ ├── GceClusterConfig.Rd │ ├── GceClusterConfig.metadata.Rd │ ├── HadoopJob.Rd │ ├── HadoopJob.properties.Rd │ ├── HiveJob.Rd │ ├── HiveJob.properties.Rd │ ├── HiveJob.scriptVariables.Rd │ ├── InstanceGroupConfig.Rd │ ├── Job.Rd │ ├── Job.labels.Rd │ ├── JobPlacement.Rd │ ├── JobReference.Rd │ ├── JobScheduling.Rd │ ├── JobStatus.Rd │ ├── ListClustersResponse.Rd │ ├── ListJobsResponse.Rd │ ├── ListOperationsResponse.Rd │ ├── LoggingConfig.Rd │ ├── LoggingConfig.driverLogLevels.Rd │ ├── ManagedGroupConfig.Rd │ ├── NodeInitializationAction.Rd │ ├── Operation.Rd │ ├── Operation.metadata.Rd │ ├── Operation.response.Rd │ ├── OperationMetadata.Rd │ ├── OperationStatus.Rd │ ├── PigJob.Rd │ ├── PigJob.properties.Rd │ ├── PigJob.scriptVariables.Rd │ ├── PySparkJob.Rd │ ├── PySparkJob.properties.Rd │ ├── QueryList.Rd │ ├── SoftwareConfig.Rd │ ├── SoftwareConfig.properties.Rd │ ├── SparkJob.Rd │ ├── SparkJob.properties.Rd │ ├── SparkSqlJob.Rd │ ├── SparkSqlJob.properties.Rd │ ├── SparkSqlJob.scriptVariables.Rd │ ├── Status.Rd │ ├── SubmitJobRequest.Rd │ ├── YarnApplication.Rd │ ├── dataproc_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── projects.regions.clusters.create.Rd │ ├── projects.regions.clusters.delete.Rd │ ├── projects.regions.clusters.diagnose.Rd │ ├── projects.regions.clusters.get.Rd │ ├── projects.regions.clusters.list.Rd │ ├── projects.regions.clusters.patch.Rd │ ├── projects.regions.jobs.cancel.Rd │ ├── projects.regions.jobs.delete.Rd │ ├── projects.regions.jobs.get.Rd │ ├── projects.regions.jobs.list.Rd │ ├── projects.regions.jobs.patch.Rd │ ├── projects.regions.jobs.submit.Rd │ ├── projects.regions.operations.cancel.Rd │ ├── projects.regions.operations.delete.Rd │ ├── projects.regions.operations.get.Rd │ ├── projects.regions.operations.list.Rd │ └── rmNullObs.Rd ├── googledataprocv1alpha1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── dataproc_functions.R │ └── dataproc_objects.R ├── README.md ├── googledataprocv1alpha1.auto.Rproj └── man │ ├── AcceleratorConfiguration.Rd │ ├── CancelJobRequest.Rd │ ├── CancelOperationRequest.Rd │ ├── Cluster.Rd │ ├── Cluster.labels.Rd │ ├── ClusterConfiguration.Rd │ ├── ClusterMetrics.Rd │ ├── ClusterMetrics.hdfsMetrics.Rd │ ├── ClusterMetrics.yarnMetrics.Rd │ ├── ClusterOperationMetadata.Rd │ ├── ClusterOperationMetadata.labels.Rd │ ├── ClusterOperationStatus.Rd │ ├── ClusterStatus.Rd │ ├── DiagnoseClusterOutputLocation.Rd │ ├── DiagnoseClusterResults.Rd │ ├── DiskConfiguration.Rd │ ├── Empty.Rd │ ├── GceClusterConfiguration.Rd │ ├── GceClusterConfiguration.metadata.Rd │ ├── GceConfiguration.Rd │ ├── HadoopJob.Rd │ ├── HadoopJob.properties.Rd │ ├── HiveJob.Rd │ ├── HiveJob.properties.Rd │ ├── HiveJob.scriptVariables.Rd │ ├── InstanceGroupConfiguration.Rd │ ├── Job.Rd │ ├── Job.labels.Rd │ ├── JobPlacement.Rd │ ├── JobReference.Rd │ ├── JobScheduling.Rd │ ├── JobStatus.Rd │ ├── ListClustersResponse.Rd │ ├── ListJobsRequest.Rd │ ├── ListJobsResponse.Rd │ ├── ListOperationsResponse.Rd │ ├── LoggingConfiguration.Rd │ ├── LoggingConfiguration.driverLogLevels.Rd │ ├── ManagedGroupConfiguration.Rd │ ├── NodeInitializationAction.Rd │ ├── Operation.Rd │ ├── Operation.metadata.Rd │ ├── Operation.response.Rd │ ├── OperationMetadata.Rd │ ├── OperationStatus.Rd │ ├── PigJob.Rd │ ├── PigJob.properties.Rd │ ├── PigJob.scriptVariables.Rd │ ├── PySparkJob.Rd │ ├── PySparkJob.properties.Rd │ ├── QueryList.Rd │ ├── SoftwareConfiguration.Rd │ ├── SoftwareConfiguration.properties.Rd │ ├── SparkJob.Rd │ ├── SparkJob.properties.Rd │ ├── SparkSqlJob.Rd │ ├── SparkSqlJob.properties.Rd │ ├── SparkSqlJob.scriptVariables.Rd │ ├── Status.Rd │ ├── SubmitJobRequest.Rd │ ├── YarnApplication.Rd │ ├── dataproc_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── operations.cancel.Rd │ ├── operations.delete.Rd │ ├── operations.get.Rd │ ├── operations.list.Rd │ ├── projects.regions.clusters.create.Rd │ ├── projects.regions.clusters.delete.Rd │ ├── projects.regions.clusters.get.Rd │ ├── projects.regions.clusters.list.Rd │ ├── projects.regions.clusters.patch.Rd │ ├── projects.regions.jobs.cancel.Rd │ ├── projects.regions.jobs.delete.Rd │ ├── projects.regions.jobs.get.Rd │ ├── projects.regions.jobs.list.Rd │ ├── projects.regions.jobs.patch.Rd │ ├── projects.regions.jobs.submit.Rd │ └── rmNullObs.Rd ├── googledataprocv1beta1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── dataproc_functions.R │ └── dataproc_objects.R ├── README.md ├── googledataprocv1beta1.auto.Rproj └── man │ ├── AcceleratorConfiguration.Rd │ ├── CancelJobRequest.Rd │ ├── CancelOperationRequest.Rd │ ├── Cluster.Rd │ ├── Cluster.labels.Rd │ ├── ClusterConfiguration.Rd │ ├── ClusterMetrics.Rd │ ├── ClusterMetrics.hdfsMetrics.Rd │ ├── ClusterMetrics.yarnMetrics.Rd │ ├── ClusterOperationMetadata.Rd │ ├── ClusterOperationMetadata.labels.Rd │ ├── ClusterOperationStatus.Rd │ ├── ClusterStatus.Rd │ ├── DiagnoseClusterOutputLocation.Rd │ ├── DiagnoseClusterRequest.Rd │ ├── DiagnoseClusterResults.Rd │ ├── DiskConfiguration.Rd │ ├── Empty.Rd │ ├── GceClusterConfiguration.Rd │ ├── GceClusterConfiguration.metadata.Rd │ ├── HadoopJob.Rd │ ├── HadoopJob.properties.Rd │ ├── HiveJob.Rd │ ├── HiveJob.properties.Rd │ ├── HiveJob.scriptVariables.Rd │ ├── InstanceGroupConfiguration.Rd │ ├── Job.Rd │ ├── Job.labels.Rd │ ├── JobPlacement.Rd │ ├── JobReference.Rd │ ├── JobScheduling.Rd │ ├── JobStatus.Rd │ ├── ListClustersResponse.Rd │ ├── ListJobsResponse.Rd │ ├── ListOperationsResponse.Rd │ ├── LoggingConfiguration.Rd │ ├── LoggingConfiguration.driverLogLevels.Rd │ ├── ManagedGroupConfiguration.Rd │ ├── NodeInitializationAction.Rd │ ├── Operation.Rd │ ├── Operation.metadata.Rd │ ├── Operation.response.Rd │ ├── OperationMetadata.Rd │ ├── OperationStatus.Rd │ ├── PigJob.Rd │ ├── PigJob.properties.Rd │ ├── PigJob.scriptVariables.Rd │ ├── PySparkJob.Rd │ ├── PySparkJob.properties.Rd │ ├── QueryList.Rd │ ├── SoftwareConfiguration.Rd │ ├── SoftwareConfiguration.properties.Rd │ ├── SparkJob.Rd │ ├── SparkJob.properties.Rd │ ├── SparkSqlJob.Rd │ ├── SparkSqlJob.properties.Rd │ ├── SparkSqlJob.scriptVariables.Rd │ ├── Status.Rd │ ├── SubmitJobRequest.Rd │ ├── YarnApplication.Rd │ ├── dataproc_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── operations.cancel.Rd │ ├── operations.delete.Rd │ ├── operations.get.Rd │ ├── operations.list.Rd │ ├── projects.clusters.create.Rd │ ├── projects.clusters.delete.Rd │ ├── projects.clusters.diagnose.Rd │ ├── projects.clusters.get.Rd │ ├── projects.clusters.list.Rd │ ├── projects.clusters.patch.Rd │ ├── projects.jobs.cancel.Rd │ ├── projects.jobs.delete.Rd │ ├── projects.jobs.get.Rd │ ├── projects.jobs.list.Rd │ ├── projects.jobs.patch.Rd │ ├── projects.jobs.submit.Rd │ └── rmNullObs.Rd ├── googledatastorev1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── datastore_functions.R │ └── datastore_objects.R ├── README.md ├── googledatastorev1.auto.Rproj └── man │ ├── AllocateIdsRequest.Rd │ ├── AllocateIdsResponse.Rd │ ├── ArrayValue.Rd │ ├── BeginTransactionRequest.Rd │ ├── BeginTransactionResponse.Rd │ ├── CommitRequest.Rd │ ├── CommitResponse.Rd │ ├── CompositeFilter.Rd │ ├── Entity.Rd │ ├── Entity.properties.Rd │ ├── EntityResult.Rd │ ├── Filter.Rd │ ├── GqlQuery.Rd │ ├── GqlQuery.namedBindings.Rd │ ├── GqlQueryParameter.Rd │ ├── Key.Rd │ ├── KindExpression.Rd │ ├── LatLng.Rd │ ├── LookupRequest.Rd │ ├── LookupResponse.Rd │ ├── Mutation.Rd │ ├── MutationResult.Rd │ ├── PartitionId.Rd │ ├── PathElement.Rd │ ├── Projection.Rd │ ├── PropertyFilter.Rd │ ├── PropertyOrder.Rd │ ├── PropertyReference.Rd │ ├── Query.Rd │ ├── QueryResultBatch.Rd │ ├── ReadOptions.Rd │ ├── RollbackRequest.Rd │ ├── RollbackResponse.Rd │ ├── RunQueryRequest.Rd │ ├── RunQueryResponse.Rd │ ├── Value.Rd │ ├── datastore_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── projects.allocateIds.Rd │ ├── projects.beginTransaction.Rd │ ├── projects.commit.Rd │ ├── projects.lookup.Rd │ ├── projects.rollback.Rd │ ├── projects.runQuery.Rd │ └── rmNullObs.Rd ├── googledatastorev1beta1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── datastore_functions.R │ └── datastore_objects.R ├── README.md ├── googledatastorev1beta1.auto.Rproj └── man │ ├── AllocateIdsRequest.Rd │ ├── AllocateIdsResponse.Rd │ ├── BeginTransactionRequest.Rd │ ├── BeginTransactionResponse.Rd │ ├── BlindWriteRequest.Rd │ ├── BlindWriteResponse.Rd │ ├── CommitRequest.Rd │ ├── CommitResponse.Rd │ ├── CompositeFilter.Rd │ ├── Entity.Rd │ ├── Entity.properties.Rd │ ├── EntityResult.Rd │ ├── Filter.Rd │ ├── GqlQuery.Rd │ ├── GqlQueryArg.Rd │ ├── Key.Rd │ ├── KeyPathElement.Rd │ ├── KindExpression.Rd │ ├── LookupRequest.Rd │ ├── LookupResponse.Rd │ ├── Mutation.Rd │ ├── MutationResult.Rd │ ├── PartitionId.Rd │ ├── Property.Rd │ ├── PropertyExpression.Rd │ ├── PropertyFilter.Rd │ ├── PropertyOrder.Rd │ ├── PropertyReference.Rd │ ├── Query.Rd │ ├── QueryResultBatch.Rd │ ├── ReadOptions.Rd │ ├── ResponseHeader.Rd │ ├── RollbackRequest.Rd │ ├── RollbackResponse.Rd │ ├── RunQueryRequest.Rd │ ├── RunQueryResponse.Rd │ ├── Value.Rd │ ├── datasets.allocateIds.Rd │ ├── datasets.beginTransaction.Rd │ ├── datasets.blindWrite.Rd │ ├── datasets.commit.Rd │ ├── datasets.lookup.Rd │ ├── datasets.rollback.Rd │ ├── datasets.runQuery.Rd │ ├── datastore_googleAuthR.Rd │ ├── is.NullOb.Rd │ └── rmNullObs.Rd ├── googledatastorev1beta2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── datastore_functions.R │ └── datastore_objects.R ├── README.md ├── googledatastorev1beta2.auto.Rproj └── man │ ├── AllocateIdsRequest.Rd │ ├── AllocateIdsResponse.Rd │ ├── BeginTransactionRequest.Rd │ ├── BeginTransactionResponse.Rd │ ├── CommitRequest.Rd │ ├── CommitResponse.Rd │ ├── CompositeFilter.Rd │ ├── Entity.Rd │ ├── Entity.properties.Rd │ ├── EntityResult.Rd │ ├── Filter.Rd │ ├── GqlQuery.Rd │ ├── GqlQueryArg.Rd │ ├── Key.Rd │ ├── KeyPathElement.Rd │ ├── KindExpression.Rd │ ├── LookupRequest.Rd │ ├── LookupResponse.Rd │ ├── Mutation.Rd │ ├── MutationResult.Rd │ ├── PartitionId.Rd │ ├── Property.Rd │ ├── PropertyExpression.Rd │ ├── PropertyFilter.Rd │ ├── PropertyOrder.Rd │ ├── PropertyReference.Rd │ ├── Query.Rd │ ├── QueryResultBatch.Rd │ ├── ReadOptions.Rd │ ├── ResponseHeader.Rd │ ├── RollbackRequest.Rd │ ├── RollbackResponse.Rd │ ├── RunQueryRequest.Rd │ ├── RunQueryResponse.Rd │ ├── Value.Rd │ ├── datasets.allocateIds.Rd │ ├── datasets.beginTransaction.Rd │ ├── datasets.commit.Rd │ ├── datasets.lookup.Rd │ ├── datasets.rollback.Rd │ ├── datasets.runQuery.Rd │ ├── datastore_googleAuthR.Rd │ ├── is.NullOb.Rd │ └── rmNullObs.Rd ├── googledatastorev1beta3.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── datastore_functions.R │ └── datastore_objects.R ├── README.md ├── googledatastorev1beta3.auto.Rproj └── man │ ├── AllocateIdsRequest.Rd │ ├── AllocateIdsResponse.Rd │ ├── ArrayValue.Rd │ ├── BeginTransactionRequest.Rd │ ├── BeginTransactionResponse.Rd │ ├── CommitRequest.Rd │ ├── CommitResponse.Rd │ ├── CompositeFilter.Rd │ ├── Entity.Rd │ ├── Entity.properties.Rd │ ├── EntityResult.Rd │ ├── Filter.Rd │ ├── GqlQuery.Rd │ ├── GqlQuery.namedBindings.Rd │ ├── GqlQueryParameter.Rd │ ├── Key.Rd │ ├── KindExpression.Rd │ ├── LatLng.Rd │ ├── LookupRequest.Rd │ ├── LookupResponse.Rd │ ├── Mutation.Rd │ ├── MutationResult.Rd │ ├── PartitionId.Rd │ ├── PathElement.Rd │ ├── Projection.Rd │ ├── PropertyFilter.Rd │ ├── PropertyOrder.Rd │ ├── PropertyReference.Rd │ ├── Query.Rd │ ├── QueryResultBatch.Rd │ ├── ReadOptions.Rd │ ├── RollbackRequest.Rd │ ├── RollbackResponse.Rd │ ├── RunQueryRequest.Rd │ ├── RunQueryResponse.Rd │ ├── Value.Rd │ ├── datastore_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── projects.allocateIds.Rd │ ├── projects.beginTransaction.Rd │ ├── projects.commit.Rd │ ├── projects.lookup.Rd │ ├── projects.rollback.Rd │ ├── projects.runQuery.Rd │ └── rmNullObs.Rd ├── googledeploymentmanageralpha.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── deploymentmanager_functions.R │ └── deploymentmanager_objects.R ├── README.md ├── googledeploymentmanageralpha.auto.Rproj └── man │ ├── AuditConfig.Rd │ ├── AuditLogConfig.Rd │ ├── BasicAuth.Rd │ ├── Binding.Rd │ ├── CollectionOverride.Rd │ ├── CompositeType.Rd │ ├── CompositeTypeLabelEntry.Rd │ ├── CompositeTypesListResponse.Rd │ ├── Condition.Rd │ ├── ConfigFile.Rd │ ├── ConfigurableService.Rd │ ├── Credential.Rd │ ├── Deployment.Rd │ ├── DeploymentLabelEntry.Rd │ ├── DeploymentUpdate.Rd │ ├── DeploymentUpdateLabelEntry.Rd │ ├── DeploymentsCancelPreviewRequest.Rd │ ├── DeploymentsListResponse.Rd │ ├── DeploymentsStopRequest.Rd │ ├── ImportFile.Rd │ ├── InputMapping.Rd │ ├── LogConfig.Rd │ ├── LogConfigCounterOptions.Rd │ ├── Manifest.Rd │ ├── ManifestsListResponse.Rd │ ├── Operation.Rd │ ├── Operation.error.Rd │ ├── Operation.error.errors.Rd │ ├── Operation.warnings.Rd │ ├── Operation.warnings.data.Rd │ ├── OperationsListResponse.Rd │ ├── Options.Rd │ ├── Policy.Rd │ ├── Resource.Rd │ ├── Resource.warnings.Rd │ ├── Resource.warnings.data.Rd │ ├── ResourceAccessControl.Rd │ ├── ResourceUpdate.Rd │ ├── ResourceUpdate.error.Rd │ ├── ResourceUpdate.error.errors.Rd │ ├── ResourceUpdate.warnings.Rd │ ├── ResourceUpdate.warnings.data.Rd │ ├── ResourcesListResponse.Rd │ ├── Rule.Rd │ ├── TargetConfiguration.Rd │ ├── TemplateContents.Rd │ ├── TestPermissionsRequest.Rd │ ├── TestPermissionsResponse.Rd │ ├── Type.Rd │ ├── TypeLabelEntry.Rd │ ├── TypeProvider.Rd │ ├── TypeProviderLabelEntry.Rd │ ├── TypeProvidersListResponse.Rd │ ├── TypesListResponse.Rd │ ├── ValidationOptions.Rd │ ├── compositeTypes.delete.Rd │ ├── compositeTypes.get.Rd │ ├── compositeTypes.insert.Rd │ ├── compositeTypes.list.Rd │ ├── compositeTypes.patch.Rd │ ├── compositeTypes.update.Rd │ ├── deploymentmanager_googleAuthR.Rd │ ├── deployments.cancelPreview.Rd │ ├── deployments.delete.Rd │ ├── deployments.get.Rd │ ├── deployments.getIamPolicy.Rd │ ├── deployments.insert.Rd │ ├── deployments.list.Rd │ ├── deployments.patch.Rd │ ├── deployments.setIamPolicy.Rd │ ├── deployments.stop.Rd │ ├── deployments.testIamPermissions.Rd │ ├── deployments.update.Rd │ ├── is.NullOb.Rd │ ├── manifests.get.Rd │ ├── manifests.list.Rd │ ├── operations.get.Rd │ ├── operations.list.Rd │ ├── resources.get.Rd │ ├── resources.list.Rd │ ├── rmNullObs.Rd │ ├── typeProviders.delete.Rd │ ├── typeProviders.get.Rd │ ├── typeProviders.insert.Rd │ ├── typeProviders.list.Rd │ ├── typeProviders.patch.Rd │ ├── typeProviders.update.Rd │ ├── types.delete.Rd │ ├── types.get.Rd │ ├── types.insert.Rd │ ├── types.list.Rd │ ├── types.patch.Rd │ └── types.update.Rd ├── googledeploymentmanagerv2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── deploymentmanager_functions.R │ └── deploymentmanager_objects.R ├── README.md ├── googledeploymentmanagerv2.auto.Rproj └── man │ ├── AuditConfig.Rd │ ├── AuditLogConfig.Rd │ ├── Binding.Rd │ ├── Condition.Rd │ ├── ConfigFile.Rd │ ├── Deployment.Rd │ ├── DeploymentLabelEntry.Rd │ ├── DeploymentUpdate.Rd │ ├── DeploymentUpdateLabelEntry.Rd │ ├── DeploymentsCancelPreviewRequest.Rd │ ├── DeploymentsListResponse.Rd │ ├── DeploymentsStopRequest.Rd │ ├── ImportFile.Rd │ ├── LogConfig.Rd │ ├── LogConfigCounterOptions.Rd │ ├── Manifest.Rd │ ├── ManifestsListResponse.Rd │ ├── Operation.Rd │ ├── Operation.error.Rd │ ├── Operation.error.errors.Rd │ ├── Operation.warnings.Rd │ ├── Operation.warnings.data.Rd │ ├── OperationsListResponse.Rd │ ├── Policy.Rd │ ├── Resource.Rd │ ├── Resource.warnings.Rd │ ├── Resource.warnings.data.Rd │ ├── ResourceAccessControl.Rd │ ├── ResourceUpdate.Rd │ ├── ResourceUpdate.error.Rd │ ├── ResourceUpdate.error.errors.Rd │ ├── ResourceUpdate.warnings.Rd │ ├── ResourceUpdate.warnings.data.Rd │ ├── ResourcesListResponse.Rd │ ├── Rule.Rd │ ├── TargetConfiguration.Rd │ ├── TestPermissionsRequest.Rd │ ├── TestPermissionsResponse.Rd │ ├── Type.Rd │ ├── TypesListResponse.Rd │ ├── deploymentmanager_googleAuthR.Rd │ ├── deployments.cancelPreview.Rd │ ├── deployments.delete.Rd │ ├── deployments.get.Rd │ ├── deployments.getIamPolicy.Rd │ ├── deployments.insert.Rd │ ├── deployments.list.Rd │ ├── deployments.patch.Rd │ ├── deployments.setIamPolicy.Rd │ ├── deployments.stop.Rd │ ├── deployments.testIamPermissions.Rd │ ├── deployments.update.Rd │ ├── is.NullOb.Rd │ ├── manifests.get.Rd │ ├── manifests.list.Rd │ ├── operations.get.Rd │ ├── operations.list.Rd │ ├── resources.get.Rd │ ├── resources.list.Rd │ ├── rmNullObs.Rd │ └── types.list.Rd ├── googledfareportingv26.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── dfareporting_functions.R │ └── dfareporting_objects.R ├── README.md ├── googledfareportingv26.auto.Rproj └── man │ ├── Account.Rd │ ├── AccountActiveAdSummary.Rd │ ├── AccountPermission.Rd │ ├── AccountPermissionGroup.Rd │ ├── AccountPermissionGroupsListResponse.Rd │ ├── AccountPermissionsListResponse.Rd │ ├── AccountUserProfile.Rd │ ├── AccountUserProfilesListResponse.Rd │ ├── AccountsListResponse.Rd │ ├── Activities.Rd │ ├── Ad.Rd │ ├── AdSlot.Rd │ ├── AdsListResponse.Rd │ ├── Advertiser.Rd │ ├── AdvertiserGroup.Rd │ ├── AdvertiserGroupsListResponse.Rd │ ├── AdvertisersListResponse.Rd │ ├── AudienceSegment.Rd │ ├── AudienceSegmentGroup.Rd │ ├── Browser.Rd │ ├── BrowsersListResponse.Rd │ ├── Campaign.Rd │ ├── CampaignCreativeAssociation.Rd │ ├── CampaignCreativeAssociationsListResponse.Rd │ ├── CampaignsListResponse.Rd │ ├── ChangeLog.Rd │ ├── ChangeLogsListResponse.Rd │ ├── CitiesListResponse.Rd │ ├── City.Rd │ ├── ClickTag.Rd │ ├── ClickThroughUrl.Rd │ ├── ClickThroughUrlSuffixProperties.Rd │ ├── CompanionClickThroughOverride.Rd │ ├── CompatibleFields.Rd │ ├── ConnectionType.Rd │ ├── ConnectionTypesListResponse.Rd │ ├── ContentCategoriesListResponse.Rd │ ├── ContentCategory.Rd │ ├── Conversion.Rd │ ├── ConversionError.Rd │ ├── ConversionStatus.Rd │ ├── ConversionsBatchInsertRequest.Rd │ ├── ConversionsBatchInsertResponse.Rd │ ├── CountriesListResponse.Rd │ ├── Country.Rd │ ├── Creative.Rd │ ├── CreativeAsset.Rd │ ├── CreativeAssetId.Rd │ ├── CreativeAssetMetadata.Rd │ ├── CreativeAssetSelection.Rd │ ├── CreativeAssignment.Rd │ ├── CreativeCustomEvent.Rd │ ├── CreativeField.Rd │ ├── CreativeFieldAssignment.Rd │ ├── CreativeFieldValue.Rd │ ├── CreativeFieldValuesListResponse.Rd │ ├── CreativeFieldsListResponse.Rd │ ├── CreativeGroup.Rd │ ├── CreativeGroupAssignment.Rd │ ├── CreativeGroupsListResponse.Rd │ ├── CreativeOptimizationConfiguration.Rd │ ├── CreativeRotation.Rd │ ├── CreativeSettings.Rd │ ├── CreativesListResponse.Rd │ ├── CrossDimensionReachReportCompatibleFields.Rd │ ├── CustomFloodlightVariable.Rd │ ├── CustomRichMediaEvents.Rd │ ├── DateRange.Rd │ ├── DayPartTargeting.Rd │ ├── DefaultClickThroughEventTagProperties.Rd │ ├── DeliverySchedule.Rd │ ├── DfpSettings.Rd │ ├── Dimension.Rd │ ├── DimensionFilter.Rd │ ├── DimensionValue.Rd │ ├── DimensionValueList.Rd │ ├── DimensionValueRequest.Rd │ ├── DirectorySite.Rd │ ├── DirectorySiteContact.Rd │ ├── DirectorySiteContactAssignment.Rd │ ├── DirectorySiteContactsListResponse.Rd │ ├── DirectorySiteSettings.Rd │ ├── DirectorySitesListResponse.Rd │ ├── DynamicTargetingKey.Rd │ ├── DynamicTargetingKeysListResponse.Rd │ ├── EncryptionInfo.Rd │ ├── EventTag.Rd │ ├── EventTagOverride.Rd │ ├── EventTagsListResponse.Rd │ ├── File.Rd │ ├── File.urls.Rd │ ├── FileList.Rd │ ├── Flight.Rd │ ├── FloodlightActivitiesGenerateTagResponse.Rd │ ├── FloodlightActivitiesListResponse.Rd │ ├── FloodlightActivity.Rd │ ├── FloodlightActivityDynamicTag.Rd │ ├── FloodlightActivityGroup.Rd │ ├── FloodlightActivityGroupsListResponse.Rd │ ├── FloodlightActivityPublisherDynamicTag.Rd │ ├── FloodlightConfiguration.Rd │ ├── FloodlightConfigurationsListResponse.Rd │ ├── FloodlightReportCompatibleFields.Rd │ ├── FrequencyCap.Rd │ ├── FsCommand.Rd │ ├── GeoTargeting.Rd │ ├── InventoryItem.Rd │ ├── InventoryItemsListResponse.Rd │ ├── KeyValueTargetingExpression.Rd │ ├── LandingPage.Rd │ ├── LandingPagesListResponse.Rd │ ├── Language.Rd │ ├── LanguageTargeting.Rd │ ├── LanguagesListResponse.Rd │ ├── LastModifiedInfo.Rd │ ├── ListPopulationClause.Rd │ ├── ListPopulationRule.Rd │ ├── ListPopulationTerm.Rd │ ├── ListTargetingExpression.Rd │ ├── LookbackConfiguration.Rd │ ├── Metric.Rd │ ├── Metro.Rd │ ├── MetrosListResponse.Rd │ ├── MobileCarrier.Rd │ ├── MobileCarriersListResponse.Rd │ ├── ObjectFilter.Rd │ ├── OffsetPosition.Rd │ ├── OmnitureSettings.Rd │ ├── OperatingSystem.Rd │ ├── OperatingSystemVersion.Rd │ ├── OperatingSystemVersionsListResponse.Rd │ ├── OperatingSystemsListResponse.Rd │ ├── OptimizationActivity.Rd │ ├── Order.Rd │ ├── OrderContact.Rd │ ├── OrderDocument.Rd │ ├── OrderDocumentsListResponse.Rd │ ├── OrdersListResponse.Rd │ ├── PathToConversionReportCompatibleFields.Rd │ ├── Placement.Rd │ ├── PlacementAssignment.Rd │ ├── PlacementGroup.Rd │ ├── PlacementGroupsListResponse.Rd │ ├── PlacementStrategiesListResponse.Rd │ ├── PlacementStrategy.Rd │ ├── PlacementTag.Rd │ ├── PlacementsGenerateTagsResponse.Rd │ ├── PlacementsListResponse.Rd │ ├── PlatformType.Rd │ ├── PlatformTypesListResponse.Rd │ ├── PopupWindowProperties.Rd │ ├── PostalCode.Rd │ ├── PostalCodesListResponse.Rd │ ├── Pricing.Rd │ ├── PricingSchedule.Rd │ ├── PricingSchedulePricingPeriod.Rd │ ├── Project.Rd │ ├── ProjectsListResponse.Rd │ ├── ReachReportCompatibleFields.Rd │ ├── Recipient.Rd │ ├── Region.Rd │ ├── RegionsListResponse.Rd │ ├── RemarketingList.Rd │ ├── RemarketingListShare.Rd │ ├── RemarketingListsListResponse.Rd │ ├── Report.Rd │ ├── Report.criteria.Rd │ ├── Report.crossDimensionReachCriteria.Rd │ ├── Report.delivery.Rd │ ├── Report.floodlightCriteria.Rd │ ├── Report.floodlightCriteria.reportProperties.Rd │ ├── Report.pathToConversionCriteria.Rd │ ├── Report.pathToConversionCriteria.reportProperties.Rd │ ├── Report.reachCriteria.Rd │ ├── Report.schedule.Rd │ ├── ReportCompatibleFields.Rd │ ├── ReportList.Rd │ ├── ReportsConfiguration.Rd │ ├── RichMediaExitOverride.Rd │ ├── Rule.Rd │ ├── Site.Rd │ ├── SiteContact.Rd │ ├── SiteSettings.Rd │ ├── SitesListResponse.Rd │ ├── Size.Rd │ ├── SizesListResponse.Rd │ ├── SortedDimension.Rd │ ├── Subaccount.Rd │ ├── SubaccountsListResponse.Rd │ ├── TagData.Rd │ ├── TagSetting.Rd │ ├── TagSettings.Rd │ ├── TargetWindow.Rd │ ├── TargetableRemarketingList.Rd │ ├── TargetableRemarketingListsListResponse.Rd │ ├── TargetingTemplate.Rd │ ├── TargetingTemplatesListResponse.Rd │ ├── TechnologyTargeting.Rd │ ├── ThirdPartyAuthenticationToken.Rd │ ├── ThirdPartyTrackingUrl.Rd │ ├── UserDefinedVariableConfiguration.Rd │ ├── UserProfile.Rd │ ├── UserProfileList.Rd │ ├── UserRole.Rd │ ├── UserRolePermission.Rd │ ├── UserRolePermissionGroup.Rd │ ├── UserRolePermissionGroupsListResponse.Rd │ ├── UserRolePermissionsListResponse.Rd │ ├── UserRolesListResponse.Rd │ ├── accountActiveAdSummaries.get.Rd │ ├── accountPermissionGroups.get.Rd │ ├── accountPermissionGroups.list.Rd │ ├── accountPermissions.get.Rd │ ├── accountPermissions.list.Rd │ ├── accountUserProfiles.get.Rd │ ├── accountUserProfiles.insert.Rd │ ├── accountUserProfiles.list.Rd │ ├── accountUserProfiles.patch.Rd │ ├── accountUserProfiles.update.Rd │ ├── accounts.get.Rd │ ├── accounts.list.Rd │ ├── accounts.patch.Rd │ ├── accounts.update.Rd │ ├── ads.get.Rd │ ├── ads.insert.Rd │ ├── ads.list.Rd │ ├── ads.patch.Rd │ ├── ads.update.Rd │ ├── advertiserGroups.delete.Rd │ ├── advertiserGroups.get.Rd │ ├── advertiserGroups.insert.Rd │ ├── advertiserGroups.list.Rd │ ├── advertiserGroups.patch.Rd │ ├── advertiserGroups.update.Rd │ ├── advertisers.get.Rd │ ├── advertisers.insert.Rd │ ├── advertisers.list.Rd │ ├── advertisers.patch.Rd │ ├── advertisers.update.Rd │ ├── browsers.list.Rd │ ├── campaignCreativeAssociations.insert.Rd │ ├── campaignCreativeAssociations.list.Rd │ ├── campaigns.get.Rd │ ├── campaigns.insert.Rd │ ├── campaigns.list.Rd │ ├── campaigns.patch.Rd │ ├── campaigns.update.Rd │ ├── changeLogs.get.Rd │ ├── changeLogs.list.Rd │ ├── cities.list.Rd │ ├── connectionTypes.get.Rd │ ├── connectionTypes.list.Rd │ ├── contentCategories.delete.Rd │ ├── contentCategories.get.Rd │ ├── contentCategories.insert.Rd │ ├── contentCategories.list.Rd │ ├── contentCategories.patch.Rd │ ├── contentCategories.update.Rd │ ├── conversions.batchinsert.Rd │ ├── countries.get.Rd │ ├── countries.list.Rd │ ├── creativeAssets.insert.Rd │ ├── creativeFieldValues.delete.Rd │ ├── creativeFieldValues.get.Rd │ ├── creativeFieldValues.insert.Rd │ ├── creativeFieldValues.list.Rd │ ├── creativeFieldValues.patch.Rd │ ├── creativeFieldValues.update.Rd │ ├── creativeFields.delete.Rd │ ├── creativeFields.get.Rd │ ├── creativeFields.insert.Rd │ ├── creativeFields.list.Rd │ ├── creativeFields.patch.Rd │ ├── creativeFields.update.Rd │ ├── creativeGroups.get.Rd │ ├── creativeGroups.insert.Rd │ ├── creativeGroups.list.Rd │ ├── creativeGroups.patch.Rd │ ├── creativeGroups.update.Rd │ ├── creatives.get.Rd │ ├── creatives.insert.Rd │ ├── creatives.list.Rd │ ├── creatives.patch.Rd │ ├── creatives.update.Rd │ ├── dfareporting_googleAuthR.Rd │ ├── dimensionValues.query.Rd │ ├── directorySiteContacts.get.Rd │ ├── directorySiteContacts.list.Rd │ ├── directorySites.get.Rd │ ├── directorySites.insert.Rd │ ├── directorySites.list.Rd │ ├── dynamicTargetingKeys.delete.Rd │ ├── dynamicTargetingKeys.insert.Rd │ ├── dynamicTargetingKeys.list.Rd │ ├── eventTags.delete.Rd │ ├── eventTags.get.Rd │ ├── eventTags.insert.Rd │ ├── eventTags.list.Rd │ ├── eventTags.patch.Rd │ ├── eventTags.update.Rd │ ├── files.get.Rd │ ├── files.list.Rd │ ├── floodlightActivities.delete.Rd │ ├── floodlightActivities.generatetag.Rd │ ├── floodlightActivities.get.Rd │ ├── floodlightActivities.insert.Rd │ ├── floodlightActivities.list.Rd │ ├── floodlightActivities.patch.Rd │ ├── floodlightActivities.update.Rd │ ├── floodlightActivityGroups.get.Rd │ ├── floodlightActivityGroups.insert.Rd │ ├── floodlightActivityGroups.list.Rd │ ├── floodlightActivityGroups.patch.Rd │ ├── floodlightActivityGroups.update.Rd │ ├── floodlightConfigurations.get.Rd │ ├── floodlightConfigurations.list.Rd │ ├── floodlightConfigurations.patch.Rd │ ├── floodlightConfigurations.update.Rd │ ├── inventoryItems.get.Rd │ ├── inventoryItems.list.Rd │ ├── is.NullOb.Rd │ ├── landingPages.delete.Rd │ ├── landingPages.get.Rd │ ├── landingPages.insert.Rd │ ├── landingPages.list.Rd │ ├── landingPages.patch.Rd │ ├── landingPages.update.Rd │ ├── languages.list.Rd │ ├── metros.list.Rd │ ├── mobileCarriers.get.Rd │ ├── mobileCarriers.list.Rd │ ├── operatingSystemVersions.get.Rd │ ├── operatingSystemVersions.list.Rd │ ├── operatingSystems.get.Rd │ ├── operatingSystems.list.Rd │ ├── orderDocuments.get.Rd │ ├── orderDocuments.list.Rd │ ├── orders.get.Rd │ ├── orders.list.Rd │ ├── placementGroups.get.Rd │ ├── placementGroups.insert.Rd │ ├── placementGroups.list.Rd │ ├── placementGroups.patch.Rd │ ├── placementGroups.update.Rd │ ├── placementStrategies.delete.Rd │ ├── placementStrategies.get.Rd │ ├── placementStrategies.insert.Rd │ ├── placementStrategies.list.Rd │ ├── placementStrategies.patch.Rd │ ├── placementStrategies.update.Rd │ ├── placements.generatetags.Rd │ ├── placements.get.Rd │ ├── placements.insert.Rd │ ├── placements.list.Rd │ ├── placements.patch.Rd │ ├── placements.update.Rd │ ├── platformTypes.get.Rd │ ├── platformTypes.list.Rd │ ├── postalCodes.get.Rd │ ├── postalCodes.list.Rd │ ├── projects.get.Rd │ ├── projects.list.Rd │ ├── regions.list.Rd │ ├── remarketingListShares.get.Rd │ ├── remarketingListShares.patch.Rd │ ├── remarketingListShares.update.Rd │ ├── remarketingLists.get.Rd │ ├── remarketingLists.insert.Rd │ ├── remarketingLists.list.Rd │ ├── remarketingLists.patch.Rd │ ├── remarketingLists.update.Rd │ ├── reports.delete.Rd │ ├── reports.get.Rd │ ├── reports.insert.Rd │ ├── reports.list.Rd │ ├── reports.patch.Rd │ ├── reports.run.Rd │ ├── reports.update.Rd │ ├── rmNullObs.Rd │ ├── sites.get.Rd │ ├── sites.insert.Rd │ ├── sites.list.Rd │ ├── sites.patch.Rd │ ├── sites.update.Rd │ ├── sizes.get.Rd │ ├── sizes.insert.Rd │ ├── sizes.list.Rd │ ├── subaccounts.get.Rd │ ├── subaccounts.insert.Rd │ ├── subaccounts.list.Rd │ ├── subaccounts.patch.Rd │ ├── subaccounts.update.Rd │ ├── targetableRemarketingLists.get.Rd │ ├── targetableRemarketingLists.list.Rd │ ├── targetingTemplates.get.Rd │ ├── targetingTemplates.insert.Rd │ ├── targetingTemplates.list.Rd │ ├── targetingTemplates.patch.Rd │ ├── targetingTemplates.update.Rd │ ├── userProfiles.get.Rd │ ├── userProfiles.list.Rd │ ├── userRolePermissionGroups.get.Rd │ ├── userRolePermissionGroups.list.Rd │ ├── userRolePermissions.get.Rd │ ├── userRolePermissions.list.Rd │ ├── userRoles.delete.Rd │ ├── userRoles.get.Rd │ ├── userRoles.insert.Rd │ ├── userRoles.list.Rd │ ├── userRoles.patch.Rd │ └── userRoles.update.Rd ├── googledfareportingv27.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── dfareporting_functions.R │ └── dfareporting_objects.R ├── README.md ├── googledfareportingv27.auto.Rproj └── man │ ├── Account.Rd │ ├── AccountActiveAdSummary.Rd │ ├── AccountPermission.Rd │ ├── AccountPermissionGroup.Rd │ ├── AccountPermissionGroupsListResponse.Rd │ ├── AccountPermissionsListResponse.Rd │ ├── AccountUserProfile.Rd │ ├── AccountUserProfilesListResponse.Rd │ ├── AccountsListResponse.Rd │ ├── Activities.Rd │ ├── Ad.Rd │ ├── AdSlot.Rd │ ├── AdsListResponse.Rd │ ├── Advertiser.Rd │ ├── AdvertiserGroup.Rd │ ├── AdvertiserGroupsListResponse.Rd │ ├── AdvertisersListResponse.Rd │ ├── AudienceSegment.Rd │ ├── AudienceSegmentGroup.Rd │ ├── Browser.Rd │ ├── BrowsersListResponse.Rd │ ├── Campaign.Rd │ ├── CampaignCreativeAssociation.Rd │ ├── CampaignCreativeAssociationsListResponse.Rd │ ├── CampaignsListResponse.Rd │ ├── ChangeLog.Rd │ ├── ChangeLogsListResponse.Rd │ ├── CitiesListResponse.Rd │ ├── City.Rd │ ├── ClickTag.Rd │ ├── ClickThroughUrl.Rd │ ├── ClickThroughUrlSuffixProperties.Rd │ ├── CompanionClickThroughOverride.Rd │ ├── CompanionSetting.Rd │ ├── CompatibleFields.Rd │ ├── ConnectionType.Rd │ ├── ConnectionTypesListResponse.Rd │ ├── ContentCategoriesListResponse.Rd │ ├── ContentCategory.Rd │ ├── Conversion.Rd │ ├── ConversionError.Rd │ ├── ConversionStatus.Rd │ ├── ConversionsBatchInsertRequest.Rd │ ├── ConversionsBatchInsertResponse.Rd │ ├── CountriesListResponse.Rd │ ├── Country.Rd │ ├── Creative.Rd │ ├── CreativeAsset.Rd │ ├── CreativeAssetId.Rd │ ├── CreativeAssetMetadata.Rd │ ├── CreativeAssetSelection.Rd │ ├── CreativeAssignment.Rd │ ├── CreativeCustomEvent.Rd │ ├── CreativeField.Rd │ ├── CreativeFieldAssignment.Rd │ ├── CreativeFieldValue.Rd │ ├── CreativeFieldValuesListResponse.Rd │ ├── CreativeFieldsListResponse.Rd │ ├── CreativeGroup.Rd │ ├── CreativeGroupAssignment.Rd │ ├── CreativeGroupsListResponse.Rd │ ├── CreativeOptimizationConfiguration.Rd │ ├── CreativeRotation.Rd │ ├── CreativeSettings.Rd │ ├── CreativesListResponse.Rd │ ├── CrossDimensionReachReportCompatibleFields.Rd │ ├── CustomFloodlightVariable.Rd │ ├── CustomRichMediaEvents.Rd │ ├── DateRange.Rd │ ├── DayPartTargeting.Rd │ ├── DefaultClickThroughEventTagProperties.Rd │ ├── DeliverySchedule.Rd │ ├── DfpSettings.Rd │ ├── Dimension.Rd │ ├── DimensionFilter.Rd │ ├── DimensionValue.Rd │ ├── DimensionValueList.Rd │ ├── DimensionValueRequest.Rd │ ├── DirectorySite.Rd │ ├── DirectorySiteContact.Rd │ ├── DirectorySiteContactAssignment.Rd │ ├── DirectorySiteContactsListResponse.Rd │ ├── DirectorySiteSettings.Rd │ ├── DirectorySitesListResponse.Rd │ ├── DynamicTargetingKey.Rd │ ├── DynamicTargetingKeysListResponse.Rd │ ├── EncryptionInfo.Rd │ ├── EventTag.Rd │ ├── EventTagOverride.Rd │ ├── EventTagsListResponse.Rd │ ├── File.Rd │ ├── File.urls.Rd │ ├── FileList.Rd │ ├── Flight.Rd │ ├── FloodlightActivitiesGenerateTagResponse.Rd │ ├── FloodlightActivitiesListResponse.Rd │ ├── FloodlightActivity.Rd │ ├── FloodlightActivityDynamicTag.Rd │ ├── FloodlightActivityGroup.Rd │ ├── FloodlightActivityGroupsListResponse.Rd │ ├── FloodlightActivityPublisherDynamicTag.Rd │ ├── FloodlightConfiguration.Rd │ ├── FloodlightConfigurationsListResponse.Rd │ ├── FloodlightReportCompatibleFields.Rd │ ├── FrequencyCap.Rd │ ├── FsCommand.Rd │ ├── GeoTargeting.Rd │ ├── InventoryItem.Rd │ ├── InventoryItemsListResponse.Rd │ ├── KeyValueTargetingExpression.Rd │ ├── LandingPage.Rd │ ├── LandingPagesListResponse.Rd │ ├── Language.Rd │ ├── LanguageTargeting.Rd │ ├── LanguagesListResponse.Rd │ ├── LastModifiedInfo.Rd │ ├── ListPopulationClause.Rd │ ├── ListPopulationRule.Rd │ ├── ListPopulationTerm.Rd │ ├── ListTargetingExpression.Rd │ ├── LookbackConfiguration.Rd │ ├── Metric.Rd │ ├── Metro.Rd │ ├── MetrosListResponse.Rd │ ├── MobileCarrier.Rd │ ├── MobileCarriersListResponse.Rd │ ├── ObjectFilter.Rd │ ├── OffsetPosition.Rd │ ├── OmnitureSettings.Rd │ ├── OperatingSystem.Rd │ ├── OperatingSystemVersion.Rd │ ├── OperatingSystemVersionsListResponse.Rd │ ├── OperatingSystemsListResponse.Rd │ ├── OptimizationActivity.Rd │ ├── Order.Rd │ ├── OrderContact.Rd │ ├── OrderDocument.Rd │ ├── OrderDocumentsListResponse.Rd │ ├── OrdersListResponse.Rd │ ├── PathToConversionReportCompatibleFields.Rd │ ├── Placement.Rd │ ├── PlacementAssignment.Rd │ ├── PlacementGroup.Rd │ ├── PlacementGroupsListResponse.Rd │ ├── PlacementStrategiesListResponse.Rd │ ├── PlacementStrategy.Rd │ ├── PlacementTag.Rd │ ├── PlacementsGenerateTagsResponse.Rd │ ├── PlacementsListResponse.Rd │ ├── PlatformType.Rd │ ├── PlatformTypesListResponse.Rd │ ├── PopupWindowProperties.Rd │ ├── PostalCode.Rd │ ├── PostalCodesListResponse.Rd │ ├── Pricing.Rd │ ├── PricingSchedule.Rd │ ├── PricingSchedulePricingPeriod.Rd │ ├── Project.Rd │ ├── ProjectsListResponse.Rd │ ├── ReachReportCompatibleFields.Rd │ ├── Recipient.Rd │ ├── Region.Rd │ ├── RegionsListResponse.Rd │ ├── RemarketingList.Rd │ ├── RemarketingListShare.Rd │ ├── RemarketingListsListResponse.Rd │ ├── Report.Rd │ ├── Report.criteria.Rd │ ├── Report.crossDimensionReachCriteria.Rd │ ├── Report.delivery.Rd │ ├── Report.floodlightCriteria.Rd │ ├── Report.floodlightCriteria.reportProperties.Rd │ ├── Report.pathToConversionCriteria.Rd │ ├── Report.pathToConversionCriteria.reportProperties.Rd │ ├── Report.reachCriteria.Rd │ ├── Report.schedule.Rd │ ├── ReportCompatibleFields.Rd │ ├── ReportList.Rd │ ├── ReportsConfiguration.Rd │ ├── RichMediaExitOverride.Rd │ ├── Rule.Rd │ ├── Site.Rd │ ├── SiteContact.Rd │ ├── SiteSettings.Rd │ ├── SitesListResponse.Rd │ ├── Size.Rd │ ├── SizesListResponse.Rd │ ├── SkippableSetting.Rd │ ├── SortedDimension.Rd │ ├── Subaccount.Rd │ ├── SubaccountsListResponse.Rd │ ├── TagData.Rd │ ├── TagSetting.Rd │ ├── TagSettings.Rd │ ├── TargetWindow.Rd │ ├── TargetableRemarketingList.Rd │ ├── TargetableRemarketingListsListResponse.Rd │ ├── TargetingTemplate.Rd │ ├── TargetingTemplatesListResponse.Rd │ ├── TechnologyTargeting.Rd │ ├── ThirdPartyAuthenticationToken.Rd │ ├── ThirdPartyTrackingUrl.Rd │ ├── TranscodeSetting.Rd │ ├── UserDefinedVariableConfiguration.Rd │ ├── UserProfile.Rd │ ├── UserProfileList.Rd │ ├── UserRole.Rd │ ├── UserRolePermission.Rd │ ├── UserRolePermissionGroup.Rd │ ├── UserRolePermissionGroupsListResponse.Rd │ ├── UserRolePermissionsListResponse.Rd │ ├── UserRolesListResponse.Rd │ ├── VideoFormat.Rd │ ├── VideoFormatsListResponse.Rd │ ├── VideoOffset.Rd │ ├── VideoSettings.Rd │ ├── accountActiveAdSummaries.get.Rd │ ├── accountPermissionGroups.get.Rd │ ├── accountPermissionGroups.list.Rd │ ├── accountPermissions.get.Rd │ ├── accountPermissions.list.Rd │ ├── accountUserProfiles.get.Rd │ ├── accountUserProfiles.insert.Rd │ ├── accountUserProfiles.list.Rd │ ├── accountUserProfiles.patch.Rd │ ├── accountUserProfiles.update.Rd │ ├── accounts.get.Rd │ ├── accounts.list.Rd │ ├── accounts.patch.Rd │ ├── accounts.update.Rd │ ├── ads.get.Rd │ ├── ads.insert.Rd │ ├── ads.list.Rd │ ├── ads.patch.Rd │ ├── ads.update.Rd │ ├── advertiserGroups.delete.Rd │ ├── advertiserGroups.get.Rd │ ├── advertiserGroups.insert.Rd │ ├── advertiserGroups.list.Rd │ ├── advertiserGroups.patch.Rd │ ├── advertiserGroups.update.Rd │ ├── advertisers.get.Rd │ ├── advertisers.insert.Rd │ ├── advertisers.list.Rd │ ├── advertisers.patch.Rd │ ├── advertisers.update.Rd │ ├── browsers.list.Rd │ ├── campaignCreativeAssociations.insert.Rd │ ├── campaignCreativeAssociations.list.Rd │ ├── campaigns.get.Rd │ ├── campaigns.insert.Rd │ ├── campaigns.list.Rd │ ├── campaigns.patch.Rd │ ├── campaigns.update.Rd │ ├── changeLogs.get.Rd │ ├── changeLogs.list.Rd │ ├── cities.list.Rd │ ├── connectionTypes.get.Rd │ ├── connectionTypes.list.Rd │ ├── contentCategories.delete.Rd │ ├── contentCategories.get.Rd │ ├── contentCategories.insert.Rd │ ├── contentCategories.list.Rd │ ├── contentCategories.patch.Rd │ ├── contentCategories.update.Rd │ ├── conversions.batchinsert.Rd │ ├── countries.get.Rd │ ├── countries.list.Rd │ ├── creativeAssets.insert.Rd │ ├── creativeFieldValues.delete.Rd │ ├── creativeFieldValues.get.Rd │ ├── creativeFieldValues.insert.Rd │ ├── creativeFieldValues.list.Rd │ ├── creativeFieldValues.patch.Rd │ ├── creativeFieldValues.update.Rd │ ├── creativeFields.delete.Rd │ ├── creativeFields.get.Rd │ ├── creativeFields.insert.Rd │ ├── creativeFields.list.Rd │ ├── creativeFields.patch.Rd │ ├── creativeFields.update.Rd │ ├── creativeGroups.get.Rd │ ├── creativeGroups.insert.Rd │ ├── creativeGroups.list.Rd │ ├── creativeGroups.patch.Rd │ ├── creativeGroups.update.Rd │ ├── creatives.get.Rd │ ├── creatives.insert.Rd │ ├── creatives.list.Rd │ ├── creatives.patch.Rd │ ├── creatives.update.Rd │ ├── dfareporting_googleAuthR.Rd │ ├── dimensionValues.query.Rd │ ├── directorySiteContacts.get.Rd │ ├── directorySiteContacts.list.Rd │ ├── directorySites.get.Rd │ ├── directorySites.insert.Rd │ ├── directorySites.list.Rd │ ├── dynamicTargetingKeys.delete.Rd │ ├── dynamicTargetingKeys.insert.Rd │ ├── dynamicTargetingKeys.list.Rd │ ├── eventTags.delete.Rd │ ├── eventTags.get.Rd │ ├── eventTags.insert.Rd │ ├── eventTags.list.Rd │ ├── eventTags.patch.Rd │ ├── eventTags.update.Rd │ ├── files.get.Rd │ ├── files.list.Rd │ ├── floodlightActivities.delete.Rd │ ├── floodlightActivities.generatetag.Rd │ ├── floodlightActivities.get.Rd │ ├── floodlightActivities.insert.Rd │ ├── floodlightActivities.list.Rd │ ├── floodlightActivities.patch.Rd │ ├── floodlightActivities.update.Rd │ ├── floodlightActivityGroups.get.Rd │ ├── floodlightActivityGroups.insert.Rd │ ├── floodlightActivityGroups.list.Rd │ ├── floodlightActivityGroups.patch.Rd │ ├── floodlightActivityGroups.update.Rd │ ├── floodlightConfigurations.get.Rd │ ├── floodlightConfigurations.list.Rd │ ├── floodlightConfigurations.patch.Rd │ ├── floodlightConfigurations.update.Rd │ ├── inventoryItems.get.Rd │ ├── inventoryItems.list.Rd │ ├── is.NullOb.Rd │ ├── landingPages.delete.Rd │ ├── landingPages.get.Rd │ ├── landingPages.insert.Rd │ ├── landingPages.list.Rd │ ├── landingPages.patch.Rd │ ├── landingPages.update.Rd │ ├── languages.list.Rd │ ├── metros.list.Rd │ ├── mobileCarriers.get.Rd │ ├── mobileCarriers.list.Rd │ ├── operatingSystemVersions.get.Rd │ ├── operatingSystemVersions.list.Rd │ ├── operatingSystems.get.Rd │ ├── operatingSystems.list.Rd │ ├── orderDocuments.get.Rd │ ├── orderDocuments.list.Rd │ ├── orders.get.Rd │ ├── orders.list.Rd │ ├── placementGroups.get.Rd │ ├── placementGroups.insert.Rd │ ├── placementGroups.list.Rd │ ├── placementGroups.patch.Rd │ ├── placementGroups.update.Rd │ ├── placementStrategies.delete.Rd │ ├── placementStrategies.get.Rd │ ├── placementStrategies.insert.Rd │ ├── placementStrategies.list.Rd │ ├── placementStrategies.patch.Rd │ ├── placementStrategies.update.Rd │ ├── placements.generatetags.Rd │ ├── placements.get.Rd │ ├── placements.insert.Rd │ ├── placements.list.Rd │ ├── placements.patch.Rd │ ├── placements.update.Rd │ ├── platformTypes.get.Rd │ ├── platformTypes.list.Rd │ ├── postalCodes.get.Rd │ ├── postalCodes.list.Rd │ ├── projects.get.Rd │ ├── projects.list.Rd │ ├── regions.list.Rd │ ├── remarketingListShares.get.Rd │ ├── remarketingListShares.patch.Rd │ ├── remarketingListShares.update.Rd │ ├── remarketingLists.get.Rd │ ├── remarketingLists.insert.Rd │ ├── remarketingLists.list.Rd │ ├── remarketingLists.patch.Rd │ ├── remarketingLists.update.Rd │ ├── reports.delete.Rd │ ├── reports.get.Rd │ ├── reports.insert.Rd │ ├── reports.list.Rd │ ├── reports.patch.Rd │ ├── reports.run.Rd │ ├── reports.update.Rd │ ├── rmNullObs.Rd │ ├── sites.get.Rd │ ├── sites.insert.Rd │ ├── sites.list.Rd │ ├── sites.patch.Rd │ ├── sites.update.Rd │ ├── sizes.get.Rd │ ├── sizes.insert.Rd │ ├── sizes.list.Rd │ ├── subaccounts.get.Rd │ ├── subaccounts.insert.Rd │ ├── subaccounts.list.Rd │ ├── subaccounts.patch.Rd │ ├── subaccounts.update.Rd │ ├── targetableRemarketingLists.get.Rd │ ├── targetableRemarketingLists.list.Rd │ ├── targetingTemplates.get.Rd │ ├── targetingTemplates.insert.Rd │ ├── targetingTemplates.list.Rd │ ├── targetingTemplates.patch.Rd │ ├── targetingTemplates.update.Rd │ ├── userProfiles.get.Rd │ ├── userProfiles.list.Rd │ ├── userRolePermissionGroups.get.Rd │ ├── userRolePermissionGroups.list.Rd │ ├── userRolePermissions.get.Rd │ ├── userRolePermissions.list.Rd │ ├── userRoles.delete.Rd │ ├── userRoles.get.Rd │ ├── userRoles.insert.Rd │ ├── userRoles.list.Rd │ ├── userRoles.patch.Rd │ ├── userRoles.update.Rd │ ├── videoFormats.get.Rd │ └── videoFormats.list.Rd ├── googlediscoveryv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── discovery_functions.R │ └── discovery_objects.R ├── README.md ├── googlediscoveryv1.auto.Rproj └── man │ ├── DirectoryList.Rd │ ├── DirectoryList.items.Rd │ ├── DirectoryList.items.icons.Rd │ ├── JsonSchema.Rd │ ├── JsonSchema.annotations.Rd │ ├── JsonSchema.properties.Rd │ ├── JsonSchema.variant.Rd │ ├── JsonSchema.variant.map.Rd │ ├── RestDescription.Rd │ ├── RestDescription.auth.Rd │ ├── RestDescription.auth.oauth2.Rd │ ├── RestDescription.auth.oauth2.scopes.Rd │ ├── RestDescription.icons.Rd │ ├── RestDescription.methods.Rd │ ├── RestDescription.parameters.Rd │ ├── RestDescription.resources.Rd │ ├── RestDescription.schemas.Rd │ ├── RestMethod.Rd │ ├── RestMethod.mediaUpload.Rd │ ├── RestMethod.mediaUpload.protocols.Rd │ ├── RestMethod.mediaUpload.protocols.resumable.Rd │ ├── RestMethod.mediaUpload.protocols.simple.Rd │ ├── RestMethod.parameters.Rd │ ├── RestMethod.request.Rd │ ├── RestMethod.response.Rd │ ├── RestResource.Rd │ ├── RestResource.methods.Rd │ ├── RestResource.resources.Rd │ ├── apis.getRest.Rd │ ├── apis.list.Rd │ ├── discovery_googleAuthR.Rd │ ├── is.NullOb.Rd │ └── rmNullObs.Rd ├── googlednsv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── dns_functions.R │ └── dns_objects.R ├── README.md ├── googlednsv1.auto.Rproj └── man │ ├── Change.Rd │ ├── ChangesListResponse.Rd │ ├── ManagedZone.Rd │ ├── ManagedZonesListResponse.Rd │ ├── Project.Rd │ ├── Quota.Rd │ ├── ResourceRecordSet.Rd │ ├── ResourceRecordSetsListResponse.Rd │ ├── changes.create.Rd │ ├── changes.get.Rd │ ├── changes.list.Rd │ ├── dns_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── managedZones.create.Rd │ ├── managedZones.delete.Rd │ ├── managedZones.get.Rd │ ├── managedZones.list.Rd │ ├── projects.get.Rd │ ├── resourceRecordSets.list.Rd │ └── rmNullObs.Rd ├── googlednsv2beta1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── dns_functions.R │ └── dns_objects.R ├── README.md ├── googlednsv2beta1.auto.Rproj └── man │ ├── Change.Rd │ ├── ChangesListResponse.Rd │ ├── DnsKey.Rd │ ├── DnsKeyDigest.Rd │ ├── DnsKeySpec.Rd │ ├── DnsKeysListResponse.Rd │ ├── ManagedZone.Rd │ ├── ManagedZoneDnsSecConfig.Rd │ ├── ManagedZoneOperationsListResponse.Rd │ ├── ManagedZonesDeleteResponse.Rd │ ├── ManagedZonesListResponse.Rd │ ├── Operation.Rd │ ├── OperationDnsKeyContext.Rd │ ├── OperationManagedZoneContext.Rd │ ├── Project.Rd │ ├── Quota.Rd │ ├── ResourceRecordSet.Rd │ ├── ResourceRecordSetsListResponse.Rd │ ├── ResponseHeader.Rd │ ├── changes.create.Rd │ ├── changes.get.Rd │ ├── changes.list.Rd │ ├── dns_googleAuthR.Rd │ ├── eys.get.Rd │ ├── eys.list.Rd │ ├── is.NullOb.Rd │ ├── managedZoneOperations.get.Rd │ ├── managedZoneOperations.list.Rd │ ├── managedZones.create.Rd │ ├── managedZones.delete.Rd │ ├── managedZones.get.Rd │ ├── managedZones.list.Rd │ ├── managedZones.patch.Rd │ ├── managedZones.update.Rd │ ├── projects.get.Rd │ ├── resourceRecordSets.list.Rd │ └── rmNullObs.Rd ├── googledoubleclickbidmanagerv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── doubleclickbidmanager_functions.R │ └── doubleclickbidmanager_objects.R ├── README.md ├── googledoubleclickbidmanagerv1.auto.Rproj └── man │ ├── DownloadLineItemsRequest.Rd │ ├── DownloadLineItemsResponse.Rd │ ├── DownloadRequest.Rd │ ├── DownloadResponse.Rd │ ├── FilterPair.Rd │ ├── ListQueriesResponse.Rd │ ├── ListReportsResponse.Rd │ ├── Parameters.Rd │ ├── Query.Rd │ ├── QueryMetadata.Rd │ ├── QuerySchedule.Rd │ ├── Report.Rd │ ├── ReportFailure.Rd │ ├── ReportKey.Rd │ ├── ReportMetadata.Rd │ ├── ReportStatus.Rd │ ├── RowStatus.Rd │ ├── RunQueryRequest.Rd │ ├── UploadLineItemsRequest.Rd │ ├── UploadLineItemsResponse.Rd │ ├── UploadStatus.Rd │ ├── doubleclickbidmanager_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── lineitems.downloadlineitems.Rd │ ├── lineitems.uploadlineitems.Rd │ ├── queries.createquery.Rd │ ├── queries.deletequery.Rd │ ├── queries.getquery.Rd │ ├── queries.listqueries.Rd │ ├── queries.runquery.Rd │ ├── reports.listreports.Rd │ ├── rmNullObs.Rd │ └── sdf.download.Rd ├── googledoubleclicksearchv2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── doubleclicksearch_functions.R │ └── doubleclicksearch_objects.R ├── README.md ├── googledoubleclicksearchv2.auto.Rproj └── man │ ├── Availability.Rd │ ├── Conversion.Rd │ ├── ConversionList.Rd │ ├── CustomDimension.Rd │ ├── CustomMetric.Rd │ ├── Report.Rd │ ├── Report.files.Rd │ ├── ReportApiColumnSpec.Rd │ ├── ReportRequest.Rd │ ├── ReportRequest.filters.Rd │ ├── ReportRequest.orderBy.Rd │ ├── ReportRequest.reportScope.Rd │ ├── ReportRequest.timeRange.Rd │ ├── ReportRow.Rd │ ├── SavedColumn.Rd │ ├── SavedColumnList.Rd │ ├── UpdateAvailabilityRequest.Rd │ ├── UpdateAvailabilityResponse.Rd │ ├── conversion.get.Rd │ ├── conversion.insert.Rd │ ├── conversion.patch.Rd │ ├── conversion.update.Rd │ ├── conversion.updateAvailability.Rd │ ├── doubleclicksearch_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── reports.generate.Rd │ ├── reports.get.Rd │ ├── reports.getFile.Rd │ ├── reports.request.Rd │ ├── rmNullObs.Rd │ └── savedColumns.list.Rd ├── googledrivev2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── drive_functions.R │ └── drive_objects.R ├── README.md ├── googledrivev2.auto.Rproj └── man │ ├── About.Rd │ ├── About.additionalRoleInfo.Rd │ ├── About.additionalRoleInfo.roleSets.Rd │ ├── About.exportFormats.Rd │ ├── About.features.Rd │ ├── About.importFormats.Rd │ ├── About.maxUploadSizes.Rd │ ├── About.quotaBytesByService.Rd │ ├── App.Rd │ ├── App.icons.Rd │ ├── AppList.Rd │ ├── Change.Rd │ ├── ChangeList.Rd │ ├── Channel.Rd │ ├── Channel.params.Rd │ ├── ChildList.Rd │ ├── ChildReference.Rd │ ├── Comment.Rd │ ├── Comment.context.Rd │ ├── CommentList.Rd │ ├── CommentReply.Rd │ ├── CommentReplyList.Rd │ ├── File.Rd │ ├── File.capabilities.Rd │ ├── File.exportLinks.Rd │ ├── File.imageMediaMetadata.Rd │ ├── File.imageMediaMetadata.location.Rd │ ├── File.indexableText.Rd │ ├── File.labels.Rd │ ├── File.openWithLinks.Rd │ ├── File.thumbnail.Rd │ ├── File.videoMediaMetadata.Rd │ ├── FileList.Rd │ ├── GeneratedIds.Rd │ ├── ParentList.Rd │ ├── ParentReference.Rd │ ├── Permission.Rd │ ├── Permission.teamDrivePermissionDetails.Rd │ ├── PermissionId.Rd │ ├── PermissionList.Rd │ ├── Property.Rd │ ├── PropertyList.Rd │ ├── Revision.Rd │ ├── Revision.exportLinks.Rd │ ├── RevisionList.Rd │ ├── StartPageToken.Rd │ ├── TeamDrive.Rd │ ├── TeamDrive.capabilities.Rd │ ├── TeamDriveList.Rd │ ├── User.Rd │ ├── User.picture.Rd │ ├── about.get.Rd │ ├── apps.get.Rd │ ├── apps.list.Rd │ ├── changes.get.Rd │ ├── changes.getStartPageToken.Rd │ ├── changes.list.Rd │ ├── changes.watch.Rd │ ├── channels.stop.Rd │ ├── children.delete.Rd │ ├── children.get.Rd │ ├── children.insert.Rd │ ├── children.list.Rd │ ├── comments.delete.Rd │ ├── comments.get.Rd │ ├── comments.insert.Rd │ ├── comments.list.Rd │ ├── comments.patch.Rd │ ├── comments.update.Rd │ ├── drive_googleAuthR.Rd │ ├── files.copy.Rd │ ├── files.delete.Rd │ ├── files.emptyTrash.Rd │ ├── files.export.Rd │ ├── files.generateIds.Rd │ ├── files.get.Rd │ ├── files.insert.Rd │ ├── files.list.Rd │ ├── files.patch.Rd │ ├── files.touch.Rd │ ├── files.trash.Rd │ ├── files.untrash.Rd │ ├── files.update.Rd │ ├── files.watch.Rd │ ├── is.NullOb.Rd │ ├── parents.delete.Rd │ ├── parents.get.Rd │ ├── parents.insert.Rd │ ├── parents.list.Rd │ ├── permissions.delete.Rd │ ├── permissions.get.Rd │ ├── permissions.getIdForEmail.Rd │ ├── permissions.insert.Rd │ ├── permissions.list.Rd │ ├── permissions.patch.Rd │ ├── permissions.update.Rd │ ├── properties.delete.Rd │ ├── properties.get.Rd │ ├── properties.insert.Rd │ ├── properties.list.Rd │ ├── properties.patch.Rd │ ├── properties.update.Rd │ ├── realtime.get.Rd │ ├── realtime.update.Rd │ ├── replies.delete.Rd │ ├── replies.get.Rd │ ├── replies.insert.Rd │ ├── replies.list.Rd │ ├── replies.patch.Rd │ ├── replies.update.Rd │ ├── revisions.delete.Rd │ ├── revisions.get.Rd │ ├── revisions.list.Rd │ ├── revisions.patch.Rd │ ├── revisions.update.Rd │ ├── rmNullObs.Rd │ ├── team.delete.Rd │ ├── team.get.Rd │ ├── team.insert.Rd │ ├── team.list.Rd │ └── team.update.Rd ├── googledrivev3.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── drive_functions.R │ └── drive_objects.R ├── README.md ├── googledrivev3.auto.Rproj └── man │ ├── About.Rd │ ├── About.exportFormats.Rd │ ├── About.importFormats.Rd │ ├── About.maxImportSizes.Rd │ ├── About.storageQuota.Rd │ ├── Change.Rd │ ├── ChangeList.Rd │ ├── Channel.Rd │ ├── Channel.params.Rd │ ├── Comment.Rd │ ├── Comment.quotedFileContent.Rd │ ├── CommentList.Rd │ ├── File.Rd │ ├── File.appProperties.Rd │ ├── File.capabilities.Rd │ ├── File.contentHints.Rd │ ├── File.contentHints.thumbnail.Rd │ ├── File.imageMediaMetadata.Rd │ ├── File.imageMediaMetadata.location.Rd │ ├── File.properties.Rd │ ├── File.videoMediaMetadata.Rd │ ├── FileList.Rd │ ├── GeneratedIds.Rd │ ├── Permission.Rd │ ├── Permission.teamDrivePermissionDetails.Rd │ ├── PermissionList.Rd │ ├── Reply.Rd │ ├── ReplyList.Rd │ ├── Revision.Rd │ ├── RevisionList.Rd │ ├── StartPageToken.Rd │ ├── TeamDrive.Rd │ ├── TeamDrive.capabilities.Rd │ ├── TeamDriveList.Rd │ ├── User.Rd │ ├── about.get.Rd │ ├── changes.getStartPageToken.Rd │ ├── changes.list.Rd │ ├── changes.watch.Rd │ ├── channels.stop.Rd │ ├── comments.create.Rd │ ├── comments.delete.Rd │ ├── comments.get.Rd │ ├── comments.list.Rd │ ├── comments.update.Rd │ ├── drive_googleAuthR.Rd │ ├── files.copy.Rd │ ├── files.create.Rd │ ├── files.delete.Rd │ ├── files.emptyTrash.Rd │ ├── files.export.Rd │ ├── files.generateIds.Rd │ ├── files.get.Rd │ ├── files.list.Rd │ ├── files.update.Rd │ ├── files.watch.Rd │ ├── is.NullOb.Rd │ ├── permissions.create.Rd │ ├── permissions.delete.Rd │ ├── permissions.get.Rd │ ├── permissions.list.Rd │ ├── permissions.update.Rd │ ├── replies.create.Rd │ ├── replies.delete.Rd │ ├── replies.get.Rd │ ├── replies.list.Rd │ ├── replies.update.Rd │ ├── revisions.delete.Rd │ ├── revisions.get.Rd │ ├── revisions.list.Rd │ ├── revisions.update.Rd │ ├── rmNullObs.Rd │ ├── team.create.Rd │ ├── team.delete.Rd │ ├── team.get.Rd │ ├── team.list.Rd │ └── team.update.Rd ├── googlefirebasedynamiclinksv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── firebasedynamiclinks_functions.R │ └── firebasedynamiclinks_objects.R ├── README.md ├── googlefirebasedynamiclinksv1.auto.Rproj └── man │ ├── AnalyticsInfo.Rd │ ├── AndroidInfo.Rd │ ├── CreateShortDynamicLinkRequest.Rd │ ├── CreateShortDynamicLinkResponse.Rd │ ├── DynamicLinkInfo.Rd │ ├── DynamicLinkWarning.Rd │ ├── GooglePlayAnalytics.Rd │ ├── ITunesConnectAnalytics.Rd │ ├── IosInfo.Rd │ ├── SocialMetaTagInfo.Rd │ ├── Suffix.Rd │ ├── firebasedynamiclinks_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── rmNullObs.Rd │ └── shortLinks.create.Rd ├── googlefirebaserulesv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── firebaserules_functions.R │ └── firebaserules_objects.R ├── README.md ├── googlefirebaserulesv1.auto.Rproj └── man │ ├── Empty.Rd │ ├── File.Rd │ ├── Issue.Rd │ ├── ListReleasesResponse.Rd │ ├── ListRulesetsResponse.Rd │ ├── Release.Rd │ ├── Ruleset.Rd │ ├── Source.Rd │ ├── SourcePosition.Rd │ ├── TestRulesetRequest.Rd │ ├── TestRulesetResponse.Rd │ ├── firebaserules_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── projects.test.Rd │ └── rmNullObs.Rd ├── googlefitnessv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── fitness_functions.R │ └── fitness_objects.R ├── README.md ├── googlefitnessv1.auto.Rproj └── man │ ├── AggregateBucket.Rd │ ├── AggregateBy.Rd │ ├── AggregateRequest.Rd │ ├── AggregateResponse.Rd │ ├── Application.Rd │ ├── BucketByActivity.Rd │ ├── BucketBySession.Rd │ ├── BucketByTime.Rd │ ├── BucketByTimePeriod.Rd │ ├── DataPoint.Rd │ ├── DataSource.Rd │ ├── DataType.Rd │ ├── DataTypeField.Rd │ ├── Dataset.Rd │ ├── Device.Rd │ ├── ListDataSourcesResponse.Rd │ ├── ListSessionsResponse.Rd │ ├── MapValue.Rd │ ├── Session.Rd │ ├── Value.Rd │ ├── ValueMapValEntry.Rd │ ├── fitness_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── rmNullObs.Rd │ ├── users.dataSources.create.Rd │ ├── users.dataSources.delete.Rd │ ├── users.dataSources.get.Rd │ ├── users.dataSources.list.Rd │ ├── users.dataSources.patch.Rd │ ├── users.dataSources.update.Rd │ ├── users.dataset.aggregate.Rd │ ├── users.sessions.delete.Rd │ ├── users.sessions.list.Rd │ └── users.sessions.update.Rd ├── googlefusiontablesv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── fusiontables_functions.R │ └── fusiontables_objects.R ├── README.md ├── googlefusiontablesv1.auto.Rproj └── man │ ├── Bucket.Rd │ ├── Column.Rd │ ├── Column.baseColumn.Rd │ ├── ColumnList.Rd │ ├── Geometry.Rd │ ├── Import.Rd │ ├── Line.Rd │ ├── LineStyle.Rd │ ├── Point.Rd │ ├── PointStyle.Rd │ ├── Polygon.Rd │ ├── PolygonStyle.Rd │ ├── Sqlresponse.Rd │ ├── StyleFunction.Rd │ ├── StyleFunction.gradient.Rd │ ├── StyleFunction.gradient.colors.Rd │ ├── StyleSetting.Rd │ ├── StyleSettingList.Rd │ ├── Table.Rd │ ├── TableList.Rd │ ├── Task.Rd │ ├── TaskList.Rd │ ├── Template.Rd │ ├── TemplateList.Rd │ ├── column.delete.Rd │ ├── column.get.Rd │ ├── column.insert.Rd │ ├── column.list.Rd │ ├── column.patch.Rd │ ├── column.update.Rd │ ├── fusiontables_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── query.sql.Rd │ ├── query.sqlGet.Rd │ ├── rmNullObs.Rd │ ├── style.delete.Rd │ ├── style.get.Rd │ ├── style.insert.Rd │ ├── style.list.Rd │ ├── style.patch.Rd │ ├── style.update.Rd │ ├── table.copy.Rd │ ├── table.delete.Rd │ ├── table.get.Rd │ ├── table.importRows.Rd │ ├── table.importTable.Rd │ ├── table.insert.Rd │ ├── table.list.Rd │ ├── table.patch.Rd │ ├── table.update.Rd │ ├── task.delete.Rd │ ├── task.get.Rd │ ├── task.list.Rd │ ├── template.delete.Rd │ ├── template.get.Rd │ ├── template.insert.Rd │ ├── template.list.Rd │ ├── template.patch.Rd │ └── template.update.Rd ├── googlefusiontablesv2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── fusiontables_functions.R │ └── fusiontables_objects.R ├── README.md ├── googlefusiontablesv2.auto.Rproj └── man │ ├── Bucket.Rd │ ├── Column.Rd │ ├── Column.baseColumn.Rd │ ├── ColumnList.Rd │ ├── Geometry.Rd │ ├── Import.Rd │ ├── Line.Rd │ ├── LineStyle.Rd │ ├── Point.Rd │ ├── PointStyle.Rd │ ├── Polygon.Rd │ ├── PolygonStyle.Rd │ ├── Sqlresponse.Rd │ ├── StyleFunction.Rd │ ├── StyleFunction.gradient.Rd │ ├── StyleFunction.gradient.colors.Rd │ ├── StyleSetting.Rd │ ├── StyleSettingList.Rd │ ├── Table.Rd │ ├── TableList.Rd │ ├── Task.Rd │ ├── TaskList.Rd │ ├── Template.Rd │ ├── TemplateList.Rd │ ├── column.delete.Rd │ ├── column.get.Rd │ ├── column.insert.Rd │ ├── column.list.Rd │ ├── column.patch.Rd │ ├── column.update.Rd │ ├── fusiontables_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── query.sql.Rd │ ├── query.sqlGet.Rd │ ├── rmNullObs.Rd │ ├── style.delete.Rd │ ├── style.get.Rd │ ├── style.insert.Rd │ ├── style.list.Rd │ ├── style.patch.Rd │ ├── style.update.Rd │ ├── table.copy.Rd │ ├── table.delete.Rd │ ├── table.get.Rd │ ├── table.importRows.Rd │ ├── table.importTable.Rd │ ├── table.insert.Rd │ ├── table.list.Rd │ ├── table.patch.Rd │ ├── table.replaceRows.Rd │ ├── table.update.Rd │ ├── task.delete.Rd │ ├── task.get.Rd │ ├── task.list.Rd │ ├── template.delete.Rd │ ├── template.get.Rd │ ├── template.insert.Rd │ ├── template.list.Rd │ ├── template.patch.Rd │ └── template.update.Rd ├── googlegamesConfigurationv1configuration.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── gamesConfiguration_functions.R │ └── gamesConfiguration_objects.R ├── README.md ├── googlegamesConfigurationv1configuration.auto.Rproj └── man │ ├── AchievementConfiguration.Rd │ ├── AchievementConfigurationDetail.Rd │ ├── AchievementConfigurationListResponse.Rd │ ├── GamesNumberAffixConfiguration.Rd │ ├── GamesNumberFormatConfiguration.Rd │ ├── ImageConfiguration.Rd │ ├── LeaderboardConfiguration.Rd │ ├── LeaderboardConfigurationDetail.Rd │ ├── LeaderboardConfigurationListResponse.Rd │ ├── LocalizedString.Rd │ ├── LocalizedStringBundle.Rd │ ├── achievementConfigurations.delete.Rd │ ├── achievementConfigurations.get.Rd │ ├── achievementConfigurations.insert.Rd │ ├── achievementConfigurations.list.Rd │ ├── achievementConfigurations.patch.Rd │ ├── achievementConfigurations.update.Rd │ ├── gamesConfiguration_googleAuthR.Rd │ ├── imageConfigurations.upload.Rd │ ├── is.NullOb.Rd │ ├── leaderboardConfigurations.delete.Rd │ ├── leaderboardConfigurations.get.Rd │ ├── leaderboardConfigurations.insert.Rd │ ├── leaderboardConfigurations.list.Rd │ ├── leaderboardConfigurations.patch.Rd │ ├── leaderboardConfigurations.update.Rd │ └── rmNullObs.Rd ├── googlegamesManagementv1management.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── gamesManagement_functions.R │ └── gamesManagement_objects.R ├── README.md ├── googlegamesManagementv1management.auto.Rproj └── man │ ├── AchievementResetAllResponse.Rd │ ├── AchievementResetMultipleForAllRequest.Rd │ ├── AchievementResetResponse.Rd │ ├── EventsResetMultipleForAllRequest.Rd │ ├── GamesPlayedResource.Rd │ ├── GamesPlayerExperienceInfoResource.Rd │ ├── GamesPlayerLevelResource.Rd │ ├── HiddenPlayer.Rd │ ├── HiddenPlayerList.Rd │ ├── Player.Rd │ ├── Player.name.Rd │ ├── PlayerScoreResetAllResponse.Rd │ ├── PlayerScoreResetResponse.Rd │ ├── ProfileSettings.Rd │ ├── QuestsResetMultipleForAllRequest.Rd │ ├── ScoresResetMultipleForAllRequest.Rd │ ├── achievements.reset.Rd │ ├── achievements.resetAll.Rd │ ├── achievements.resetAllForAllPlayers.Rd │ ├── achievements.resetForAllPlayers.Rd │ ├── achievements.resetMultipleForAllPlayers.Rd │ ├── applications.listHidden.Rd │ ├── events.reset.Rd │ ├── events.resetAll.Rd │ ├── events.resetAllForAllPlayers.Rd │ ├── events.resetForAllPlayers.Rd │ ├── events.resetMultipleForAllPlayers.Rd │ ├── gamesManagement_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── players.hide.Rd │ ├── players.unhide.Rd │ ├── quests.reset.Rd │ ├── quests.resetAll.Rd │ ├── quests.resetAllForAllPlayers.Rd │ ├── quests.resetForAllPlayers.Rd │ ├── quests.resetMultipleForAllPlayers.Rd │ ├── rmNullObs.Rd │ ├── rooms.reset.Rd │ ├── rooms.resetForAllPlayers.Rd │ ├── scores.reset.Rd │ ├── scores.resetAll.Rd │ ├── scores.resetAllForAllPlayers.Rd │ ├── scores.resetForAllPlayers.Rd │ ├── scores.resetMultipleForAllPlayers.Rd │ ├── turnBasedMatches.reset.Rd │ └── turnBasedMatches.resetForAllPlayers.Rd ├── googlegamesv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── games_functions.R │ └── games_objects.R ├── README.md ├── googlegamesv1.auto.Rproj └── man │ ├── AchievementDefinition.Rd │ ├── AchievementDefinitionsListResponse.Rd │ ├── AchievementIncrementResponse.Rd │ ├── AchievementRevealResponse.Rd │ ├── AchievementSetStepsAtLeastResponse.Rd │ ├── AchievementUnlockResponse.Rd │ ├── AchievementUpdateMultipleRequest.Rd │ ├── AchievementUpdateMultipleResponse.Rd │ ├── AchievementUpdateRequest.Rd │ ├── AchievementUpdateResponse.Rd │ ├── AggregateStats.Rd │ ├── AnonymousPlayer.Rd │ ├── Application.Rd │ ├── ApplicationCategory.Rd │ ├── ApplicationVerifyResponse.Rd │ ├── Category.Rd │ ├── CategoryListResponse.Rd │ ├── EventBatchRecordFailure.Rd │ ├── EventChild.Rd │ ├── EventDefinition.Rd │ ├── EventDefinitionListResponse.Rd │ ├── EventPeriodRange.Rd │ ├── EventPeriodUpdate.Rd │ ├── EventRecordFailure.Rd │ ├── EventRecordRequest.Rd │ ├── EventUpdateRequest.Rd │ ├── EventUpdateResponse.Rd │ ├── GamesAchievementIncrement.Rd │ ├── GamesAchievementSetStepsAtLeast.Rd │ ├── ImageAsset.Rd │ ├── Instance.Rd │ ├── InstanceAndroidDetails.Rd │ ├── InstanceIosDetails.Rd │ ├── InstanceWebDetails.Rd │ ├── Leaderboard.Rd │ ├── LeaderboardEntry.Rd │ ├── LeaderboardListResponse.Rd │ ├── LeaderboardScoreRank.Rd │ ├── LeaderboardScores.Rd │ ├── MetagameConfig.Rd │ ├── NetworkDiagnostics.Rd │ ├── ParticipantResult.Rd │ ├── PeerChannelDiagnostics.Rd │ ├── PeerSessionDiagnostics.Rd │ ├── Played.Rd │ ├── Player.Rd │ ├── Player.name.Rd │ ├── PlayerAchievement.Rd │ ├── PlayerAchievementListResponse.Rd │ ├── PlayerEvent.Rd │ ├── PlayerEventListResponse.Rd │ ├── PlayerExperienceInfo.Rd │ ├── PlayerLeaderboardScore.Rd │ ├── PlayerLeaderboardScoreListResponse.Rd │ ├── PlayerLevel.Rd │ ├── PlayerListResponse.Rd │ ├── PlayerScore.Rd │ ├── PlayerScoreListResponse.Rd │ ├── PlayerScoreResponse.Rd │ ├── PlayerScoreSubmissionList.Rd │ ├── ProfileSettings.Rd │ ├── PushToken.Rd │ ├── PushTokenId.Rd │ ├── PushTokenId.ios.Rd │ ├── Quest.Rd │ ├── QuestContribution.Rd │ ├── QuestCriterion.Rd │ ├── QuestListResponse.Rd │ ├── QuestMilestone.Rd │ ├── RevisionCheckResponse.Rd │ ├── Room.Rd │ ├── RoomAutoMatchStatus.Rd │ ├── RoomAutoMatchingCriteria.Rd │ ├── RoomClientAddress.Rd │ ├── RoomCreateRequest.Rd │ ├── RoomJoinRequest.Rd │ ├── RoomLeaveDiagnostics.Rd │ ├── RoomLeaveRequest.Rd │ ├── RoomList.Rd │ ├── RoomModification.Rd │ ├── RoomP2PStatus.Rd │ ├── RoomP2PStatuses.Rd │ ├── RoomParticipant.Rd │ ├── RoomStatus.Rd │ ├── ScoreSubmission.Rd │ ├── Snapshot.Rd │ ├── SnapshotImage.Rd │ ├── SnapshotListResponse.Rd │ ├── TurnBasedAutoMatchingCriteria.Rd │ ├── TurnBasedMatch.Rd │ ├── TurnBasedMatchCreateRequest.Rd │ ├── TurnBasedMatchData.Rd │ ├── TurnBasedMatchDataRequest.Rd │ ├── TurnBasedMatchList.Rd │ ├── TurnBasedMatchModification.Rd │ ├── TurnBasedMatchParticipant.Rd │ ├── TurnBasedMatchRematch.Rd │ ├── TurnBasedMatchResults.Rd │ ├── TurnBasedMatchSync.Rd │ ├── TurnBasedMatchTurn.Rd │ ├── achievementDefinitions.list.Rd │ ├── achievements.increment.Rd │ ├── achievements.list.Rd │ ├── achievements.reveal.Rd │ ├── achievements.setStepsAtLeast.Rd │ ├── achievements.unlock.Rd │ ├── achievements.updateMultiple.Rd │ ├── applications.get.Rd │ ├── applications.played.Rd │ ├── applications.verify.Rd │ ├── events.listByPlayer.Rd │ ├── events.listDefinitions.Rd │ ├── events.record.Rd │ ├── games_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── leaderboards.get.Rd │ ├── leaderboards.list.Rd │ ├── metagame.getMetagameConfig.Rd │ ├── metagame.listCategoriesByPlayer.Rd │ ├── players.get.Rd │ ├── players.list.Rd │ ├── pushtokens.remove.Rd │ ├── pushtokens.update.Rd │ ├── questMilestones.claim.Rd │ ├── quests.accept.Rd │ ├── quests.list.Rd │ ├── revisions.check.Rd │ ├── rmNullObs.Rd │ ├── rooms.create.Rd │ ├── rooms.decline.Rd │ ├── rooms.dismiss.Rd │ ├── rooms.get.Rd │ ├── rooms.join.Rd │ ├── rooms.leave.Rd │ ├── rooms.list.Rd │ ├── rooms.reportStatus.Rd │ ├── scores.get.Rd │ ├── scores.list.Rd │ ├── scores.listWindow.Rd │ ├── scores.submit.Rd │ ├── scores.submitMultiple.Rd │ ├── snapshots.get.Rd │ ├── snapshots.list.Rd │ ├── turnBasedMatches.cancel.Rd │ ├── turnBasedMatches.create.Rd │ ├── turnBasedMatches.decline.Rd │ ├── turnBasedMatches.dismiss.Rd │ ├── turnBasedMatches.finish.Rd │ ├── turnBasedMatches.get.Rd │ ├── turnBasedMatches.join.Rd │ ├── turnBasedMatches.leave.Rd │ ├── turnBasedMatches.leaveTurn.Rd │ ├── turnBasedMatches.list.Rd │ ├── turnBasedMatches.rematch.Rd │ ├── turnBasedMatches.sync.Rd │ └── turnBasedMatches.takeTurn.Rd ├── googlegenomicsv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── genomics_functions.R │ └── genomics_objects.R ├── README.md ├── googlegenomicsv1.auto.Rproj └── man │ ├── Annotation.Rd │ ├── Annotation.info.Rd │ ├── AnnotationSet.Rd │ ├── AnnotationSet.info.Rd │ ├── BatchCreateAnnotationsRequest.Rd │ ├── BatchCreateAnnotationsResponse.Rd │ ├── Binding.Rd │ ├── CallSet.Rd │ ├── CallSet.info.Rd │ ├── CancelOperationRequest.Rd │ ├── CigarUnit.Rd │ ├── ClinicalCondition.Rd │ ├── CodingSequence.Rd │ ├── ComputeEngine.Rd │ ├── CoverageBucket.Rd │ ├── Dataset.Rd │ ├── Empty.Rd │ ├── Entry.Rd │ ├── Exon.Rd │ ├── Experiment.Rd │ ├── ExportReadGroupSetRequest.Rd │ ├── ExportVariantSetRequest.Rd │ ├── ExternalId.Rd │ ├── GetIamPolicyRequest.Rd │ ├── ImportReadGroupSetsRequest.Rd │ ├── ImportReadGroupSetsResponse.Rd │ ├── ImportVariantsRequest.Rd │ ├── ImportVariantsRequest.infoMergeConfig.Rd │ ├── ImportVariantsResponse.Rd │ ├── LinearAlignment.Rd │ ├── ListBasesResponse.Rd │ ├── ListCoverageBucketsResponse.Rd │ ├── ListDatasetsResponse.Rd │ ├── ListOperationsResponse.Rd │ ├── MergeVariantsRequest.Rd │ ├── MergeVariantsRequest.infoMergeConfig.Rd │ ├── Operation.Rd │ ├── Operation.metadata.Rd │ ├── Operation.response.Rd │ ├── OperationEvent.Rd │ ├── OperationMetadata.Rd │ ├── OperationMetadata.labels.Rd │ ├── OperationMetadata.request.Rd │ ├── OperationMetadata.runtimeMetadata.Rd │ ├── Policy.Rd │ ├── Position.Rd │ ├── Program.Rd │ ├── Range.Rd │ ├── Read.Rd │ ├── Read.info.Rd │ ├── ReadGroup.Rd │ ├── ReadGroup.info.Rd │ ├── ReadGroupSet.Rd │ ├── ReadGroupSet.info.Rd │ ├── Reference.Rd │ ├── ReferenceBound.Rd │ ├── ReferenceSet.Rd │ ├── RuntimeMetadata.Rd │ ├── SearchAnnotationSetsRequest.Rd │ ├── SearchAnnotationSetsResponse.Rd │ ├── SearchAnnotationsRequest.Rd │ ├── SearchAnnotationsResponse.Rd │ ├── SearchCallSetsRequest.Rd │ ├── SearchCallSetsResponse.Rd │ ├── SearchReadGroupSetsRequest.Rd │ ├── SearchReadGroupSetsResponse.Rd │ ├── SearchReadsRequest.Rd │ ├── SearchReadsResponse.Rd │ ├── SearchReferenceSetsRequest.Rd │ ├── SearchReferenceSetsResponse.Rd │ ├── SearchReferencesRequest.Rd │ ├── SearchReferencesResponse.Rd │ ├── SearchVariantSetsRequest.Rd │ ├── SearchVariantSetsResponse.Rd │ ├── SearchVariantsRequest.Rd │ ├── SearchVariantsResponse.Rd │ ├── SetIamPolicyRequest.Rd │ ├── Status.Rd │ ├── TestIamPermissionsRequest.Rd │ ├── TestIamPermissionsResponse.Rd │ ├── Transcript.Rd │ ├── UndeleteDatasetRequest.Rd │ ├── Variant.Rd │ ├── Variant.info.Rd │ ├── VariantAnnotation.Rd │ ├── VariantCall.Rd │ ├── VariantCall.info.Rd │ ├── VariantSet.Rd │ ├── VariantSetMetadata.Rd │ ├── VariantSetMetadata.info.Rd │ ├── annotations.batchCreate.Rd │ ├── annotations.create.Rd │ ├── annotations.delete.Rd │ ├── annotations.get.Rd │ ├── annotations.search.Rd │ ├── annotations.update.Rd │ ├── annotationsets.create.Rd │ ├── annotationsets.delete.Rd │ ├── annotationsets.get.Rd │ ├── annotationsets.search.Rd │ ├── annotationsets.update.Rd │ ├── callsets.create.Rd │ ├── callsets.delete.Rd │ ├── callsets.get.Rd │ ├── callsets.patch.Rd │ ├── callsets.search.Rd │ ├── datasets.create.Rd │ ├── datasets.delete.Rd │ ├── datasets.get.Rd │ ├── datasets.getIamPolicy.Rd │ ├── datasets.list.Rd │ ├── datasets.patch.Rd │ ├── datasets.setIamPolicy.Rd │ ├── datasets.testIamPermissions.Rd │ ├── datasets.undelete.Rd │ ├── genomics_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── operations.cancel.Rd │ ├── operations.get.Rd │ ├── operations.list.Rd │ ├── readgroupsets.delete.Rd │ ├── readgroupsets.export.Rd │ ├── readgroupsets.get.Rd │ ├── readgroupsets.import.Rd │ ├── readgroupsets.patch.Rd │ ├── readgroupsets.search.Rd │ ├── reads.search.Rd │ ├── references.get.Rd │ ├── references.search.Rd │ ├── referencesets.get.Rd │ ├── referencesets.search.Rd │ ├── rmNullObs.Rd │ ├── variants.create.Rd │ ├── variants.delete.Rd │ ├── variants.get.Rd │ ├── variants.import.Rd │ ├── variants.merge.Rd │ ├── variants.patch.Rd │ ├── variants.search.Rd │ ├── variantsets.create.Rd │ ├── variantsets.delete.Rd │ ├── variantsets.export.Rd │ ├── variantsets.get.Rd │ ├── variantsets.patch.Rd │ └── variantsets.search.Rd ├── googlegenomicsv1alpha2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── genomics_functions.R │ └── genomics_objects.R ├── README.md ├── googlegenomicsv1alpha2.auto.Rproj └── man │ ├── CancelOperationRequest.Rd │ ├── ComputeEngine.Rd │ ├── ControllerConfig.Rd │ ├── ControllerConfig.disks.Rd │ ├── ControllerConfig.gcsSinks.Rd │ ├── ControllerConfig.gcsSources.Rd │ ├── ControllerConfig.vars.Rd │ ├── Disk.Rd │ ├── DockerExecutor.Rd │ ├── Empty.Rd │ ├── ImportReadGroupSetsResponse.Rd │ ├── ImportVariantsResponse.Rd │ ├── ListOperationsResponse.Rd │ ├── ListPipelinesResponse.Rd │ ├── LocalCopy.Rd │ ├── LoggingOptions.Rd │ ├── Operation.Rd │ ├── Operation.metadata.Rd │ ├── Operation.response.Rd │ ├── OperationEvent.Rd │ ├── OperationMetadata.Rd │ ├── OperationMetadata.labels.Rd │ ├── OperationMetadata.request.Rd │ ├── OperationMetadata.runtimeMetadata.Rd │ ├── Pipeline.Rd │ ├── PipelineParameter.Rd │ ├── PipelineResources.Rd │ ├── RepeatedString.Rd │ ├── RunPipelineArgs.Rd │ ├── RunPipelineArgs.inputs.Rd │ ├── RunPipelineArgs.labels.Rd │ ├── RunPipelineArgs.outputs.Rd │ ├── RunPipelineRequest.Rd │ ├── RuntimeMetadata.Rd │ ├── ServiceAccount.Rd │ ├── SetOperationStatusRequest.Rd │ ├── Status.Rd │ ├── TimestampEvent.Rd │ ├── genomics_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── operations.cancel.Rd │ ├── operations.get.Rd │ ├── operations.list.Rd │ ├── pipelines.create.Rd │ ├── pipelines.delete.Rd │ ├── pipelines.get.Rd │ ├── pipelines.getControllerConfig.Rd │ ├── pipelines.list.Rd │ ├── pipelines.run.Rd │ ├── pipelines.setOperationStatus.Rd │ └── rmNullObs.Rd ├── googlegmailv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── gmail_functions.R │ └── gmail_objects.R ├── README.md ├── googlegmailv1.auto.Rproj └── man │ ├── AutoForwarding.Rd │ ├── BatchDeleteMessagesRequest.Rd │ ├── BatchModifyMessagesRequest.Rd │ ├── Draft.Rd │ ├── Filter.Rd │ ├── FilterAction.Rd │ ├── FilterCriteria.Rd │ ├── ForwardingAddress.Rd │ ├── History.Rd │ ├── HistoryLabelAdded.Rd │ ├── HistoryLabelRemoved.Rd │ ├── HistoryMessageAdded.Rd │ ├── HistoryMessageDeleted.Rd │ ├── ImapSettings.Rd │ ├── Label.Rd │ ├── ListDraftsResponse.Rd │ ├── ListFiltersResponse.Rd │ ├── ListForwardingAddressesResponse.Rd │ ├── ListHistoryResponse.Rd │ ├── ListLabelsResponse.Rd │ ├── ListMessagesResponse.Rd │ ├── ListSendAsResponse.Rd │ ├── ListSmimeInfoResponse.Rd │ ├── ListThreadsResponse.Rd │ ├── Message.Rd │ ├── MessagePart.Rd │ ├── MessagePartBody.Rd │ ├── MessagePartHeader.Rd │ ├── ModifyMessageRequest.Rd │ ├── ModifyThreadRequest.Rd │ ├── PopSettings.Rd │ ├── Profile.Rd │ ├── SendAs.Rd │ ├── SmimeInfo.Rd │ ├── SmtpMsa.Rd │ ├── Thread.Rd │ ├── VacationSettings.Rd │ ├── WatchRequest.Rd │ ├── WatchResponse.Rd │ ├── gmail_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── rmNullObs.Rd │ ├── users.getProfile.Rd │ ├── users.stop.Rd │ └── users.watch.Rd ├── googlegroupsmigrationv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── groupsmigration_functions.R │ └── groupsmigration_objects.R ├── README.md ├── googlegroupsmigrationv1.auto.Rproj └── man │ ├── Groups.Rd │ ├── archive.insert.Rd │ ├── groupsmigration_googleAuthR.Rd │ ├── is.NullOb.Rd │ └── rmNullObs.Rd ├── googlegroupssettingsv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── groupssettings_functions.R │ └── groupssettings_objects.R ├── README.md ├── googlegroupssettingsv1.auto.Rproj └── man │ ├── Groups.Rd │ ├── groupsSettings.groups.get.Rd │ ├── groupsSettings.groups.patch.Rd │ ├── groupsSettings.groups.update.Rd │ ├── groupssettings_googleAuthR.Rd │ ├── is.NullOb.Rd │ └── rmNullObs.Rd ├── googleiamv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── iam_functions.R │ └── iam_objects.R ├── README.md ├── googleiamv1.auto.Rproj └── man │ ├── AuditData.Rd │ ├── Binding.Rd │ ├── BindingDelta.Rd │ ├── CreateServiceAccountKeyRequest.Rd │ ├── CreateServiceAccountRequest.Rd │ ├── Empty.Rd │ ├── ListServiceAccountKeysResponse.Rd │ ├── ListServiceAccountsResponse.Rd │ ├── Policy.Rd │ ├── PolicyDelta.Rd │ ├── QueryGrantableRolesRequest.Rd │ ├── QueryGrantableRolesResponse.Rd │ ├── Role.Rd │ ├── ServiceAccount.Rd │ ├── ServiceAccountKey.Rd │ ├── SetIamPolicyRequest.Rd │ ├── SignBlobRequest.Rd │ ├── SignBlobResponse.Rd │ ├── SignJwtRequest.Rd │ ├── SignJwtResponse.Rd │ ├── TestIamPermissionsRequest.Rd │ ├── TestIamPermissionsResponse.Rd │ ├── iam_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── projects.serviceAccounts.create.Rd │ ├── projects.serviceAccounts.delete.Rd │ ├── projects.serviceAccounts.get.Rd │ ├── projects.serviceAccounts.getIamPolicy.Rd │ ├── projects.serviceAccounts.list.Rd │ ├── projects.serviceAccounts.setIamPolicy.Rd │ ├── projects.serviceAccounts.signBlob.Rd │ ├── projects.serviceAccounts.signJwt.Rd │ ├── projects.serviceAccounts.testIamPermissions.Rd │ ├── projects.serviceAccounts.update.Rd │ ├── rmNullObs.Rd │ └── roles.queryGrantableRoles.Rd ├── googleidentitytoolkitv3.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── identitytoolkit_functions.R │ └── identitytoolkit_objects.R ├── README.md ├── googleidentitytoolkitv3.auto.Rproj └── man │ ├── CreateAuthUriResponse.Rd │ ├── DeleteAccountResponse.Rd │ ├── DownloadAccountResponse.Rd │ ├── EmailTemplate.Rd │ ├── GetAccountInfoResponse.Rd │ ├── GetOobConfirmationCodeResponse.Rd │ ├── GetRecaptchaParamResponse.Rd │ ├── IdentitytoolkitRelyingpartyCreateAuthUriRequest.Rd │ ├── IdentitytoolkitRelyingpartyCreateAuthUriRequest.customParameter.Rd │ ├── IdentitytoolkitRelyingpartyDeleteAccountRequest.Rd │ ├── IdentitytoolkitRelyingpartyDownloadAccountRequest.Rd │ ├── IdentitytoolkitRelyingpartyGetAccountInfoRequest.Rd │ ├── IdentitytoolkitRelyingpartyGetProjectConfigResponse.Rd │ ├── IdentitytoolkitRelyingpartyGetPublicKeysResponse.Rd │ ├── IdentitytoolkitRelyingpartyResetPasswordRequest.Rd │ ├── IdentitytoolkitRelyingpartySetAccountInfoRequest.Rd │ ├── IdentitytoolkitRelyingpartySetProjectConfigRequest.Rd │ ├── IdentitytoolkitRelyingpartySetProjectConfigResponse.Rd │ ├── IdentitytoolkitRelyingpartySignOutUserRequest.Rd │ ├── IdentitytoolkitRelyingpartySignOutUserResponse.Rd │ ├── IdentitytoolkitRelyingpartySignupNewUserRequest.Rd │ ├── IdentitytoolkitRelyingpartyUploadAccountRequest.Rd │ ├── IdentitytoolkitRelyingpartyVerifyAssertionRequest.Rd │ ├── IdentitytoolkitRelyingpartyVerifyCustomTokenRequest.Rd │ ├── IdentitytoolkitRelyingpartyVerifyPasswordRequest.Rd │ ├── IdpConfig.Rd │ ├── Relyingparty.Rd │ ├── ResetPasswordResponse.Rd │ ├── SetAccountInfoResponse.Rd │ ├── SetAccountInfoResponse.providerUserInfo.Rd │ ├── SignupNewUserResponse.Rd │ ├── UploadAccountResponse.Rd │ ├── UploadAccountResponse.error.Rd │ ├── UserInfo.Rd │ ├── UserInfo.providerUserInfo.Rd │ ├── VerifyAssertionResponse.Rd │ ├── VerifyCustomTokenResponse.Rd │ ├── VerifyPasswordResponse.Rd │ ├── identitytoolkit_googleAuthR.Rd │ ├── is.NullOb.Rd │ ├── relyingparty.createAuthUri.Rd │ ├── relyingparty.deleteAccount.Rd │ ├── relyingparty.downloadAccount.Rd │ ├── relyingparty.getAccountInfo.Rd │ ├── relyingparty.getOobConfirmationCode.Rd │ ├── relyingparty.getProjectConfig.Rd │ ├── relyingparty.getPublicKeys.Rd │ ├── relyingparty.getRecaptchaParam.Rd │ ├── relyingparty.resetPassword.Rd │ ├── relyingparty.setAccountInfo.Rd │ ├── relyingparty.setProjectConfig.Rd │ ├── relyingparty.signOutUser.Rd │ ├── relyingparty.signupNewUser.Rd │ ├── relyingparty.uploadAccount.Rd │ ├── relyingparty.verifyAssertion.Rd │ ├── relyingparty.verifyCustomToken.Rd │ ├── relyingparty.verifyPassword.Rd │ └── rmNullObs.Rd ├── googlekgsearchv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── kgsearch_functions.R │ └── kgsearch_objects.R ├── README.md ├── googlekgsearchv1.auto.Rproj └── man │ ├── SearchResponse.Rd │ ├── entities.search.Rd │ ├── is.NullOb.Rd │ ├── kgsearch_googleAuthR.Rd │ └── rmNullObs.Rd ├── googlelanguagev1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── language_functions.R │ └── language_objects.R ├── README.md ├── googlelanguagev1.auto.Rproj └── man │ ├── AnalyzeEntitiesRequest.Rd │ ├── AnalyzeEntitiesResponse.Rd │ ├── AnalyzeSentimentRequest.Rd │ ├── AnalyzeSentimentResponse.Rd │ ├── AnalyzeSyntaxRequest.Rd │ ├── AnalyzeSyntaxResponse.Rd │ ├── AnnotateTextRequest.Rd │ ├── AnnotateTextResponse.Rd │ ├── DependencyEdge.Rd │ ├── Document.Rd │ ├── Entity.Rd │ ├── Entity.metadata.Rd │ ├── EntityMention.Rd │ ├── Features.Rd │ ├── PartOfSpeech.Rd │ ├── Sentence.Rd │ ├── Sentiment.Rd │ ├── Status.Rd │ ├── TextSpan.Rd │ ├── Token.Rd │ ├── documents.analyzeEntities.Rd │ ├── documents.analyzeSentiment.Rd │ ├── documents.analyzeSyntax.Rd │ ├── documents.annotateText.Rd │ ├── is.NullOb.Rd │ ├── language_googleAuthR.Rd │ └── rmNullObs.Rd ├── googlelanguagev1beta1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── language_functions.R │ └── language_objects.R ├── README.md ├── googlelanguagev1beta1.auto.Rproj └── man │ ├── AnalyzeEntitiesRequest.Rd │ ├── AnalyzeEntitiesResponse.Rd │ ├── AnalyzeSentimentRequest.Rd │ ├── AnalyzeSentimentResponse.Rd │ ├── AnalyzeSyntaxRequest.Rd │ ├── AnalyzeSyntaxResponse.Rd │ ├── AnnotateTextRequest.Rd │ ├── AnnotateTextResponse.Rd │ ├── DependencyEdge.Rd │ ├── Document.Rd │ ├── Entity.Rd │ ├── Entity.metadata.Rd │ ├── EntityMention.Rd │ ├── Features.Rd │ ├── PartOfSpeech.Rd │ ├── Sentence.Rd │ ├── Sentiment.Rd │ ├── Status.Rd │ ├── TextSpan.Rd │ ├── Token.Rd │ ├── documents.analyzeEntities.Rd │ ├── documents.analyzeSentiment.Rd │ ├── documents.analyzeSyntax.Rd │ ├── documents.annotateText.Rd │ ├── is.NullOb.Rd │ ├── language_googleAuthR.Rd │ └── rmNullObs.Rd ├── googlelicensingv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── licensing_functions.R │ └── licensing_objects.R ├── README.md ├── googlelicensingv1.auto.Rproj └── man │ ├── LicenseAssignment.Rd │ ├── LicenseAssignmentInsert.Rd │ ├── LicenseAssignmentList.Rd │ ├── is.NullOb.Rd │ ├── licenseAssignments.delete.Rd │ ├── licenseAssignments.get.Rd │ ├── licenseAssignments.insert.Rd │ ├── licenseAssignments.listForProduct.Rd │ ├── licenseAssignments.listForProductAndSku.Rd │ ├── licenseAssignments.patch.Rd │ ├── licenseAssignments.update.Rd │ ├── licensing_googleAuthR.Rd │ └── rmNullObs.Rd ├── googleloggingv2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── logging_functions.R │ └── logging_objects.R ├── README.md ├── googleloggingv2.auto.Rproj └── man │ ├── Empty.Rd │ ├── HttpRequest.Rd │ ├── LabelDescriptor.Rd │ ├── ListLogEntriesRequest.Rd │ ├── ListLogEntriesResponse.Rd │ ├── ListLogMetricsResponse.Rd │ ├── ListLogsResponse.Rd │ ├── ListMonitoredResourceDescriptorsResponse.Rd │ ├── ListSinksResponse.Rd │ ├── LogEntry.Rd │ ├── LogEntry.jsonPayload.Rd │ ├── LogEntry.labels.Rd │ ├── LogEntry.protoPayload.Rd │ ├── LogEntryOperation.Rd │ ├── LogEntrySourceLocation.Rd │ ├── LogLine.Rd │ ├── LogMetric.Rd │ ├── LogSink.Rd │ ├── MonitoredResource.Rd │ ├── MonitoredResource.labels.Rd │ ├── MonitoredResourceDescriptor.Rd │ ├── RequestLog.Rd │ ├── SourceLocation.Rd │ ├── SourceReference.Rd │ ├── WriteLogEntriesRequest.Rd │ ├── WriteLogEntriesRequest.labels.Rd │ ├── WriteLogEntriesResponse.Rd │ ├── billingAccounts.logs.delete.Rd │ ├── billingAccounts.logs.list.Rd │ ├── billingAccounts.sinks.create.Rd │ ├── billingAccounts.sinks.delete.Rd │ ├── billingAccounts.sinks.get.Rd │ ├── billingAccounts.sinks.list.Rd │ ├── billingAccounts.sinks.update.Rd │ ├── entries.list.Rd │ ├── entries.write.Rd │ ├── folders.logs.delete.Rd │ ├── folders.logs.list.Rd │ ├── folders.sinks.create.Rd │ ├── folders.sinks.delete.Rd │ ├── folders.sinks.get.Rd │ ├── folders.sinks.list.Rd │ ├── folders.sinks.update.Rd │ ├── is.NullOb.Rd │ ├── logging_googleAuthR.Rd │ ├── monitoredResourceDescriptors.list.Rd │ ├── organizations.logs.delete.Rd │ ├── organizations.logs.list.Rd │ ├── organizations.sinks.create.Rd │ ├── organizations.sinks.delete.Rd │ ├── organizations.sinks.get.Rd │ ├── organizations.sinks.list.Rd │ ├── organizations.sinks.update.Rd │ ├── projects.logs.delete.Rd │ ├── projects.logs.list.Rd │ ├── projects.metrics.create.Rd │ ├── projects.metrics.delete.Rd │ ├── projects.metrics.get.Rd │ ├── projects.metrics.list.Rd │ ├── projects.metrics.update.Rd │ ├── projects.sinks.create.Rd │ ├── projects.sinks.delete.Rd │ ├── projects.sinks.get.Rd │ ├── projects.sinks.list.Rd │ ├── projects.sinks.update.Rd │ └── rmNullObs.Rd ├── googleloggingv2beta1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── logging_functions.R │ └── logging_objects.R ├── README.md ├── googleloggingv2beta1.auto.Rproj └── man │ ├── Empty.Rd │ ├── HttpRequest.Rd │ ├── LabelDescriptor.Rd │ ├── ListLogEntriesRequest.Rd │ ├── ListLogEntriesResponse.Rd │ ├── ListLogMetricsResponse.Rd │ ├── ListLogsResponse.Rd │ ├── ListMonitoredResourceDescriptorsResponse.Rd │ ├── ListSinksResponse.Rd │ ├── LogEntry.Rd │ ├── LogEntry.jsonPayload.Rd │ ├── LogEntry.labels.Rd │ ├── LogEntry.protoPayload.Rd │ ├── LogEntryOperation.Rd │ ├── LogEntrySourceLocation.Rd │ ├── LogLine.Rd │ ├── LogMetric.Rd │ ├── LogSink.Rd │ ├── MonitoredResource.Rd │ ├── MonitoredResource.labels.Rd │ ├── MonitoredResourceDescriptor.Rd │ ├── RequestLog.Rd │ ├── SourceLocation.Rd │ ├── SourceReference.Rd │ ├── WriteLogEntriesRequest.Rd │ ├── WriteLogEntriesRequest.labels.Rd │ ├── WriteLogEntriesResponse.Rd │ ├── billingAccounts.logs.delete.Rd │ ├── billingAccounts.logs.list.Rd │ ├── entries.list.Rd │ ├── entries.write.Rd │ ├── is.NullOb.Rd │ ├── logging_googleAuthR.Rd │ ├── monitoredResourceDescriptors.list.Rd │ ├── organizations.logs.delete.Rd │ ├── organizations.logs.list.Rd │ ├── projects.logs.delete.Rd │ ├── projects.logs.list.Rd │ ├── projects.metrics.create.Rd │ ├── projects.metrics.delete.Rd │ ├── projects.metrics.get.Rd │ ├── projects.metrics.list.Rd │ ├── projects.metrics.update.Rd │ ├── projects.sinks.create.Rd │ ├── projects.sinks.delete.Rd │ ├── projects.sinks.get.Rd │ ├── projects.sinks.list.Rd │ ├── projects.sinks.update.Rd │ └── rmNullObs.Rd ├── googlemanufacturersv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── manufacturers_functions.R │ └── manufacturers_objects.R ├── README.md ├── googlemanufacturersv1.auto.Rproj └── man │ ├── Attributes.Rd │ ├── Issue.Rd │ ├── ListProductsResponse.Rd │ ├── Product.Rd │ ├── accounts.products.get.Rd │ ├── accounts.products.list.Rd │ ├── is.NullOb.Rd │ ├── manufacturers_googleAuthR.Rd │ └── rmNullObs.Rd ├── googlemirrorv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── mirror_functions.R │ └── mirror_objects.R ├── README.md ├── googlemirrorv1.auto.Rproj └── man │ ├── Account.Rd │ ├── Attachment.Rd │ ├── AttachmentsListResponse.Rd │ ├── AuthToken.Rd │ ├── Command.Rd │ ├── Contact.Rd │ ├── ContactsListResponse.Rd │ ├── Location.Rd │ ├── LocationsListResponse.Rd │ ├── MenuItem.Rd │ ├── MenuValue.Rd │ ├── Notification.Rd │ ├── NotificationConfig.Rd │ ├── Setting.Rd │ ├── Subscription.Rd │ ├── SubscriptionsListResponse.Rd │ ├── TimelineItem.Rd │ ├── TimelineListResponse.Rd │ ├── UserAction.Rd │ ├── UserData.Rd │ ├── accounts.insert.Rd │ ├── contacts.delete.Rd │ ├── contacts.get.Rd │ ├── contacts.insert.Rd │ ├── contacts.list.Rd │ ├── contacts.patch.Rd │ ├── contacts.update.Rd │ ├── is.NullOb.Rd │ ├── locations.get.Rd │ ├── locations.list.Rd │ ├── mirror_googleAuthR.Rd │ ├── rmNullObs.Rd │ ├── settings.get.Rd │ ├── subscriptions.delete.Rd │ ├── subscriptions.insert.Rd │ ├── subscriptions.list.Rd │ ├── subscriptions.update.Rd │ ├── timeline.delete.Rd │ ├── timeline.get.Rd │ ├── timeline.insert.Rd │ ├── timeline.list.Rd │ ├── timeline.patch.Rd │ └── timeline.update.Rd ├── googlemlv1beta1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── ml_functions.R │ └── ml_objects.R ├── README.md ├── googlemlv1beta1.auto.Rproj └── man │ ├── GoogleApi__HttpBody.Rd │ ├── GoogleCloudMlV1__ManualScaling.Rd │ ├── GoogleCloudMlV1__OperationMetadata.Rd │ ├── GoogleCloudMlV1__Version.Rd │ ├── GoogleCloudMlV1beta1_HyperparameterOutput_HyperparameterMetric.Rd │ ├── GoogleCloudMlV1beta1__CancelJobRequest.Rd │ ├── GoogleCloudMlV1beta1__GetConfigResponse.Rd │ ├── GoogleCloudMlV1beta1__HyperparameterOutput.Rd │ ├── GoogleCloudMlV1beta1__HyperparameterOutput.hyperparameters.Rd │ ├── GoogleCloudMlV1beta1__HyperparameterSpec.Rd │ ├── GoogleCloudMlV1beta1__Job.Rd │ ├── GoogleCloudMlV1beta1__ListJobsResponse.Rd │ ├── GoogleCloudMlV1beta1__ListModelsResponse.Rd │ ├── GoogleCloudMlV1beta1__ListVersionsResponse.Rd │ ├── GoogleCloudMlV1beta1__ManualScaling.Rd │ ├── GoogleCloudMlV1beta1__Model.Rd │ ├── GoogleCloudMlV1beta1__OperationMetadata.Rd │ ├── GoogleCloudMlV1beta1__ParameterSpec.Rd │ ├── GoogleCloudMlV1beta1__PredictRequest.Rd │ ├── GoogleCloudMlV1beta1__PredictionInput.Rd │ ├── GoogleCloudMlV1beta1__PredictionOutput.Rd │ ├── GoogleCloudMlV1beta1__SetDefaultVersionRequest.Rd │ ├── GoogleCloudMlV1beta1__TrainingInput.Rd │ ├── GoogleCloudMlV1beta1__TrainingOutput.Rd │ ├── GoogleCloudMlV1beta1__Version.Rd │ ├── GoogleLongrunning__ListOperationsResponse.Rd │ ├── GoogleLongrunning__Operation.Rd │ ├── GoogleLongrunning__Operation.metadata.Rd │ ├── GoogleLongrunning__Operation.response.Rd │ ├── GoogleProtobuf__Empty.Rd │ ├── GoogleRpc__Status.Rd │ ├── is.NullOb.Rd │ ├── ml_googleAuthR.Rd │ ├── projects.getConfig.Rd │ ├── projects.predict.Rd │ └── rmNullObs.Rd ├── googlemonitoringv3.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── monitoring_functions.R │ └── monitoring_objects.R ├── README.md ├── googlemonitoringv3.auto.Rproj └── man │ ├── BucketOptions.Rd │ ├── CollectdPayload.Rd │ ├── CollectdPayload.metadata.Rd │ ├── CollectdValue.Rd │ ├── CreateCollectdTimeSeriesRequest.Rd │ ├── CreateTimeSeriesRequest.Rd │ ├── Distribution.Rd │ ├── Empty.Rd │ ├── Explicit.Rd │ ├── Exponential.Rd │ ├── Field.Rd │ ├── Group.Rd │ ├── LabelDescriptor.Rd │ ├── Linear.Rd │ ├── ListGroupMembersResponse.Rd │ ├── ListGroupsResponse.Rd │ ├── ListMetricDescriptorsResponse.Rd │ ├── ListMonitoredResourceDescriptorsResponse.Rd │ ├── ListTimeSeriesResponse.Rd │ ├── Metric.Rd │ ├── Metric.labels.Rd │ ├── MetricDescriptor.Rd │ ├── MonitoredResource.Rd │ ├── MonitoredResource.labels.Rd │ ├── MonitoredResourceDescriptor.Rd │ ├── Option.Rd │ ├── Option.value.Rd │ ├── Point.Rd │ ├── Range.Rd │ ├── SourceContext.Rd │ ├── TimeInterval.Rd │ ├── TimeSeries.Rd │ ├── Type.Rd │ ├── TypedValue.Rd │ ├── is.NullOb.Rd │ ├── monitoring_googleAuthR.Rd │ ├── projects.collectdTimeSeries.create.Rd │ ├── projects.groups.create.Rd │ ├── projects.groups.delete.Rd │ ├── projects.groups.get.Rd │ ├── projects.groups.list.Rd │ ├── projects.groups.update.Rd │ ├── projects.metricDescriptors.create.Rd │ ├── projects.metricDescriptors.delete.Rd │ ├── projects.metricDescriptors.get.Rd │ ├── projects.metricDescriptors.list.Rd │ ├── projects.monitoredResourceDescriptors.get.Rd │ ├── projects.monitoredResourceDescriptors.list.Rd │ ├── projects.timeSeries.create.Rd │ ├── projects.timeSeries.list.Rd │ └── rmNullObs.Rd ├── googleoauth2v1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── oauth2_functions.R │ └── oauth2_objects.R ├── README.md ├── googleoauth2v1.auto.Rproj └── man │ ├── Jwk.Rd │ ├── Jwk.keys.Rd │ ├── Raw.Rd │ ├── Raw.keyvalues.Rd │ ├── Tokeninfo.Rd │ ├── Userinfoplus.Rd │ ├── X509.Rd │ ├── is.NullOb.Rd │ ├── oauth2_googleAuthR.Rd │ ├── rmNullObs.Rd │ └── userinfo.get.Rd ├── googleoauth2v2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── oauth2_functions.R │ └── oauth2_objects.R ├── README.md ├── googleoauth2v2.auto.Rproj └── man │ ├── Jwk.Rd │ ├── Jwk.keys.Rd │ ├── Tokeninfo.Rd │ ├── Userinfoplus.Rd │ ├── is.NullOb.Rd │ ├── oauth2_googleAuthR.Rd │ ├── rmNullObs.Rd │ └── userinfo.get.Rd ├── googlepagespeedonlinev1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── pagespeedonline_functions.R │ └── pagespeedonline_objects.R ├── README.md ├── googlepagespeedonlinev1.auto.Rproj └── man │ ├── Result.Rd │ ├── Result.formattedResults.Rd │ ├── Result.formattedResults.ruleResults.Rd │ ├── Result.pageStats.Rd │ ├── Result.screenshot.Rd │ ├── Result.version.Rd │ ├── is.NullOb.Rd │ ├── pagespeedapi.runpagespeed.Rd │ ├── pagespeedonline_googleAuthR.Rd │ └── rmNullObs.Rd ├── googlepagespeedonlinev2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── pagespeedonline_functions.R │ └── pagespeedonline_objects.R ├── README.md ├── googlepagespeedonlinev2.auto.Rproj └── man │ ├── PagespeedApiFormatStringV2.Rd │ ├── PagespeedApiFormatStringV2.args.Rd │ ├── PagespeedApiFormatStringV2.args.rects.Rd │ ├── PagespeedApiFormatStringV2.args.secondary_rects.Rd │ ├── PagespeedApiImageV2.Rd │ ├── PagespeedApiImageV2.page_rect.Rd │ ├── Result.Rd │ ├── Result.formattedResults.Rd │ ├── Result.formattedResults.ruleResults.Rd │ ├── Result.pageStats.Rd │ ├── Result.ruleGroups.Rd │ ├── Result.version.Rd │ ├── is.NullOb.Rd │ ├── pagespeedapi.runpagespeed.Rd │ ├── pagespeedonline_googleAuthR.Rd │ └── rmNullObs.Rd ├── googlepartnersv2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── partners_functions.R │ └── partners_objects.R ├── README.md ├── googlepartnersv2.auto.Rproj └── man │ ├── CertificationExamStatus.Rd │ ├── CertificationStatus.Rd │ ├── Company.Rd │ ├── CreateLeadRequest.Rd │ ├── CreateLeadResponse.Rd │ ├── DebugInfo.Rd │ ├── EventData.Rd │ ├── GetCompanyResponse.Rd │ ├── LatLng.Rd │ ├── Lead.Rd │ ├── ListCompaniesResponse.Rd │ ├── ListUserStatesResponse.Rd │ ├── LocalizedCompanyInfo.Rd │ ├── Location.Rd │ ├── LogMessageRequest.Rd │ ├── LogMessageRequest.clientInfo.Rd │ ├── LogMessageResponse.Rd │ ├── LogUserEventRequest.Rd │ ├── LogUserEventResponse.Rd │ ├── Money.Rd │ ├── PublicProfile.Rd │ ├── Rank.Rd │ ├── RecaptchaChallenge.Rd │ ├── RequestMetadata.Rd │ ├── ResponseMetadata.Rd │ ├── TrafficSource.Rd │ ├── UserOverrides.Rd │ ├── clientMessages.log.Rd │ ├── companies.get.Rd │ ├── companies.list.Rd │ ├── is.NullOb.Rd │ ├── partners_googleAuthR.Rd │ ├── rmNullObs.Rd │ ├── userEvents.log.Rd │ └── userStates.list.Rd ├── googlepeoplev1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── people_functions.R │ └── people_objects.R ├── README.md ├── googlepeoplev1.auto.Rproj └── man │ ├── Address.Rd │ ├── AgeRangeType.Rd │ ├── Biography.Rd │ ├── Birthday.Rd │ ├── BraggingRights.Rd │ ├── ContactGroupMembership.Rd │ ├── CoverPhoto.Rd │ ├── Date.Rd │ ├── DomainMembership.Rd │ ├── EmailAddress.Rd │ ├── Event.Rd │ ├── FieldMetadata.Rd │ ├── Gender.Rd │ ├── GetPeopleResponse.Rd │ ├── ImClient.Rd │ ├── Interest.Rd │ ├── ListConnectionsResponse.Rd │ ├── Locale.Rd │ ├── Membership.Rd │ ├── Name.Rd │ ├── Nickname.Rd │ ├── Occupation.Rd │ ├── Organization.Rd │ ├── Person.Rd │ ├── PersonMetadata.Rd │ ├── PersonResponse.Rd │ ├── PhoneNumber.Rd │ ├── Photo.Rd │ ├── ProfileMetadata.Rd │ ├── Relation.Rd │ ├── RelationshipInterest.Rd │ ├── RelationshipStatus.Rd │ ├── Residence.Rd │ ├── Skill.Rd │ ├── Source.Rd │ ├── Tagline.Rd │ ├── Url.Rd │ ├── get.Rd │ ├── getBatchGet.Rd │ ├── is.NullOb.Rd │ ├── people_googleAuthR.Rd │ └── rmNullObs.Rd ├── googleplaymoviespartnerv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── playmoviespartner_functions.R │ └── playmoviespartner_objects.R ├── README.md ├── googleplaymoviespartnerv1.auto.Rproj └── man │ ├── Avail.Rd │ ├── ListAvailsResponse.Rd │ ├── ListOrdersResponse.Rd │ ├── ListStoreInfosResponse.Rd │ ├── Order.Rd │ ├── StoreInfo.Rd │ ├── accounts.avails.get.Rd │ ├── accounts.avails.list.Rd │ ├── accounts.orders.get.Rd │ ├── accounts.orders.list.Rd │ ├── accounts.storeInfos.list.Rd │ ├── is.NullOb.Rd │ ├── playmoviespartner_googleAuthR.Rd │ └── rmNullObs.Rd ├── googleplusDomainsv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── plusDomains_functions.R │ └── plusDomains_objects.R ├── README.md ├── googleplusDomainsv1.auto.Rproj └── man │ ├── Acl.Rd │ ├── Activity.Rd │ ├── Activity.actor.Rd │ ├── Activity.actor.clientSpecificActorInfo.Rd │ ├── Activity.actor.clientSpecificActorInfo.youtubeActorInfo.Rd │ ├── Activity.actor.image.Rd │ ├── Activity.actor.name.Rd │ ├── Activity.actor.verification.Rd │ ├── Activity.object.Rd │ ├── Activity.object.actor.Rd │ ├── Activity.object.actor.clientSpecificActorInfo.Rd │ ├── Activity.object.actor.clientSpecificActorInfo.youtubeActorInfo.Rd │ ├── Activity.object.actor.image.Rd │ ├── Activity.object.actor.verification.Rd │ ├── Activity.object.attachments.Rd │ ├── Activity.object.attachments.embed.Rd │ ├── Activity.object.attachments.fullImage.Rd │ ├── Activity.object.attachments.image.Rd │ ├── Activity.object.attachments.previewThumbnails.Rd │ ├── Activity.object.attachments.thumbnails.Rd │ ├── Activity.object.attachments.thumbnails.image.Rd │ ├── Activity.object.plusoners.Rd │ ├── Activity.object.replies.Rd │ ├── Activity.object.resharers.Rd │ ├── Activity.object.statusForViewer.Rd │ ├── Activity.provider.Rd │ ├── ActivityFeed.Rd │ ├── Audience.Rd │ ├── AudiencesFeed.Rd │ ├── Circle.Rd │ ├── Circle.people.Rd │ ├── CircleFeed.Rd │ ├── Comment.Rd │ ├── Comment.actor.Rd │ ├── Comment.actor.clientSpecificActorInfo.Rd │ ├── Comment.actor.clientSpecificActorInfo.youtubeActorInfo.Rd │ ├── Comment.actor.image.Rd │ ├── Comment.actor.verification.Rd │ ├── Comment.inReplyTo.Rd │ ├── Comment.object.Rd │ ├── Comment.plusoners.Rd │ ├── CommentFeed.Rd │ ├── Media.Rd │ ├── Media.author.Rd │ ├── Media.author.image.Rd │ ├── Media.exif.Rd │ ├── PeopleFeed.Rd │ ├── Person.Rd │ ├── Person.cover.Rd │ ├── Person.cover.coverInfo.Rd │ ├── Person.cover.coverPhoto.Rd │ ├── Person.emails.Rd │ ├── Person.image.Rd │ ├── Person.name.Rd │ ├── Person.organizations.Rd │ ├── Person.placesLived.Rd │ ├── Person.urls.Rd │ ├── Place.Rd │ ├── Place.address.Rd │ ├── Place.position.Rd │ ├── PlusDomainsAclentryResource.Rd │ ├── Videostream.Rd │ ├── activities.get.Rd │ ├── activities.insert.Rd │ ├── activities.list.Rd │ ├── audiences.list.Rd │ ├── circles.addPeople.Rd │ ├── circles.get.Rd │ ├── circles.insert.Rd │ ├── circles.list.Rd │ ├── circles.patch.Rd │ ├── circles.remove.Rd │ ├── circles.removePeople.Rd │ ├── circles.update.Rd │ ├── comments.get.Rd │ ├── comments.insert.Rd │ ├── comments.list.Rd │ ├── is.NullOb.Rd │ ├── media.insert.Rd │ ├── people.get.Rd │ ├── people.list.Rd │ ├── people.listByActivity.Rd │ ├── people.listByCircle.Rd │ ├── plusDomains_googleAuthR.Rd │ └── rmNullObs.Rd ├── googleplusv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── plus_functions.R │ └── plus_objects.R ├── README.md ├── googleplusv1.auto.Rproj └── man │ ├── Acl.Rd │ ├── Activity.Rd │ ├── Activity.actor.Rd │ ├── Activity.actor.clientSpecificActorInfo.Rd │ ├── Activity.actor.clientSpecificActorInfo.youtubeActorInfo.Rd │ ├── Activity.actor.image.Rd │ ├── Activity.actor.name.Rd │ ├── Activity.actor.verification.Rd │ ├── Activity.object.Rd │ ├── Activity.object.actor.Rd │ ├── Activity.object.actor.clientSpecificActorInfo.Rd │ ├── Activity.object.actor.clientSpecificActorInfo.youtubeActorInfo.Rd │ ├── Activity.object.actor.image.Rd │ ├── Activity.object.actor.verification.Rd │ ├── Activity.object.attachments.Rd │ ├── Activity.object.attachments.embed.Rd │ ├── Activity.object.attachments.fullImage.Rd │ ├── Activity.object.attachments.image.Rd │ ├── Activity.object.attachments.thumbnails.Rd │ ├── Activity.object.attachments.thumbnails.image.Rd │ ├── Activity.object.plusoners.Rd │ ├── Activity.object.replies.Rd │ ├── Activity.object.resharers.Rd │ ├── Activity.provider.Rd │ ├── ActivityFeed.Rd │ ├── Comment.Rd │ ├── Comment.actor.Rd │ ├── Comment.actor.clientSpecificActorInfo.Rd │ ├── Comment.actor.clientSpecificActorInfo.youtubeActorInfo.Rd │ ├── Comment.actor.image.Rd │ ├── Comment.actor.verification.Rd │ ├── Comment.inReplyTo.Rd │ ├── Comment.object.Rd │ ├── Comment.plusoners.Rd │ ├── CommentFeed.Rd │ ├── PeopleFeed.Rd │ ├── Person.Rd │ ├── Person.ageRange.Rd │ ├── Person.cover.Rd │ ├── Person.cover.coverInfo.Rd │ ├── Person.cover.coverPhoto.Rd │ ├── Person.emails.Rd │ ├── Person.image.Rd │ ├── Person.name.Rd │ ├── Person.organizations.Rd │ ├── Person.placesLived.Rd │ ├── Person.urls.Rd │ ├── Place.Rd │ ├── Place.address.Rd │ ├── Place.position.Rd │ ├── PlusAclentryResource.Rd │ ├── activities.get.Rd │ ├── activities.list.Rd │ ├── activities.search.Rd │ ├── comments.get.Rd │ ├── comments.list.Rd │ ├── is.NullOb.Rd │ ├── people.get.Rd │ ├── people.list.Rd │ ├── people.listByActivity.Rd │ ├── people.search.Rd │ ├── plus_googleAuthR.Rd │ └── rmNullObs.Rd ├── googlepredictionv12.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── prediction_functions.R │ └── prediction_objects.R ├── README.md ├── googlepredictionv12.auto.Rproj └── man │ ├── Input.Rd │ ├── Input.input.Rd │ ├── Output.Rd │ ├── Output.outputMulti.Rd │ ├── Training.Rd │ ├── Training.modelInfo.Rd │ ├── Update.Rd │ ├── hostedmodels.predict.Rd │ ├── is.NullOb.Rd │ ├── prediction_googleAuthR.Rd │ ├── rmNullObs.Rd │ ├── training.delete.Rd │ ├── training.get.Rd │ ├── training.insert.Rd │ └── training.update.Rd ├── googlepredictionv13.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── prediction_functions.R │ └── prediction_objects.R ├── README.md ├── googlepredictionv13.auto.Rproj └── man │ ├── Input.Rd │ ├── Input.input.Rd │ ├── Output.Rd │ ├── Output.outputMulti.Rd │ ├── Training.Rd │ ├── Training.modelInfo.Rd │ ├── Training.modelInfo.confusionMatrix.Rd │ ├── Training.modelInfo.confusionMatrixRowTotals.Rd │ ├── Update.Rd │ ├── hostedmodels.predict.Rd │ ├── is.NullOb.Rd │ ├── prediction_googleAuthR.Rd │ ├── rmNullObs.Rd │ ├── training.delete.Rd │ ├── training.get.Rd │ ├── training.insert.Rd │ ├── training.predict.Rd │ └── training.update.Rd ├── googlepredictionv14.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── prediction_functions.R │ └── prediction_objects.R ├── README.md ├── googlepredictionv14.auto.Rproj └── man │ ├── Input.Rd │ ├── Input.input.Rd │ ├── Output.Rd │ ├── Output.outputMulti.Rd │ ├── Training.Rd │ ├── Training.dataAnalysis.Rd │ ├── Training.modelInfo.Rd │ ├── Training.modelInfo.confusionMatrix.Rd │ ├── Training.modelInfo.confusionMatrixRowTotals.Rd │ ├── Update.Rd │ ├── hostedmodels.predict.Rd │ ├── is.NullOb.Rd │ ├── prediction_googleAuthR.Rd │ ├── rmNullObs.Rd │ ├── trainedmodels.delete.Rd │ ├── trainedmodels.get.Rd │ ├── trainedmodels.insert.Rd │ ├── trainedmodels.predict.Rd │ └── trainedmodels.update.Rd ├── googlepredictionv15.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── prediction_functions.R │ └── prediction_objects.R ├── README.md ├── googlepredictionv15.auto.Rproj └── man │ ├── Analyze.Rd │ ├── Analyze.dataDescription.Rd │ ├── Analyze.dataDescription.features.Rd │ ├── Analyze.dataDescription.features.categorical.Rd │ ├── Analyze.dataDescription.features.categorical.values.Rd │ ├── Analyze.dataDescription.features.numeric.Rd │ ├── Analyze.dataDescription.features.text.Rd │ ├── Analyze.dataDescription.outputFeature.Rd │ ├── Analyze.dataDescription.outputFeature.numeric.Rd │ ├── Analyze.dataDescription.outputFeature.text.Rd │ ├── Analyze.modelDescription.Rd │ ├── Analyze.modelDescription.confusionMatrix.Rd │ ├── Analyze.modelDescription.confusionMatrixRowTotals.Rd │ ├── Input.Rd │ ├── Input.input.Rd │ ├── List.Rd │ ├── Output.Rd │ ├── Output.outputMulti.Rd │ ├── Training.Rd │ ├── Training.modelInfo.Rd │ ├── Training.trainingInstances.Rd │ ├── Update.Rd │ ├── hostedmodels.predict.Rd │ ├── is.NullOb.Rd │ ├── prediction_googleAuthR.Rd │ ├── rmNullObs.Rd │ ├── trainedmodels.analyze.Rd │ ├── trainedmodels.delete.Rd │ ├── trainedmodels.get.Rd │ ├── trainedmodels.insert.Rd │ ├── trainedmodels.list.Rd │ ├── trainedmodels.predict.Rd │ └── trainedmodels.update.Rd ├── googlepredictionv16.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── prediction_functions.R │ └── prediction_objects.R ├── README.md ├── googlepredictionv16.auto.Rproj └── man │ ├── Analyze.Rd │ ├── Analyze.dataDescription.Rd │ ├── Analyze.dataDescription.features.Rd │ ├── Analyze.dataDescription.features.categorical.Rd │ ├── Analyze.dataDescription.features.categorical.values.Rd │ ├── Analyze.dataDescription.features.numeric.Rd │ ├── Analyze.dataDescription.features.text.Rd │ ├── Analyze.dataDescription.outputFeature.Rd │ ├── Analyze.dataDescription.outputFeature.numeric.Rd │ ├── Analyze.dataDescription.outputFeature.text.Rd │ ├── Analyze.modelDescription.Rd │ ├── Analyze.modelDescription.confusionMatrix.Rd │ ├── Analyze.modelDescription.confusionMatrixRowTotals.Rd │ ├── Input.Rd │ ├── Input.input.Rd │ ├── Insert.Rd │ ├── Insert.trainingInstances.Rd │ ├── Insert2.Rd │ ├── Insert2.modelInfo.Rd │ ├── List.Rd │ ├── Output.Rd │ ├── Output.outputMulti.Rd │ ├── Update.Rd │ ├── hostedmodels.predict.Rd │ ├── is.NullOb.Rd │ ├── prediction_googleAuthR.Rd │ ├── rmNullObs.Rd │ ├── trainedmodels.analyze.Rd │ ├── trainedmodels.delete.Rd │ ├── trainedmodels.get.Rd │ ├── trainedmodels.insert.Rd │ ├── trainedmodels.list.Rd │ ├── trainedmodels.predict.Rd │ └── trainedmodels.update.Rd ├── googleproximitybeaconv1beta1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── proximitybeacon_functions.R │ └── proximitybeacon_objects.R ├── README.md ├── googleproximitybeaconv1beta1.auto.Rproj └── man │ ├── AdvertisedId.Rd │ ├── AttachmentInfo.Rd │ ├── Beacon.Rd │ ├── Beacon.properties.Rd │ ├── BeaconAttachment.Rd │ ├── BeaconInfo.Rd │ ├── Date.Rd │ ├── DeleteAttachmentsResponse.Rd │ ├── Diagnostics.Rd │ ├── Empty.Rd │ ├── EphemeralIdRegistration.Rd │ ├── EphemeralIdRegistrationParams.Rd │ ├── GetInfoForObservedBeaconsRequest.Rd │ ├── GetInfoForObservedBeaconsResponse.Rd │ ├── IndoorLevel.Rd │ ├── LatLng.Rd │ ├── ListBeaconAttachmentsResponse.Rd │ ├── ListBeaconsResponse.Rd │ ├── ListDiagnosticsResponse.Rd │ ├── ListNamespacesResponse.Rd │ ├── Namespace.Rd │ ├── Observation.Rd │ ├── beaconinfo.getforobserved.Rd │ ├── beacons.activate.Rd │ ├── beacons.deactivate.Rd │ ├── beacons.decommission.Rd │ ├── beacons.get.Rd │ ├── beacons.list.Rd │ ├── beacons.register.Rd │ ├── beacons.update.Rd │ ├── getEidparams.Rd │ ├── is.NullOb.Rd │ ├── namespaces.list.Rd │ ├── namespaces.update.Rd │ ├── proximitybeacon_googleAuthR.Rd │ └── rmNullObs.Rd ├── googlepubsubv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── pubsub_functions.R │ └── pubsub_objects.R ├── README.md ├── googlepubsubv1.auto.Rproj └── man │ ├── AcknowledgeRequest.Rd │ ├── Binding.Rd │ ├── Empty.Rd │ ├── ListSubscriptionsResponse.Rd │ ├── ListTopicSubscriptionsResponse.Rd │ ├── ListTopicsResponse.Rd │ ├── ModifyAckDeadlineRequest.Rd │ ├── ModifyPushConfigRequest.Rd │ ├── Policy.Rd │ ├── PublishRequest.Rd │ ├── PublishResponse.Rd │ ├── PubsubMessage.Rd │ ├── PubsubMessage.attributes.Rd │ ├── PullRequest.Rd │ ├── PullResponse.Rd │ ├── PushConfig.Rd │ ├── PushConfig.attributes.Rd │ ├── ReceivedMessage.Rd │ ├── SetIamPolicyRequest.Rd │ ├── Subscription.Rd │ ├── TestIamPermissionsRequest.Rd │ ├── TestIamPermissionsResponse.Rd │ ├── Topic.Rd │ ├── is.NullOb.Rd │ ├── projects.snapshots.getIamPolicy.Rd │ ├── projects.snapshots.setIamPolicy.Rd │ ├── projects.snapshots.testIamPermissions.Rd │ ├── projects.subscriptions.acknowledge.Rd │ ├── projects.subscriptions.create.Rd │ ├── projects.subscriptions.delete.Rd │ ├── projects.subscriptions.get.Rd │ ├── projects.subscriptions.getIamPolicy.Rd │ ├── projects.subscriptions.list.Rd │ ├── projects.subscriptions.modifyAckDeadline.Rd │ ├── projects.subscriptions.modifyPushConfig.Rd │ ├── projects.subscriptions.pull.Rd │ ├── projects.subscriptions.setIamPolicy.Rd │ ├── projects.subscriptions.testIamPermissions.Rd │ ├── projects.topics.create.Rd │ ├── projects.topics.delete.Rd │ ├── projects.topics.get.Rd │ ├── projects.topics.getIamPolicy.Rd │ ├── projects.topics.list.Rd │ ├── projects.topics.publish.Rd │ ├── projects.topics.setIamPolicy.Rd │ ├── projects.topics.testIamPermissions.Rd │ ├── pubsub_googleAuthR.Rd │ └── rmNullObs.Rd ├── googlepubsubv1beta1a.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── pubsub_functions.R │ └── pubsub_objects.R ├── README.md ├── googlepubsubv1beta1a.auto.Rproj └── man │ ├── AcknowledgeRequest.Rd │ ├── Empty.Rd │ ├── Label.Rd │ ├── ListSubscriptionsResponse.Rd │ ├── ListTopicsResponse.Rd │ ├── ModifyAckDeadlineRequest.Rd │ ├── ModifyPushConfigRequest.Rd │ ├── PublishBatchRequest.Rd │ ├── PublishBatchResponse.Rd │ ├── PublishRequest.Rd │ ├── PubsubEvent.Rd │ ├── PubsubMessage.Rd │ ├── PullBatchRequest.Rd │ ├── PullBatchResponse.Rd │ ├── PullRequest.Rd │ ├── PullResponse.Rd │ ├── PushConfig.Rd │ ├── Subscription.Rd │ ├── Topic.Rd │ ├── is.NullOb.Rd │ ├── pubsub_googleAuthR.Rd │ ├── rmNullObs.Rd │ ├── subscriptions.acknowledge.Rd │ ├── subscriptions.create.Rd │ ├── subscriptions.delete.Rd │ ├── subscriptions.get.Rd │ ├── subscriptions.list.Rd │ ├── subscriptions.modifyAckDeadline.Rd │ ├── subscriptions.modifyPushConfig.Rd │ ├── subscriptions.pull.Rd │ ├── subscriptions.pullBatch.Rd │ ├── topics.create.Rd │ ├── topics.delete.Rd │ ├── topics.get.Rd │ ├── topics.list.Rd │ ├── topics.publish.Rd │ └── topics.publishBatch.Rd ├── googlepubsubv1beta2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── pubsub_functions.R │ └── pubsub_objects.R ├── README.md ├── googlepubsubv1beta2.auto.Rproj └── man │ ├── AcknowledgeRequest.Rd │ ├── Binding.Rd │ ├── Empty.Rd │ ├── ListSubscriptionsResponse.Rd │ ├── ListTopicSubscriptionsResponse.Rd │ ├── ListTopicsResponse.Rd │ ├── ModifyAckDeadlineRequest.Rd │ ├── ModifyPushConfigRequest.Rd │ ├── Policy.Rd │ ├── PublishRequest.Rd │ ├── PublishResponse.Rd │ ├── PubsubMessage.Rd │ ├── PubsubMessage.attributes.Rd │ ├── PullRequest.Rd │ ├── PullResponse.Rd │ ├── PushConfig.Rd │ ├── PushConfig.attributes.Rd │ ├── ReceivedMessage.Rd │ ├── SetIamPolicyRequest.Rd │ ├── Subscription.Rd │ ├── TestIamPermissionsRequest.Rd │ ├── TestIamPermissionsResponse.Rd │ ├── Topic.Rd │ ├── is.NullOb.Rd │ ├── projects.subscriptions.acknowledge.Rd │ ├── projects.subscriptions.create.Rd │ ├── projects.subscriptions.delete.Rd │ ├── projects.subscriptions.get.Rd │ ├── projects.subscriptions.getIamPolicy.Rd │ ├── projects.subscriptions.list.Rd │ ├── projects.subscriptions.modifyAckDeadline.Rd │ ├── projects.subscriptions.modifyPushConfig.Rd │ ├── projects.subscriptions.pull.Rd │ ├── projects.subscriptions.setIamPolicy.Rd │ ├── projects.subscriptions.testIamPermissions.Rd │ ├── projects.topics.create.Rd │ ├── projects.topics.delete.Rd │ ├── projects.topics.get.Rd │ ├── projects.topics.getIamPolicy.Rd │ ├── projects.topics.list.Rd │ ├── projects.topics.publish.Rd │ ├── projects.topics.setIamPolicy.Rd │ ├── projects.topics.testIamPermissions.Rd │ ├── pubsub_googleAuthR.Rd │ └── rmNullObs.Rd ├── googleqpxExpressv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── qpxExpress_functions.R │ └── qpxExpress_objects.R ├── README.md ├── googleqpxExpressv1.auto.Rproj └── man │ ├── AircraftData.Rd │ ├── AirportData.Rd │ ├── BagDescriptor.Rd │ ├── CarrierData.Rd │ ├── CityData.Rd │ ├── Data.Rd │ ├── FareInfo.Rd │ ├── FlightInfo.Rd │ ├── FreeBaggageAllowance.Rd │ ├── LegInfo.Rd │ ├── PassengerCounts.Rd │ ├── PricingInfo.Rd │ ├── SegmentInfo.Rd │ ├── SegmentPricing.Rd │ ├── SliceInfo.Rd │ ├── SliceInput.Rd │ ├── TaxData.Rd │ ├── TaxInfo.Rd │ ├── TimeOfDayRange.Rd │ ├── TripOption.Rd │ ├── TripOptionsRequest.Rd │ ├── TripOptionsResponse.Rd │ ├── TripsSearchRequest.Rd │ ├── TripsSearchResponse.Rd │ ├── is.NullOb.Rd │ ├── qpxExpress_googleAuthR.Rd │ ├── rmNullObs.Rd │ └── trips.search.Rd ├── googlereplicapoolupdaterv1beta1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── replicapoolupdater_functions.R │ └── replicapoolupdater_objects.R ├── README.md ├── googlereplicapoolupdaterv1beta1.auto.Rproj └── man │ ├── InstanceUpdate.Rd │ ├── InstanceUpdate.error.Rd │ ├── InstanceUpdate.error.errors.Rd │ ├── InstanceUpdateList.Rd │ ├── Operation.Rd │ ├── Operation.error.Rd │ ├── Operation.error.errors.Rd │ ├── Operation.warnings.Rd │ ├── Operation.warnings.data.Rd │ ├── OperationList.Rd │ ├── RollingUpdate.Rd │ ├── RollingUpdate.error.Rd │ ├── RollingUpdate.error.errors.Rd │ ├── RollingUpdate.policy.Rd │ ├── RollingUpdateList.Rd │ ├── is.NullOb.Rd │ ├── replicapoolupdater_googleAuthR.Rd │ ├── rmNullObs.Rd │ ├── rollingUpdates.cancel.Rd │ ├── rollingUpdates.get.Rd │ ├── rollingUpdates.insert.Rd │ ├── rollingUpdates.list.Rd │ ├── rollingUpdates.listInstanceUpdates.Rd │ ├── rollingUpdates.pause.Rd │ ├── rollingUpdates.resume.Rd │ ├── rollingUpdates.rollback.Rd │ ├── zoneOperations.get.Rd │ └── zoneOperations.list.Rd ├── googlereplicapoolv1beta1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── replicapool_functions.R │ └── replicapool_objects.R ├── README.md ├── googlereplicapoolv1beta1.auto.Rproj └── man │ ├── AccessConfig.Rd │ ├── Action.Rd │ ├── DiskAttachment.Rd │ ├── EnvVariable.Rd │ ├── ExistingDisk.Rd │ ├── HealthCheck.Rd │ ├── Label.Rd │ ├── Metadata.Rd │ ├── MetadataItem.Rd │ ├── NetworkInterface.Rd │ ├── NewDisk.Rd │ ├── NewDiskInitializeParams.Rd │ ├── Pool.Rd │ ├── PoolsDeleteRequest.Rd │ ├── PoolsListResponse.Rd │ ├── Replica.Rd │ ├── ReplicaStatus.Rd │ ├── ReplicasDeleteRequest.Rd │ ├── ReplicasListResponse.Rd │ ├── ServiceAccount.Rd │ ├── Tag.Rd │ ├── Template.Rd │ ├── VmParams.Rd │ ├── is.NullOb.Rd │ ├── pools.delete.Rd │ ├── pools.get.Rd │ ├── pools.insert.Rd │ ├── pools.list.Rd │ ├── pools.resize.Rd │ ├── pools.updatetemplate.Rd │ ├── replicapool_googleAuthR.Rd │ ├── replicas.delete.Rd │ ├── replicas.get.Rd │ ├── replicas.list.Rd │ ├── replicas.restart.Rd │ └── rmNullObs.Rd ├── googlereplicapoolv1beta2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── replicapool_functions.R │ └── replicapool_objects.R ├── README.md ├── googlereplicapoolv1beta2.auto.Rproj └── man │ ├── InstanceGroupManager.Rd │ ├── InstanceGroupManagerList.Rd │ ├── InstanceGroupManagersAbandonInstancesRequest.Rd │ ├── InstanceGroupManagersDeleteInstancesRequest.Rd │ ├── InstanceGroupManagersRecreateInstancesRequest.Rd │ ├── InstanceGroupManagersSetInstanceTemplateRequest.Rd │ ├── InstanceGroupManagersSetTargetPoolsRequest.Rd │ ├── Operation.Rd │ ├── Operation.error.Rd │ ├── Operation.error.errors.Rd │ ├── Operation.warnings.Rd │ ├── Operation.warnings.data.Rd │ ├── OperationList.Rd │ ├── ReplicaPoolAutoHealingPolicy.Rd │ ├── instanceGroupManagers.abandonInstances.Rd │ ├── instanceGroupManagers.delete.Rd │ ├── instanceGroupManagers.deleteInstances.Rd │ ├── instanceGroupManagers.get.Rd │ ├── instanceGroupManagers.insert.Rd │ ├── instanceGroupManagers.list.Rd │ ├── instanceGroupManagers.recreateInstances.Rd │ ├── instanceGroupManagers.resize.Rd │ ├── instanceGroupManagers.setInstanceTemplate.Rd │ ├── instanceGroupManagers.setTargetPools.Rd │ ├── is.NullOb.Rd │ ├── replicapool_googleAuthR.Rd │ ├── rmNullObs.Rd │ ├── zoneOperations.get.Rd │ └── zoneOperations.list.Rd ├── googleresellerv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── reseller_functions.R │ └── reseller_objects.R ├── README.md ├── googleresellerv1.auto.Rproj └── man │ ├── Address.Rd │ ├── ChangePlanRequest.Rd │ ├── Customer.Rd │ ├── RenewalSettings.Rd │ ├── ResellernotifyGetwatchdetailsResponse.Rd │ ├── ResellernotifyResource.Rd │ ├── Seats.Rd │ ├── Subscription.Rd │ ├── Subscription.plan.Rd │ ├── Subscription.plan.commitmentInterval.Rd │ ├── Subscription.transferInfo.Rd │ ├── Subscription.trialSettings.Rd │ ├── Subscriptions.Rd │ ├── customers.get.Rd │ ├── customers.insert.Rd │ ├── customers.patch.Rd │ ├── customers.update.Rd │ ├── is.NullOb.Rd │ ├── otify.getwatchdetails.Rd │ ├── otify.register.Rd │ ├── otify.unregister.Rd │ ├── reseller_googleAuthR.Rd │ ├── rmNullObs.Rd │ ├── subscriptions.activate.Rd │ ├── subscriptions.changePlan.Rd │ ├── subscriptions.changeRenewalSettings.Rd │ ├── subscriptions.changeSeats.Rd │ ├── subscriptions.delete.Rd │ ├── subscriptions.get.Rd │ ├── subscriptions.insert.Rd │ ├── subscriptions.list.Rd │ ├── subscriptions.startPaidService.Rd │ └── subscriptions.suspend.Rd ├── googleresourceviewsv1beta1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── resourceviews_functions.R │ └── resourceviews_objects.R ├── README.md ├── googleresourceviewsv1beta1.auto.Rproj └── man │ ├── Label.Rd │ ├── RegionViewsAddResourcesRequest.Rd │ ├── RegionViewsInsertResponse.Rd │ ├── RegionViewsListResourcesResponse.Rd │ ├── RegionViewsListResponse.Rd │ ├── RegionViewsRemoveResourcesRequest.Rd │ ├── ResourceView.Rd │ ├── ZoneViewsAddResourcesRequest.Rd │ ├── ZoneViewsInsertResponse.Rd │ ├── ZoneViewsListResourcesResponse.Rd │ ├── ZoneViewsListResponse.Rd │ ├── ZoneViewsRemoveResourcesRequest.Rd │ ├── is.NullOb.Rd │ ├── regionViews.addresources.Rd │ ├── regionViews.delete.Rd │ ├── regionViews.get.Rd │ ├── regionViews.insert.Rd │ ├── regionViews.list.Rd │ ├── regionViews.listresources.Rd │ ├── regionViews.removeresources.Rd │ ├── resourceviews_googleAuthR.Rd │ ├── rmNullObs.Rd │ ├── zoneViews.addresources.Rd │ ├── zoneViews.delete.Rd │ ├── zoneViews.get.Rd │ ├── zoneViews.insert.Rd │ ├── zoneViews.list.Rd │ ├── zoneViews.listresources.Rd │ └── zoneViews.removeresources.Rd ├── googleresourceviewsv1beta2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── resourceviews_functions.R │ └── resourceviews_objects.R ├── README.md ├── googleresourceviewsv1beta2.auto.Rproj └── man │ ├── Label.Rd │ ├── ListResourceResponseItem.Rd │ ├── ListResourceResponseItem.endpoints.Rd │ ├── Operation.Rd │ ├── Operation.error.Rd │ ├── Operation.error.errors.Rd │ ├── Operation.warnings.Rd │ ├── Operation.warnings.data.Rd │ ├── OperationList.Rd │ ├── ResourceView.Rd │ ├── ServiceEndpoint.Rd │ ├── ZoneViewsAddResourcesRequest.Rd │ ├── ZoneViewsGetServiceResponse.Rd │ ├── ZoneViewsList.Rd │ ├── ZoneViewsListResourcesResponse.Rd │ ├── ZoneViewsRemoveResourcesRequest.Rd │ ├── ZoneViewsSetServiceRequest.Rd │ ├── is.NullOb.Rd │ ├── resourceviews_googleAuthR.Rd │ ├── rmNullObs.Rd │ ├── zoneOperations.get.Rd │ ├── zoneOperations.list.Rd │ ├── zoneViews.addResources.Rd │ ├── zoneViews.delete.Rd │ ├── zoneViews.get.Rd │ ├── zoneViews.getService.Rd │ ├── zoneViews.insert.Rd │ ├── zoneViews.list.Rd │ ├── zoneViews.listResources.Rd │ ├── zoneViews.removeResources.Rd │ └── zoneViews.setService.Rd ├── googleruntimeconfigv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── runtimeconfig_functions.R │ └── runtimeconfig_objects.R ├── README.md ├── googleruntimeconfigv1.auto.Rproj └── man │ ├── CancelOperationRequest.Rd │ ├── Empty.Rd │ ├── ListOperationsResponse.Rd │ ├── Operation.Rd │ ├── Operation.metadata.Rd │ ├── Operation.response.Rd │ ├── Status.Rd │ ├── is.NullOb.Rd │ ├── operations.cancel.Rd │ ├── operations.delete.Rd │ ├── operations.list.Rd │ ├── rmNullObs.Rd │ └── runtimeconfig_googleAuthR.Rd ├── googleruntimeconfigv1beta1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── runtimeconfig_functions.R │ └── runtimeconfig_objects.R ├── README.md ├── googleruntimeconfigv1beta1.auto.Rproj └── man │ ├── Binding.Rd │ ├── Cardinality.Rd │ ├── Empty.Rd │ ├── EndCondition.Rd │ ├── ListConfigsResponse.Rd │ ├── ListVariablesResponse.Rd │ ├── ListWaitersResponse.Rd │ ├── Operation.Rd │ ├── Operation.metadata.Rd │ ├── Operation.response.Rd │ ├── Policy.Rd │ ├── RuntimeConfig.Rd │ ├── SetIamPolicyRequest.Rd │ ├── Status.Rd │ ├── TestIamPermissionsRequest.Rd │ ├── TestIamPermissionsResponse.Rd │ ├── Variable.Rd │ ├── Waiter.Rd │ ├── WatchVariableRequest.Rd │ ├── is.NullOb.Rd │ ├── projects.configs.create.Rd │ ├── projects.configs.delete.Rd │ ├── projects.configs.get.Rd │ ├── projects.configs.getIamPolicy.Rd │ ├── projects.configs.list.Rd │ ├── projects.configs.setIamPolicy.Rd │ ├── projects.configs.testIamPermissions.Rd │ ├── projects.configs.update.Rd │ ├── rmNullObs.Rd │ └── runtimeconfig_googleAuthR.Rd ├── googlesafebrowsingv4.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── safebrowsing_functions.R │ └── safebrowsing_objects.R ├── README.md ├── googlesafebrowsingv4.auto.Rproj └── man │ ├── Checksum.Rd │ ├── ClientInfo.Rd │ ├── Constraints.Rd │ ├── FetchThreatListUpdatesRequest.Rd │ ├── FetchThreatListUpdatesResponse.Rd │ ├── FindFullHashesRequest.Rd │ ├── FindFullHashesResponse.Rd │ ├── FindThreatMatchesRequest.Rd │ ├── FindThreatMatchesResponse.Rd │ ├── ListThreatListsResponse.Rd │ ├── ListUpdateRequest.Rd │ ├── ListUpdateResponse.Rd │ ├── MetadataEntry.Rd │ ├── RawHashes.Rd │ ├── RawIndices.Rd │ ├── RiceDeltaEncoding.Rd │ ├── ThreatEntry.Rd │ ├── ThreatEntryMetadata.Rd │ ├── ThreatEntrySet.Rd │ ├── ThreatInfo.Rd │ ├── ThreatListDescriptor.Rd │ ├── ThreatMatch.Rd │ ├── fullHashes.find.Rd │ ├── is.NullOb.Rd │ ├── rmNullObs.Rd │ ├── safebrowsing_googleAuthR.Rd │ ├── threatListUpdates.fetch.Rd │ ├── threatLists.list.Rd │ └── threatMatches.find.Rd ├── googlescriptv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── script_functions.R │ └── script_objects.R ├── README.md ├── googlescriptv1.auto.Rproj └── man │ ├── ExecutionError.Rd │ ├── ExecutionRequest.Rd │ ├── ExecutionResponse.Rd │ ├── Operation.Rd │ ├── Operation.metadata.Rd │ ├── Operation.response.Rd │ ├── ScriptStackTraceElement.Rd │ ├── Status.Rd │ ├── is.NullOb.Rd │ ├── rmNullObs.Rd │ └── script_googleAuthR.Rd ├── googlesearchconsolev1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── searchconsole_functions.R │ └── searchconsole_objects.R ├── README.md ├── googlesearchconsolev1.auto.Rproj └── man │ ├── BlockedResource.Rd │ ├── Image.Rd │ ├── MobileFriendlyIssue.Rd │ ├── ResourceIssue.Rd │ ├── RunMobileFriendlyTestRequest.Rd │ ├── RunMobileFriendlyTestResponse.Rd │ ├── TestStatus.Rd │ ├── is.NullOb.Rd │ ├── rmNullObs.Rd │ ├── searchconsole_googleAuthR.Rd │ └── urlTestingTools.mobileFriendlyTest.run.Rd ├── googleservicecontrolv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── servicecontrol_functions.R │ └── servicecontrol_objects.R ├── README.md ├── googleservicecontrolv1.auto.Rproj └── man │ ├── AllocateQuotaRequest.Rd │ ├── AllocateQuotaResponse.Rd │ ├── AuditLog.Rd │ ├── AuditLog.request.Rd │ ├── AuditLog.response.Rd │ ├── AuditLog.serviceData.Rd │ ├── AuthenticationInfo.Rd │ ├── AuthorizationInfo.Rd │ ├── CheckError.Rd │ ├── CheckInfo.Rd │ ├── CheckRequest.Rd │ ├── CheckResponse.Rd │ ├── Distribution.Rd │ ├── EndReconciliationRequest.Rd │ ├── EndReconciliationResponse.Rd │ ├── ExplicitBuckets.Rd │ ├── ExponentialBuckets.Rd │ ├── LinearBuckets.Rd │ ├── LogEntry.Rd │ ├── LogEntry.labels.Rd │ ├── LogEntry.protoPayload.Rd │ ├── LogEntry.structPayload.Rd │ ├── MetricValue.Rd │ ├── MetricValue.labels.Rd │ ├── MetricValueSet.Rd │ ├── Money.Rd │ ├── Operation.Rd │ ├── Operation.labels.Rd │ ├── Operation.userLabels.Rd │ ├── QuotaError.Rd │ ├── QuotaInfo.Rd │ ├── QuotaInfo.quotaConsumed.Rd │ ├── QuotaOperation.Rd │ ├── QuotaOperation.labels.Rd │ ├── QuotaProperties.Rd │ ├── QuotaProperties.limitByIds.Rd │ ├── ReleaseQuotaRequest.Rd │ ├── ReleaseQuotaResponse.Rd │ ├── ReportError.Rd │ ├── ReportInfo.Rd │ ├── ReportRequest.Rd │ ├── ReportResponse.Rd │ ├── RequestMetadata.Rd │ ├── StartReconciliationRequest.Rd │ ├── StartReconciliationResponse.Rd │ ├── Status.Rd │ ├── is.NullOb.Rd │ ├── rmNullObs.Rd │ ├── servicecontrol_googleAuthR.Rd │ ├── services.allocateQuota.Rd │ ├── services.check.Rd │ ├── services.endReconciliation.Rd │ ├── services.releaseQuota.Rd │ ├── services.report.Rd │ └── services.startReconciliation.Rd ├── googleservicemanagementv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── servicemanagement_functions.R │ └── servicemanagement_objects.R ├── README.md ├── googleservicemanagementv1.auto.Rproj └── man │ ├── Advice.Rd │ ├── Api.Rd │ ├── AuditConfig.Rd │ ├── AuditLogConfig.Rd │ ├── AuthProvider.Rd │ ├── AuthRequirement.Rd │ ├── Authentication.Rd │ ├── AuthenticationRule.Rd │ ├── AuthorizationConfig.Rd │ ├── Backend.Rd │ ├── BackendRule.Rd │ ├── Binding.Rd │ ├── ChangeReport.Rd │ ├── CloudAuditOptions.Rd │ ├── Condition.Rd │ ├── ConfigChange.Rd │ ├── ConfigFile.Rd │ ├── ConfigRef.Rd │ ├── ConfigSource.Rd │ ├── Context.Rd │ ├── ContextRule.Rd │ ├── Control.Rd │ ├── CounterOptions.Rd │ ├── CustomError.Rd │ ├── CustomErrorRule.Rd │ ├── CustomHttpPattern.Rd │ ├── DataAccessOptions.Rd │ ├── DeleteServiceStrategy.Rd │ ├── Diagnostic.Rd │ ├── DisableServiceRequest.Rd │ ├── Documentation.Rd │ ├── DocumentationRule.Rd │ ├── EnableServiceRequest.Rd │ ├── Endpoint.Rd │ ├── Enum.Rd │ ├── EnumValue.Rd │ ├── Experimental.Rd │ ├── Field.Rd │ ├── GenerateConfigReportRequest.Rd │ ├── GenerateConfigReportRequest.newConfig.Rd │ ├── GenerateConfigReportRequest.oldConfig.Rd │ ├── GenerateConfigReportResponse.Rd │ ├── GetIamPolicyRequest.Rd │ ├── Http.Rd │ ├── HttpRule.Rd │ ├── LabelDescriptor.Rd │ ├── ListServiceConfigsResponse.Rd │ ├── ListServiceRolloutsResponse.Rd │ ├── ListServicesResponse.Rd │ ├── LogConfig.Rd │ ├── LogDescriptor.Rd │ ├── Logging.Rd │ ├── LoggingDestination.Rd │ ├── ManagedService.Rd │ ├── MediaDownload.Rd │ ├── MediaUpload.Rd │ ├── Method.Rd │ ├── MetricDescriptor.Rd │ ├── Mixin.Rd │ ├── MonitoredResourceDescriptor.Rd │ ├── Monitoring.Rd │ ├── MonitoringDestination.Rd │ ├── OAuthRequirements.Rd │ ├── Operation.Rd │ ├── Operation.metadata.Rd │ ├── Operation.response.Rd │ ├── OperationMetadata.Rd │ ├── Option.Rd │ ├── Option.value.Rd │ ├── Page.Rd │ ├── Policy.Rd │ ├── Rollout.Rd │ ├── Rule.Rd │ ├── Service.Rd │ ├── SetIamPolicyRequest.Rd │ ├── SourceContext.Rd │ ├── Status.Rd │ ├── Step.Rd │ ├── SubmitConfigSourceRequest.Rd │ ├── SubmitConfigSourceResponse.Rd │ ├── SystemParameter.Rd │ ├── SystemParameterRule.Rd │ ├── SystemParameters.Rd │ ├── TestIamPermissionsRequest.Rd │ ├── TestIamPermissionsResponse.Rd │ ├── TrafficPercentStrategy.Rd │ ├── TrafficPercentStrategy.percentages.Rd │ ├── Type.Rd │ ├── UndeleteServiceResponse.Rd │ ├── Usage.Rd │ ├── UsageRule.Rd │ ├── Visibility.Rd │ ├── VisibilityRule.Rd │ ├── is.NullOb.Rd │ ├── operations.get.Rd │ ├── rmNullObs.Rd │ ├── servicemanagement_googleAuthR.Rd │ ├── services.create.Rd │ ├── services.delete.Rd │ ├── services.disable.Rd │ ├── services.enable.Rd │ ├── services.generateConfigReport.Rd │ ├── services.get.Rd │ ├── services.getConfig.Rd │ ├── services.getIamPolicy.Rd │ ├── services.list.Rd │ ├── services.setIamPolicy.Rd │ ├── services.testIamPermissions.Rd │ └── services.undelete.Rd ├── googleserviceuserv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── serviceuser_functions.R │ └── serviceuser_objects.R ├── README.md ├── googleserviceuserv1.auto.Rproj └── man │ ├── Api.Rd │ ├── AuthProvider.Rd │ ├── AuthRequirement.Rd │ ├── Authentication.Rd │ ├── AuthenticationRule.Rd │ ├── AuthorizationConfig.Rd │ ├── Backend.Rd │ ├── BackendRule.Rd │ ├── Context.Rd │ ├── ContextRule.Rd │ ├── Control.Rd │ ├── CustomError.Rd │ ├── CustomErrorRule.Rd │ ├── CustomHttpPattern.Rd │ ├── DisableServiceRequest.Rd │ ├── Documentation.Rd │ ├── DocumentationRule.Rd │ ├── EnableServiceRequest.Rd │ ├── Endpoint.Rd │ ├── Enum.Rd │ ├── EnumValue.Rd │ ├── Experimental.Rd │ ├── Field.Rd │ ├── Http.Rd │ ├── HttpRule.Rd │ ├── LabelDescriptor.Rd │ ├── ListEnabledServicesResponse.Rd │ ├── LogDescriptor.Rd │ ├── Logging.Rd │ ├── LoggingDestination.Rd │ ├── MediaDownload.Rd │ ├── MediaUpload.Rd │ ├── Method.Rd │ ├── MetricDescriptor.Rd │ ├── Mixin.Rd │ ├── MonitoredResourceDescriptor.Rd │ ├── Monitoring.Rd │ ├── MonitoringDestination.Rd │ ├── OAuthRequirements.Rd │ ├── Operation.Rd │ ├── Operation.metadata.Rd │ ├── Operation.response.Rd │ ├── Option.Rd │ ├── Option.value.Rd │ ├── Page.Rd │ ├── PublishedService.Rd │ ├── SearchServicesResponse.Rd │ ├── Service.Rd │ ├── SourceContext.Rd │ ├── Status.Rd │ ├── SystemParameter.Rd │ ├── SystemParameterRule.Rd │ ├── SystemParameters.Rd │ ├── Type.Rd │ ├── Usage.Rd │ ├── UsageRule.Rd │ ├── Visibility.Rd │ ├── VisibilityRule.Rd │ ├── is.NullOb.Rd │ ├── projects.services.disable.Rd │ ├── projects.services.enable.Rd │ ├── projects.services.list.Rd │ ├── rmNullObs.Rd │ ├── services.search.Rd │ └── serviceuser_googleAuthR.Rd ├── googlesheetsv4.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── sheets_functions.R │ └── sheets_objects.R ├── README.md ├── googlesheetsv4.auto.Rproj └── man │ ├── AddBandingRequest.Rd │ ├── AddBandingResponse.Rd │ ├── AddChartRequest.Rd │ ├── AddChartResponse.Rd │ ├── AddConditionalFormatRuleRequest.Rd │ ├── AddFilterViewRequest.Rd │ ├── AddFilterViewResponse.Rd │ ├── AddNamedRangeRequest.Rd │ ├── AddNamedRangeResponse.Rd │ ├── AddProtectedRangeRequest.Rd │ ├── AddProtectedRangeResponse.Rd │ ├── AddSheetRequest.Rd │ ├── AddSheetResponse.Rd │ ├── AppendCellsRequest.Rd │ ├── AppendDimensionRequest.Rd │ ├── AppendValuesResponse.Rd │ ├── AutoFillRequest.Rd │ ├── AutoResizeDimensionsRequest.Rd │ ├── BandedRange.Rd │ ├── BandingProperties.Rd │ ├── BasicChartAxis.Rd │ ├── BasicChartDomain.Rd │ ├── BasicChartSeries.Rd │ ├── BasicChartSpec.Rd │ ├── BasicFilter.Rd │ ├── BasicFilter.criteria.Rd │ ├── BatchClearValuesRequest.Rd │ ├── BatchClearValuesResponse.Rd │ ├── BatchGetValuesResponse.Rd │ ├── BatchUpdateSpreadsheetRequest.Rd │ ├── BatchUpdateSpreadsheetResponse.Rd │ ├── BatchUpdateValuesRequest.Rd │ ├── BatchUpdateValuesResponse.Rd │ ├── BooleanCondition.Rd │ ├── BooleanRule.Rd │ ├── Border.Rd │ ├── Borders.Rd │ ├── CellData.Rd │ ├── CellFormat.Rd │ ├── ChartData.Rd │ ├── ChartSourceRange.Rd │ ├── ChartSpec.Rd │ ├── ClearBasicFilterRequest.Rd │ ├── ClearValuesRequest.Rd │ ├── ClearValuesResponse.Rd │ ├── Color.Rd │ ├── ConditionValue.Rd │ ├── ConditionalFormatRule.Rd │ ├── CopyPasteRequest.Rd │ ├── CopySheetToAnotherSpreadsheetRequest.Rd │ ├── CutPasteRequest.Rd │ ├── DataValidationRule.Rd │ ├── DeleteBandingRequest.Rd │ ├── DeleteConditionalFormatRuleRequest.Rd │ ├── DeleteConditionalFormatRuleResponse.Rd │ ├── DeleteDimensionRequest.Rd │ ├── DeleteEmbeddedObjectRequest.Rd │ ├── DeleteFilterViewRequest.Rd │ ├── DeleteNamedRangeRequest.Rd │ ├── DeleteProtectedRangeRequest.Rd │ ├── DeleteRangeRequest.Rd │ ├── DeleteSheetRequest.Rd │ ├── DimensionProperties.Rd │ ├── DimensionRange.Rd │ ├── DuplicateFilterViewRequest.Rd │ ├── DuplicateFilterViewResponse.Rd │ ├── DuplicateSheetRequest.Rd │ ├── DuplicateSheetResponse.Rd │ ├── Editors.Rd │ ├── EmbeddedChart.Rd │ ├── EmbeddedObjectPosition.Rd │ ├── ErrorValue.Rd │ ├── ExtendedValue.Rd │ ├── FilterCriteria.Rd │ ├── FilterView.Rd │ ├── FilterView.criteria.Rd │ ├── FindReplaceRequest.Rd │ ├── FindReplaceResponse.Rd │ ├── GradientRule.Rd │ ├── GridCoordinate.Rd │ ├── GridData.Rd │ ├── GridProperties.Rd │ ├── GridRange.Rd │ ├── InsertDimensionRequest.Rd │ ├── InsertRangeRequest.Rd │ ├── InterpolationPoint.Rd │ ├── IterativeCalculationSettings.Rd │ ├── MergeCellsRequest.Rd │ ├── MoveDimensionRequest.Rd │ ├── NamedRange.Rd │ ├── NumberFormat.Rd │ ├── OverlayPosition.Rd │ ├── Padding.Rd │ ├── PasteDataRequest.Rd │ ├── PieChartSpec.Rd │ ├── PivotFilterCriteria.Rd │ ├── PivotGroup.Rd │ ├── PivotGroupSortValueBucket.Rd │ ├── PivotGroupValueMetadata.Rd │ ├── PivotTable.Rd │ ├── PivotTable.criteria.Rd │ ├── PivotValue.Rd │ ├── ProtectedRange.Rd │ ├── RepeatCellRequest.Rd │ ├── Request.Rd │ ├── Response.Rd │ ├── RowData.Rd │ ├── SetBasicFilterRequest.Rd │ ├── SetDataValidationRequest.Rd │ ├── Sheet.Rd │ ├── SheetProperties.Rd │ ├── SortRangeRequest.Rd │ ├── SortSpec.Rd │ ├── SourceAndDestination.Rd │ ├── Spreadsheet.Rd │ ├── SpreadsheetProperties.Rd │ ├── TextFormat.Rd │ ├── TextFormatRun.Rd │ ├── TextToColumnsRequest.Rd │ ├── UnmergeCellsRequest.Rd │ ├── UpdateBandingRequest.Rd │ ├── UpdateBordersRequest.Rd │ ├── UpdateCellsRequest.Rd │ ├── UpdateChartSpecRequest.Rd │ ├── UpdateConditionalFormatRuleRequest.Rd │ ├── UpdateConditionalFormatRuleResponse.Rd │ ├── UpdateDimensionPropertiesRequest.Rd │ ├── UpdateEmbeddedObjectPositionRequest.Rd │ ├── UpdateEmbeddedObjectPositionResponse.Rd │ ├── UpdateFilterViewRequest.Rd │ ├── UpdateNamedRangeRequest.Rd │ ├── UpdateProtectedRangeRequest.Rd │ ├── UpdateSheetPropertiesRequest.Rd │ ├── UpdateSpreadsheetPropertiesRequest.Rd │ ├── UpdateValuesResponse.Rd │ ├── ValueRange.Rd │ ├── is.NullOb.Rd │ ├── rmNullObs.Rd │ ├── sheets_googleAuthR.Rd │ ├── spreadbatchUpdate.Rd │ ├── spreadcreate.Rd │ └── spreadget.Rd ├── googlesiteVerificationv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── siteVerification_functions.R │ └── siteVerification_objects.R ├── README.md ├── googlesiteVerificationv1.auto.Rproj └── man │ ├── SiteVerificationWebResourceGettokenRequest.Rd │ ├── SiteVerificationWebResourceGettokenRequest.site.Rd │ ├── SiteVerificationWebResourceGettokenResponse.Rd │ ├── SiteVerificationWebResourceListResponse.Rd │ ├── SiteVerificationWebResourceResource.Rd │ ├── SiteVerificationWebResourceResource.site.Rd │ ├── is.NullOb.Rd │ ├── rmNullObs.Rd │ ├── siteVerification_googleAuthR.Rd │ ├── webResource.delete.Rd │ ├── webResource.get.Rd │ ├── webResource.getToken.Rd │ ├── webResource.insert.Rd │ ├── webResource.list.Rd │ ├── webResource.patch.Rd │ └── webResource.update.Rd ├── googleslidesv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── slides_functions.R │ └── slides_objects.R ├── README.md ├── googleslidesv1.auto.Rproj └── man │ ├── AffineTransform.Rd │ ├── AutoText.Rd │ ├── BatchUpdatePresentationRequest.Rd │ ├── BatchUpdatePresentationResponse.Rd │ ├── Bullet.Rd │ ├── ColorScheme.Rd │ ├── ColorStop.Rd │ ├── CreateImageRequest.Rd │ ├── CreateImageResponse.Rd │ ├── CreateLineRequest.Rd │ ├── CreateLineResponse.Rd │ ├── CreateParagraphBulletsRequest.Rd │ ├── CreateShapeRequest.Rd │ ├── CreateShapeResponse.Rd │ ├── CreateSheetsChartRequest.Rd │ ├── CreateSheetsChartResponse.Rd │ ├── CreateSlideRequest.Rd │ ├── CreateSlideResponse.Rd │ ├── CreateTableRequest.Rd │ ├── CreateTableResponse.Rd │ ├── CreateVideoRequest.Rd │ ├── CreateVideoResponse.Rd │ ├── CropProperties.Rd │ ├── DeleteObjectRequest.Rd │ ├── DeleteParagraphBulletsRequest.Rd │ ├── DeleteTableColumnRequest.Rd │ ├── DeleteTableRowRequest.Rd │ ├── DeleteTextRequest.Rd │ ├── Dimension.Rd │ ├── DuplicateObjectRequest.Rd │ ├── DuplicateObjectRequest.objectIds.Rd │ ├── DuplicateObjectResponse.Rd │ ├── Group.Rd │ ├── Image.Rd │ ├── ImageProperties.Rd │ ├── InsertTableColumnsRequest.Rd │ ├── InsertTableRowsRequest.Rd │ ├── InsertTextRequest.Rd │ ├── LayoutPlaceholderIdMapping.Rd │ ├── LayoutProperties.Rd │ ├── LayoutReference.Rd │ ├── Line.Rd │ ├── LineFill.Rd │ ├── LineProperties.Rd │ ├── Link.Rd │ ├── List.Rd │ ├── List.nestingLevel.Rd │ ├── NestingLevel.Rd │ ├── NotesProperties.Rd │ ├── OpaqueColor.Rd │ ├── OptionalColor.Rd │ ├── Outline.Rd │ ├── OutlineFill.Rd │ ├── Page.Rd │ ├── PageBackgroundFill.Rd │ ├── PageElement.Rd │ ├── PageElementProperties.Rd │ ├── PageProperties.Rd │ ├── ParagraphMarker.Rd │ ├── ParagraphStyle.Rd │ ├── Placeholder.Rd │ ├── Presentation.Rd │ ├── Range.Rd │ ├── Recolor.Rd │ ├── RefreshSheetsChartRequest.Rd │ ├── ReplaceAllShapesWithImageRequest.Rd │ ├── ReplaceAllShapesWithImageResponse.Rd │ ├── ReplaceAllShapesWithSheetsChartRequest.Rd │ ├── ReplaceAllShapesWithSheetsChartResponse.Rd │ ├── ReplaceAllTextRequest.Rd │ ├── ReplaceAllTextResponse.Rd │ ├── Request.Rd │ ├── Response.Rd │ ├── RgbColor.Rd │ ├── Shadow.Rd │ ├── Shape.Rd │ ├── ShapeBackgroundFill.Rd │ ├── ShapeProperties.Rd │ ├── SheetsChart.Rd │ ├── SheetsChartProperties.Rd │ ├── Size.Rd │ ├── SlideProperties.Rd │ ├── SolidFill.Rd │ ├── StretchedPictureFill.Rd │ ├── SubstringMatchCriteria.Rd │ ├── Table.Rd │ ├── TableCell.Rd │ ├── TableCellBackgroundFill.Rd │ ├── TableCellLocation.Rd │ ├── TableCellProperties.Rd │ ├── TableColumnProperties.Rd │ ├── TableRange.Rd │ ├── TableRow.Rd │ ├── TextContent.Rd │ ├── TextContent.lists.Rd │ ├── TextElement.Rd │ ├── TextRun.Rd │ ├── TextStyle.Rd │ ├── ThemeColorPair.Rd │ ├── UpdateImagePropertiesRequest.Rd │ ├── UpdateLinePropertiesRequest.Rd │ ├── UpdatePageElementTransformRequest.Rd │ ├── UpdatePagePropertiesRequest.Rd │ ├── UpdateParagraphStyleRequest.Rd │ ├── UpdateShapePropertiesRequest.Rd │ ├── UpdateSlidesPositionRequest.Rd │ ├── UpdateTableCellPropertiesRequest.Rd │ ├── UpdateTextStyleRequest.Rd │ ├── UpdateVideoPropertiesRequest.Rd │ ├── Video.Rd │ ├── VideoProperties.Rd │ ├── WordArt.Rd │ ├── is.NullOb.Rd │ ├── presentations.batchUpdate.Rd │ ├── presentations.create.Rd │ ├── presentations.get.Rd │ ├── rmNullObs.Rd │ └── slides_googleAuthR.Rd ├── googlesourcerepov1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── sourcerepo_functions.R │ └── sourcerepo_objects.R ├── README.md ├── googlesourcerepov1.auto.Rproj └── man │ ├── AuditConfig.Rd │ ├── AuditLogConfig.Rd │ ├── Binding.Rd │ ├── CloudAuditOptions.Rd │ ├── Condition.Rd │ ├── CounterOptions.Rd │ ├── DataAccessOptions.Rd │ ├── Empty.Rd │ ├── ListReposResponse.Rd │ ├── LogConfig.Rd │ ├── MirrorConfig.Rd │ ├── Policy.Rd │ ├── Repo.Rd │ ├── Rule.Rd │ ├── SetIamPolicyRequest.Rd │ ├── TestIamPermissionsRequest.Rd │ ├── TestIamPermissionsResponse.Rd │ ├── is.NullOb.Rd │ ├── projects.repos.create.Rd │ ├── projects.repos.delete.Rd │ ├── projects.repos.get.Rd │ ├── projects.repos.getIamPolicy.Rd │ ├── projects.repos.list.Rd │ ├── projects.repos.setIamPolicy.Rd │ ├── projects.repos.testIamPermissions.Rd │ ├── rmNullObs.Rd │ └── sourcerepo_googleAuthR.Rd ├── googlespannerv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── spanner_functions.R │ └── spanner_objects.R ├── README.md ├── googlespannerv1.auto.Rproj └── man │ ├── AuditConfig.Rd │ ├── AuditLogConfig.Rd │ ├── BeginTransactionRequest.Rd │ ├── Binding.Rd │ ├── ChildLink.Rd │ ├── CloudAuditOptions.Rd │ ├── CommitRequest.Rd │ ├── CommitResponse.Rd │ ├── Condition.Rd │ ├── CounterOptions.Rd │ ├── CreateDatabaseMetadata.Rd │ ├── CreateDatabaseRequest.Rd │ ├── CreateInstanceMetadata.Rd │ ├── CreateInstanceRequest.Rd │ ├── DataAccessOptions.Rd │ ├── Database.Rd │ ├── Delete.Rd │ ├── Empty.Rd │ ├── ExecuteSqlRequest.Rd │ ├── ExecuteSqlRequest.paramTypes.Rd │ ├── ExecuteSqlRequest.params.Rd │ ├── Field.Rd │ ├── GetDatabaseDdlResponse.Rd │ ├── GetIamPolicyRequest.Rd │ ├── Instance.Rd │ ├── Instance.labels.Rd │ ├── InstanceConfig.Rd │ ├── KeyRange.Rd │ ├── KeySet.Rd │ ├── ListDatabasesResponse.Rd │ ├── ListInstanceConfigsResponse.Rd │ ├── ListInstancesResponse.Rd │ ├── ListOperationsResponse.Rd │ ├── LogConfig.Rd │ ├── Mutation.Rd │ ├── Operation.Rd │ ├── Operation.metadata.Rd │ ├── Operation.response.Rd │ ├── PartialResultSet.Rd │ ├── PlanNode.Rd │ ├── PlanNode.executionStats.Rd │ ├── PlanNode.metadata.Rd │ ├── Policy.Rd │ ├── QueryPlan.Rd │ ├── ReadOnly.Rd │ ├── ReadRequest.Rd │ ├── ReadWrite.Rd │ ├── ResultSet.Rd │ ├── ResultSetMetadata.Rd │ ├── ResultSetStats.Rd │ ├── ResultSetStats.queryStats.Rd │ ├── RollbackRequest.Rd │ ├── Rule.Rd │ ├── Session.Rd │ ├── SetIamPolicyRequest.Rd │ ├── ShortRepresentation.Rd │ ├── ShortRepresentation.subqueries.Rd │ ├── Status.Rd │ ├── StructType.Rd │ ├── TestIamPermissionsRequest.Rd │ ├── TestIamPermissionsResponse.Rd │ ├── Transaction.Rd │ ├── TransactionOptions.Rd │ ├── TransactionSelector.Rd │ ├── Type.Rd │ ├── UpdateDatabaseDdlMetadata.Rd │ ├── UpdateDatabaseDdlRequest.Rd │ ├── UpdateInstanceMetadata.Rd │ ├── UpdateInstanceRequest.Rd │ ├── Write.Rd │ ├── is.NullOb.Rd │ ├── projects.instanceConfigs.get.Rd │ ├── projects.instanceConfigs.list.Rd │ ├── projects.instances.create.Rd │ ├── projects.instances.delete.Rd │ ├── projects.instances.get.Rd │ ├── projects.instances.getIamPolicy.Rd │ ├── projects.instances.list.Rd │ ├── projects.instances.patch.Rd │ ├── projects.instances.setIamPolicy.Rd │ ├── projects.instances.testIamPermissions.Rd │ ├── rmNullObs.Rd │ └── spanner_googleAuthR.Rd ├── googlespectrumv1explorer.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── spectrum_functions.R │ └── spectrum_objects.R ├── README.md ├── googlespectrumv1explorer.auto.Rproj └── man │ ├── AntennaCharacteristics.Rd │ ├── DatabaseSpec.Rd │ ├── DbUpdateSpec.Rd │ ├── DeviceCapabilities.Rd │ ├── DeviceDescriptor.Rd │ ├── DeviceOwner.Rd │ ├── DeviceValidity.Rd │ ├── EventTime.Rd │ ├── FrequencyRange.Rd │ ├── GeoLocation.Rd │ ├── GeoLocationEllipse.Rd │ ├── GeoLocationPoint.Rd │ ├── GeoLocationPolygon.Rd │ ├── GeoSpectrumSchedule.Rd │ ├── PawsGetSpectrumBatchRequest.Rd │ ├── PawsGetSpectrumBatchResponse.Rd │ ├── PawsGetSpectrumRequest.Rd │ ├── PawsGetSpectrumResponse.Rd │ ├── PawsInitRequest.Rd │ ├── PawsInitResponse.Rd │ ├── PawsNotifySpectrumUseRequest.Rd │ ├── PawsNotifySpectrumUseResponse.Rd │ ├── PawsRegisterRequest.Rd │ ├── PawsRegisterResponse.Rd │ ├── PawsVerifyDeviceRequest.Rd │ ├── PawsVerifyDeviceResponse.Rd │ ├── RulesetInfo.Rd │ ├── SpectrumMessage.Rd │ ├── SpectrumSchedule.Rd │ ├── Vcard.Rd │ ├── VcardAddress.Rd │ ├── VcardTelephone.Rd │ ├── VcardTypedText.Rd │ ├── is.NullOb.Rd │ ├── paws.getSpectrum.Rd │ ├── paws.getSpectrumBatch.Rd │ ├── paws.init.Rd │ ├── paws.notifySpectrumUse.Rd │ ├── paws.register.Rd │ ├── paws.verifyDevice.Rd │ ├── rmNullObs.Rd │ └── spectrum_googleAuthR.Rd ├── googlespeechv1beta1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── speech_functions.R │ └── speech_objects.R ├── README.md ├── googlespeechv1beta1.auto.Rproj └── man │ ├── AsyncRecognizeRequest.Rd │ ├── Empty.Rd │ ├── ListOperationsResponse.Rd │ ├── Operation.Rd │ ├── Operation.metadata.Rd │ ├── Operation.response.Rd │ ├── RecognitionAudio.Rd │ ├── RecognitionConfig.Rd │ ├── SpeechContext.Rd │ ├── SpeechRecognitionAlternative.Rd │ ├── SpeechRecognitionResult.Rd │ ├── Status.Rd │ ├── SyncRecognizeRequest.Rd │ ├── SyncRecognizeResponse.Rd │ ├── asyncrecognize.Rd │ ├── is.NullOb.Rd │ ├── operations.cancel.Rd │ ├── operations.delete.Rd │ ├── operations.get.Rd │ ├── operations.list.Rd │ ├── rmNullObs.Rd │ ├── speech_googleAuthR.Rd │ └── syncrecognize.Rd ├── googlesqladminv1beta3.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── sqladmin_functions.R │ └── sqladmin_objects.R ├── README.md ├── googlesqladminv1beta3.auto.Rproj └── man │ ├── BackupConfiguration.Rd │ ├── BackupRun.Rd │ ├── BackupRunsListResponse.Rd │ ├── BinLogCoordinates.Rd │ ├── CloneContext.Rd │ ├── DatabaseFlags.Rd │ ├── DatabaseInstance.Rd │ ├── ExportContext.Rd │ ├── Flag.Rd │ ├── FlagsListResponse.Rd │ ├── ImportContext.Rd │ ├── InstanceOperation.Rd │ ├── InstanceSetRootPasswordRequest.Rd │ ├── InstancesCloneRequest.Rd │ ├── InstancesCloneResponse.Rd │ ├── InstancesDeleteResponse.Rd │ ├── InstancesExportRequest.Rd │ ├── InstancesExportResponse.Rd │ ├── InstancesImportRequest.Rd │ ├── InstancesImportResponse.Rd │ ├── InstancesInsertResponse.Rd │ ├── InstancesListResponse.Rd │ ├── InstancesPromoteReplicaResponse.Rd │ ├── InstancesResetSslConfigResponse.Rd │ ├── InstancesRestartResponse.Rd │ ├── InstancesRestoreBackupResponse.Rd │ ├── InstancesSetRootPasswordResponse.Rd │ ├── InstancesUpdateResponse.Rd │ ├── IpConfiguration.Rd │ ├── IpMapping.Rd │ ├── LocationPreference.Rd │ ├── OperationError.Rd │ ├── OperationsListResponse.Rd │ ├── SetRootPasswordContext.Rd │ ├── Settings.Rd │ ├── SslCert.Rd │ ├── SslCertDetail.Rd │ ├── SslCertsDeleteResponse.Rd │ ├── SslCertsInsertRequest.Rd │ ├── SslCertsInsertResponse.Rd │ ├── SslCertsListResponse.Rd │ ├── Tier.Rd │ ├── TiersListResponse.Rd │ ├── is.NullOb.Rd │ ├── rmNullObs.Rd │ ├── sql.backupRuns.get.Rd │ ├── sql.backupRuns.list.Rd │ ├── sql.flags.list.Rd │ ├── sql.instances.clone.Rd │ ├── sql.instances.delete.Rd │ ├── sql.instances.export.Rd │ ├── sql.instances.get.Rd │ ├── sql.instances.import.Rd │ ├── sql.instances.insert.Rd │ ├── sql.instances.list.Rd │ ├── sql.instances.patch.Rd │ ├── sql.instances.promoteReplica.Rd │ ├── sql.instances.resetSslConfig.Rd │ ├── sql.instances.restart.Rd │ ├── sql.instances.restoreBackup.Rd │ ├── sql.instances.setRootPassword.Rd │ ├── sql.instances.update.Rd │ ├── sql.operations.get.Rd │ ├── sql.operations.list.Rd │ ├── sql.sslCerts.delete.Rd │ ├── sql.sslCerts.get.Rd │ ├── sql.sslCerts.insert.Rd │ ├── sql.sslCerts.list.Rd │ ├── sql.tiers.list.Rd │ └── sqladmin_googleAuthR.Rd ├── googlesqladminv1beta4.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── sqladmin_functions.R │ └── sqladmin_objects.R ├── README.md ├── googlesqladminv1beta4.auto.Rproj └── man │ ├── AclEntry.Rd │ ├── BackupConfiguration.Rd │ ├── BackupRun.Rd │ ├── BackupRunsListResponse.Rd │ ├── BinLogCoordinates.Rd │ ├── CloneContext.Rd │ ├── Database.Rd │ ├── DatabaseFlags.Rd │ ├── DatabaseInstance.Rd │ ├── DatabaseInstance.failoverReplica.Rd │ ├── DatabasesListResponse.Rd │ ├── ExportContext.Rd │ ├── ExportContext.csvExportOptions.Rd │ ├── ExportContext.sqlExportOptions.Rd │ ├── FailoverContext.Rd │ ├── Flag.Rd │ ├── FlagsListResponse.Rd │ ├── ImportContext.Rd │ ├── ImportContext.csvImportOptions.Rd │ ├── InstancesCloneRequest.Rd │ ├── InstancesExportRequest.Rd │ ├── InstancesFailoverRequest.Rd │ ├── InstancesImportRequest.Rd │ ├── InstancesListResponse.Rd │ ├── InstancesRestoreBackupRequest.Rd │ ├── InstancesTruncateLogRequest.Rd │ ├── IpConfiguration.Rd │ ├── IpMapping.Rd │ ├── Labels.Rd │ ├── LocationPreference.Rd │ ├── MaintenanceWindow.Rd │ ├── MySqlReplicaConfiguration.Rd │ ├── OnPremisesConfiguration.Rd │ ├── Operation.Rd │ ├── OperationError.Rd │ ├── OperationErrors.Rd │ ├── OperationsListResponse.Rd │ ├── ReplicaConfiguration.Rd │ ├── RestoreBackupContext.Rd │ ├── Settings.Rd │ ├── SslCert.Rd │ ├── SslCertDetail.Rd │ ├── SslCertsCreateEphemeralRequest.Rd │ ├── SslCertsInsertRequest.Rd │ ├── SslCertsInsertResponse.Rd │ ├── SslCertsListResponse.Rd │ ├── Tier.Rd │ ├── TiersListResponse.Rd │ ├── TruncateLogContext.Rd │ ├── User.Rd │ ├── UsersListResponse.Rd │ ├── is.NullOb.Rd │ ├── rmNullObs.Rd │ ├── sql.backupRuns.delete.Rd │ ├── sql.backupRuns.get.Rd │ ├── sql.backupRuns.insert.Rd │ ├── sql.backupRuns.list.Rd │ ├── sql.databases.delete.Rd │ ├── sql.databases.get.Rd │ ├── sql.databases.insert.Rd │ ├── sql.databases.list.Rd │ ├── sql.databases.patch.Rd │ ├── sql.databases.update.Rd │ ├── sql.flags.list.Rd │ ├── sql.instances.clone.Rd │ ├── sql.instances.delete.Rd │ ├── sql.instances.export.Rd │ ├── sql.instances.failover.Rd │ ├── sql.instances.get.Rd │ ├── sql.instances.import.Rd │ ├── sql.instances.insert.Rd │ ├── sql.instances.list.Rd │ ├── sql.instances.patch.Rd │ ├── sql.instances.promoteReplica.Rd │ ├── sql.instances.resetSslConfig.Rd │ ├── sql.instances.restart.Rd │ ├── sql.instances.restoreBackup.Rd │ ├── sql.instances.startReplica.Rd │ ├── sql.instances.stopReplica.Rd │ ├── sql.instances.truncateLog.Rd │ ├── sql.instances.update.Rd │ ├── sql.operations.get.Rd │ ├── sql.operations.list.Rd │ ├── sql.sslCerts.createEphemeral.Rd │ ├── sql.sslCerts.delete.Rd │ ├── sql.sslCerts.get.Rd │ ├── sql.sslCerts.insert.Rd │ ├── sql.sslCerts.list.Rd │ ├── sql.tiers.list.Rd │ ├── sql.users.delete.Rd │ ├── sql.users.insert.Rd │ ├── sql.users.list.Rd │ ├── sql.users.update.Rd │ └── sqladmin_googleAuthR.Rd ├── googlestoragetransferv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── storagetransfer_functions.R │ └── storagetransfer_objects.R ├── README.md ├── googlestoragetransferv1.auto.Rproj └── man │ ├── AwsAccessKey.Rd │ ├── AwsS3Data.Rd │ ├── Date.Rd │ ├── Empty.Rd │ ├── ErrorLogEntry.Rd │ ├── ErrorSummary.Rd │ ├── GcsData.Rd │ ├── GoogleServiceAccount.Rd │ ├── HttpData.Rd │ ├── ListOperationsResponse.Rd │ ├── ListTransferJobsResponse.Rd │ ├── ObjectConditions.Rd │ ├── Operation.Rd │ ├── Operation.metadata.Rd │ ├── Operation.response.Rd │ ├── PauseTransferOperationRequest.Rd │ ├── ResumeTransferOperationRequest.Rd │ ├── Schedule.Rd │ ├── Status.Rd │ ├── TimeOfDay.Rd │ ├── TransferCounters.Rd │ ├── TransferJob.Rd │ ├── TransferOperation.Rd │ ├── TransferOptions.Rd │ ├── TransferSpec.Rd │ ├── UpdateTransferJobRequest.Rd │ ├── getGoogleServiceAccount.Rd │ ├── googleServiceAccounts.get.Rd │ ├── is.NullOb.Rd │ ├── rmNullObs.Rd │ ├── storagetransfer_googleAuthR.Rd │ ├── transferJobs.create.Rd │ ├── transferJobs.get.Rd │ ├── transferJobs.list.Rd │ ├── transferJobs.patch.Rd │ ├── transferOperations.cancel.Rd │ ├── transferOperations.delete.Rd │ ├── transferOperations.get.Rd │ ├── transferOperations.list.Rd │ ├── transferOperations.pause.Rd │ └── transferOperations.resume.Rd ├── googlestoragev1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── storage_functions.R │ └── storage_objects.R ├── README.md ├── googlestoragev1.auto.Rproj └── man │ ├── Bucket.Rd │ ├── Bucket.cors.Rd │ ├── Bucket.lifecycle.Rd │ ├── Bucket.lifecycle.rule.Rd │ ├── Bucket.lifecycle.rule.action.Rd │ ├── Bucket.lifecycle.rule.condition.Rd │ ├── Bucket.logging.Rd │ ├── Bucket.owner.Rd │ ├── Bucket.versioning.Rd │ ├── Bucket.website.Rd │ ├── BucketAccessControl.Rd │ ├── BucketAccessControl.projectTeam.Rd │ ├── BucketAccessControls.Rd │ ├── Buckets.Rd │ ├── Channel.Rd │ ├── Channel.params.Rd │ ├── ComposeRequest.Rd │ ├── ComposeRequest.sourceObjects.Rd │ ├── ComposeRequest.sourceObjects.objectPreconditions.Rd │ ├── Object.Rd │ ├── Object.customerEncryption.Rd │ ├── Object.metadata.Rd │ ├── Object.owner.Rd │ ├── ObjectAccessControl.Rd │ ├── ObjectAccessControl.projectTeam.Rd │ ├── ObjectAccessControls.Rd │ ├── Objects.Rd │ ├── RewriteResponse.Rd │ ├── bucketAccessControls.delete.Rd │ ├── bucketAccessControls.get.Rd │ ├── bucketAccessControls.insert.Rd │ ├── bucketAccessControls.list.Rd │ ├── bucketAccessControls.patch.Rd │ ├── bucketAccessControls.update.Rd │ ├── buckets.delete.Rd │ ├── buckets.get.Rd │ ├── buckets.insert.Rd │ ├── buckets.list.Rd │ ├── buckets.patch.Rd │ ├── buckets.update.Rd │ ├── channels.stop.Rd │ ├── defaultObjectAccessControls.delete.Rd │ ├── defaultObjectAccessControls.get.Rd │ ├── defaultObjectAccessControls.insert.Rd │ ├── defaultObjectAccessControls.list.Rd │ ├── defaultObjectAccessControls.patch.Rd │ ├── defaultObjectAccessControls.update.Rd │ ├── is.NullOb.Rd │ ├── objectAccessControls.delete.Rd │ ├── objectAccessControls.get.Rd │ ├── objectAccessControls.insert.Rd │ ├── objectAccessControls.list.Rd │ ├── objectAccessControls.patch.Rd │ ├── objectAccessControls.update.Rd │ ├── objects.compose.Rd │ ├── objects.copy.Rd │ ├── objects.delete.Rd │ ├── objects.get.Rd │ ├── objects.insert.Rd │ ├── objects.list.Rd │ ├── objects.patch.Rd │ ├── objects.rewrite.Rd │ ├── objects.update.Rd │ ├── objects.watchAll.Rd │ ├── rmNullObs.Rd │ └── storage_googleAuthR.Rd ├── googlestoragev1beta1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── storage_functions.R │ └── storage_objects.R ├── README.md ├── googlestoragev1beta1.auto.Rproj └── man │ ├── Bucket.Rd │ ├── Bucket.owner.Rd │ ├── Bucket.website.Rd │ ├── BucketAccessControl.Rd │ ├── BucketAccessControls.Rd │ ├── Buckets.Rd │ ├── Object.Rd │ ├── Object.media.Rd │ ├── Object.metadata.Rd │ ├── Object.owner.Rd │ ├── ObjectAccessControl.Rd │ ├── ObjectAccessControls.Rd │ ├── Objects.Rd │ ├── bucketAccessControls.delete.Rd │ ├── bucketAccessControls.get.Rd │ ├── bucketAccessControls.insert.Rd │ ├── bucketAccessControls.list.Rd │ ├── bucketAccessControls.patch.Rd │ ├── bucketAccessControls.update.Rd │ ├── buckets.delete.Rd │ ├── buckets.get.Rd │ ├── buckets.insert.Rd │ ├── buckets.list.Rd │ ├── buckets.patch.Rd │ ├── buckets.update.Rd │ ├── is.NullOb.Rd │ ├── objectAccessControls.delete.Rd │ ├── objectAccessControls.get.Rd │ ├── objectAccessControls.insert.Rd │ ├── objectAccessControls.list.Rd │ ├── objectAccessControls.patch.Rd │ ├── objectAccessControls.update.Rd │ ├── objects.delete.Rd │ ├── objects.get.Rd │ ├── objects.insert.Rd │ ├── objects.list.Rd │ ├── objects.patch.Rd │ ├── objects.update.Rd │ ├── rmNullObs.Rd │ └── storage_googleAuthR.Rd ├── googlestoragev1beta2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── storage_functions.R │ └── storage_objects.R ├── README.md ├── googlestoragev1beta2.auto.Rproj └── man │ ├── Bucket.Rd │ ├── Bucket.cors.Rd │ ├── Bucket.lifecycle.Rd │ ├── Bucket.lifecycle.rule.Rd │ ├── Bucket.lifecycle.rule.action.Rd │ ├── Bucket.lifecycle.rule.condition.Rd │ ├── Bucket.logging.Rd │ ├── Bucket.owner.Rd │ ├── Bucket.versioning.Rd │ ├── Bucket.website.Rd │ ├── BucketAccessControl.Rd │ ├── BucketAccessControls.Rd │ ├── Buckets.Rd │ ├── Channel.Rd │ ├── Channel.params.Rd │ ├── ComposeRequest.Rd │ ├── ComposeRequest.sourceObjects.Rd │ ├── ComposeRequest.sourceObjects.objectPreconditions.Rd │ ├── Object.Rd │ ├── Object.metadata.Rd │ ├── Object.owner.Rd │ ├── ObjectAccessControl.Rd │ ├── ObjectAccessControls.Rd │ ├── Objects.Rd │ ├── bucketAccessControls.delete.Rd │ ├── bucketAccessControls.get.Rd │ ├── bucketAccessControls.insert.Rd │ ├── bucketAccessControls.list.Rd │ ├── bucketAccessControls.patch.Rd │ ├── bucketAccessControls.update.Rd │ ├── buckets.delete.Rd │ ├── buckets.get.Rd │ ├── buckets.insert.Rd │ ├── buckets.list.Rd │ ├── buckets.patch.Rd │ ├── buckets.update.Rd │ ├── channels.stop.Rd │ ├── defaultObjectAccessControls.delete.Rd │ ├── defaultObjectAccessControls.get.Rd │ ├── defaultObjectAccessControls.insert.Rd │ ├── defaultObjectAccessControls.list.Rd │ ├── defaultObjectAccessControls.patch.Rd │ ├── defaultObjectAccessControls.update.Rd │ ├── is.NullOb.Rd │ ├── objectAccessControls.delete.Rd │ ├── objectAccessControls.get.Rd │ ├── objectAccessControls.insert.Rd │ ├── objectAccessControls.list.Rd │ ├── objectAccessControls.patch.Rd │ ├── objectAccessControls.update.Rd │ ├── objects.compose.Rd │ ├── objects.copy.Rd │ ├── objects.delete.Rd │ ├── objects.get.Rd │ ├── objects.insert.Rd │ ├── objects.list.Rd │ ├── objects.patch.Rd │ ├── objects.update.Rd │ ├── objects.watchAll.Rd │ ├── rmNullObs.Rd │ └── storage_googleAuthR.Rd ├── googlesurveysv2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── surveys_functions.R │ └── surveys_objects.R ├── README.md ├── googlesurveysv2.auto.Rproj └── man │ ├── FieldMask.Rd │ ├── MobileAppPanel.Rd │ ├── MobileAppPanelsListResponse.Rd │ ├── PageInfo.Rd │ ├── ResultsGetRequest.Rd │ ├── ResultsMask.Rd │ ├── Survey.Rd │ ├── SurveyAudience.Rd │ ├── SurveyCost.Rd │ ├── SurveyQuestion.Rd │ ├── SurveyQuestionImage.Rd │ ├── SurveyRejection.Rd │ ├── SurveyResults.Rd │ ├── SurveysDeleteResponse.Rd │ ├── SurveysListResponse.Rd │ ├── SurveysStartRequest.Rd │ ├── SurveysStartResponse.Rd │ ├── SurveysStopResponse.Rd │ ├── TokenPagination.Rd │ ├── delete.Rd │ ├── get.Rd │ ├── insert.Rd │ ├── is.NullOb.Rd │ ├── list.Rd │ ├── mobileapppanels.get.Rd │ ├── mobileapppanels.list.Rd │ ├── mobileapppanels.update.Rd │ ├── results.get.Rd │ ├── rmNullObs.Rd │ ├── start.Rd │ ├── stop.Rd │ ├── surveys_googleAuthR.Rd │ └── update.Rd ├── googletagmanagerv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── tagmanager_functions.R │ └── tagmanager_objects.R ├── README.md ├── googletagmanagerv1.auto.Rproj └── man │ ├── Account.Rd │ ├── AccountAccess.Rd │ ├── Condition.Rd │ ├── Container.Rd │ ├── ContainerAccess.Rd │ ├── ContainerVersion.Rd │ ├── ContainerVersionHeader.Rd │ ├── CreateContainerVersionRequestVersionOptions.Rd │ ├── CreateContainerVersionResponse.Rd │ ├── Environment.Rd │ ├── Folder.Rd │ ├── FolderEntities.Rd │ ├── ListAccountUsersResponse.Rd │ ├── ListAccountsResponse.Rd │ ├── ListContainerVersionsResponse.Rd │ ├── ListContainersResponse.Rd │ ├── ListEnvironmentsResponse.Rd │ ├── ListFoldersResponse.Rd │ ├── ListTagsResponse.Rd │ ├── ListTriggersResponse.Rd │ ├── ListVariablesResponse.Rd │ ├── Macro.Rd │ ├── Parameter.Rd │ ├── PublishContainerVersionResponse.Rd │ ├── Rule.Rd │ ├── SetupTag.Rd │ ├── Tag.Rd │ ├── TeardownTag.Rd │ ├── Trigger.Rd │ ├── UserAccess.Rd │ ├── Variable.Rd │ ├── accounts.get.Rd │ ├── accounts.list.Rd │ ├── accounts.update.Rd │ ├── is.NullOb.Rd │ ├── rmNullObs.Rd │ └── tagmanager_googleAuthR.Rd ├── googletaskqueuev1beta1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── taskqueue_functions.R │ └── taskqueue_objects.R ├── README.md ├── googletaskqueuev1beta1.auto.Rproj └── man │ ├── Task.Rd │ ├── TaskQueue.Rd │ ├── TaskQueue.acl.Rd │ ├── TaskQueue.stats.Rd │ ├── Tasks.Rd │ ├── Tasks2.Rd │ ├── is.NullOb.Rd │ ├── rmNullObs.Rd │ ├── taskqueue_googleAuthR.Rd │ ├── tasks.delete.Rd │ ├── tasks.get.Rd │ ├── tasks.lease.Rd │ └── tasks.list.Rd ├── googletaskqueuev1beta2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── taskqueue_functions.R │ └── taskqueue_objects.R ├── README.md ├── googletaskqueuev1beta2.auto.Rproj └── man │ ├── Task.Rd │ ├── TaskQueue.Rd │ ├── TaskQueue.acl.Rd │ ├── TaskQueue.stats.Rd │ ├── Tasks.Rd │ ├── Tasks2.Rd │ ├── is.NullOb.Rd │ ├── rmNullObs.Rd │ ├── taskqueue_googleAuthR.Rd │ ├── tasks.delete.Rd │ ├── tasks.get.Rd │ ├── tasks.insert.Rd │ ├── tasks.lease.Rd │ ├── tasks.list.Rd │ ├── tasks.patch.Rd │ └── tasks.update.Rd ├── googletasksv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── tasks_functions.R │ └── tasks_objects.R ├── README.md ├── googletasksv1.auto.Rproj └── man │ ├── Task.Rd │ ├── Task.links.Rd │ ├── TaskList.Rd │ ├── TaskLists.Rd │ ├── Tasks.Rd │ ├── clear.Rd │ ├── delete.Rd │ ├── get.Rd │ ├── insert.Rd │ ├── is.NullOb.Rd │ ├── list.Rd │ ├── move.Rd │ ├── patch.Rd │ ├── rmNullObs.Rd │ ├── tasklists.delete.Rd │ ├── tasklists.get.Rd │ ├── tasklists.insert.Rd │ ├── tasklists.list.Rd │ ├── tasklists.patch.Rd │ ├── tasklists.update.Rd │ ├── tasks_googleAuthR.Rd │ └── update.Rd ├── googletoolresultsv1beta3.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── toolresults_functions.R │ └── toolresults_objects.R ├── README.md ├── googletoolresultsv1beta3.auto.Rproj └── man │ ├── Any.Rd │ ├── BasicPerfSampleSeries.Rd │ ├── BatchCreatePerfSamplesRequest.Rd │ ├── BatchCreatePerfSamplesResponse.Rd │ ├── CPUInfo.Rd │ ├── Duration.Rd │ ├── Execution.Rd │ ├── FailureDetail.Rd │ ├── FileReference.Rd │ ├── History.Rd │ ├── Image.Rd │ ├── InconclusiveDetail.Rd │ ├── ListExecutionsResponse.Rd │ ├── ListHistoriesResponse.Rd │ ├── ListPerfSampleSeriesResponse.Rd │ ├── ListPerfSamplesResponse.Rd │ ├── ListStepThumbnailsResponse.Rd │ ├── ListStepsResponse.Rd │ ├── MemoryInfo.Rd │ ├── Outcome.Rd │ ├── PerfEnvironment.Rd │ ├── PerfMetricsSummary.Rd │ ├── PerfSample.Rd │ ├── PerfSampleSeries.Rd │ ├── ProjectSettings.Rd │ ├── PublishXunitXmlFilesRequest.Rd │ ├── SkippedDetail.Rd │ ├── StackTrace.Rd │ ├── Status.Rd │ ├── Step.Rd │ ├── StepDimensionValueEntry.Rd │ ├── StepLabelsEntry.Rd │ ├── SuccessDetail.Rd │ ├── TestCaseReference.Rd │ ├── TestExecutionStep.Rd │ ├── TestIssue.Rd │ ├── TestSuiteOverview.Rd │ ├── TestTiming.Rd │ ├── Thumbnail.Rd │ ├── Timestamp.Rd │ ├── ToolExecution.Rd │ ├── ToolExecutionStep.Rd │ ├── ToolExitCode.Rd │ ├── ToolOutputReference.Rd │ ├── is.NullOb.Rd │ ├── projects.getSettings.Rd │ ├── projects.initializeSettings.Rd │ ├── rmNullObs.Rd │ └── toolresults_googleAuthR.Rd ├── googletoolresultsv1beta3firstparty.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── toolresults_functions.R │ └── toolresults_objects.R ├── README.md ├── googletoolresultsv1beta3firstparty.auto.Rproj └── man │ ├── Any.Rd │ ├── BasicPerfSampleSeries.Rd │ ├── BatchCreatePerfSamplesRequest.Rd │ ├── BatchCreatePerfSamplesResponse.Rd │ ├── CPUInfo.Rd │ ├── Duration.Rd │ ├── Execution.Rd │ ├── FailureDetail.Rd │ ├── FileReference.Rd │ ├── History.Rd │ ├── Image.Rd │ ├── InconclusiveDetail.Rd │ ├── ListExecutionsResponse.Rd │ ├── ListHistoriesResponse.Rd │ ├── ListPerfSampleSeriesResponse.Rd │ ├── ListPerfSamplesResponse.Rd │ ├── ListStepThumbnailsResponse.Rd │ ├── ListStepsResponse.Rd │ ├── MemoryInfo.Rd │ ├── Outcome.Rd │ ├── PerfEnvironment.Rd │ ├── PerfMetricsSummary.Rd │ ├── PerfSample.Rd │ ├── PerfSampleSeries.Rd │ ├── ProjectSettings.Rd │ ├── PublishXunitXmlFilesRequest.Rd │ ├── SkippedDetail.Rd │ ├── StackTrace.Rd │ ├── Status.Rd │ ├── Step.Rd │ ├── StepDimensionValueEntry.Rd │ ├── StepLabelsEntry.Rd │ ├── SuccessDetail.Rd │ ├── TestCaseReference.Rd │ ├── TestExecutionStep.Rd │ ├── TestIssue.Rd │ ├── TestSuiteOverview.Rd │ ├── TestTiming.Rd │ ├── Thumbnail.Rd │ ├── Timestamp.Rd │ ├── ToolExecution.Rd │ ├── ToolExecutionStep.Rd │ ├── ToolExitCode.Rd │ ├── ToolOutputReference.Rd │ ├── is.NullOb.Rd │ ├── projects.getSettings.Rd │ ├── projects.initializeSettings.Rd │ ├── rmNullObs.Rd │ └── toolresults_googleAuthR.Rd ├── googletracingv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── tracing_functions.R │ └── tracing_objects.R ├── README.md ├── googletracingv1.auto.Rproj └── man │ ├── Annotation.Rd │ ├── Annotation.attributes.Rd │ ├── AttributeValue.Rd │ ├── BatchUpdateSpansRequest.Rd │ ├── BatchUpdateSpansRequest.spanUpdates.Rd │ ├── Empty.Rd │ ├── Link.Rd │ ├── ListSpansResponse.Rd │ ├── ListTracesResponse.Rd │ ├── Module.Rd │ ├── NetworkEvent.Rd │ ├── Span.Rd │ ├── Span.attributes.Rd │ ├── SpanUpdates.Rd │ ├── StackFrame.Rd │ ├── StackTrace.Rd │ ├── Status.Rd │ ├── TimeEvent.Rd │ ├── Trace.Rd │ ├── is.NullOb.Rd │ ├── projects.traces.batchUpdate.Rd │ ├── projects.traces.get.Rd │ ├── projects.traces.list.Rd │ ├── projects.traces.listSpans.Rd │ ├── rmNullObs.Rd │ └── tracing_googleAuthR.Rd ├── googletranslatev2.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── translate_functions.R │ └── translate_objects.R ├── README.md ├── googletranslatev2.auto.Rproj └── man │ ├── DetectionsListResponse.Rd │ ├── DetectionsResource.Rd │ ├── LanguagesListResponse.Rd │ ├── LanguagesResource.Rd │ ├── TranslationsListResponse.Rd │ ├── TranslationsResource.Rd │ ├── is.NullOb.Rd │ ├── language.detections.list.Rd │ ├── language.languages.list.Rd │ ├── language.translations.list.Rd │ ├── rmNullObs.Rd │ └── translate_googleAuthR.Rd ├── googleurlshortenerv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── urlshortener_functions.R │ └── urlshortener_objects.R ├── README.md ├── googleurlshortenerv1.auto.Rproj └── man │ ├── AnalyticsSnapshot.Rd │ ├── AnalyticsSummary.Rd │ ├── StringCount.Rd │ ├── Url.Rd │ ├── UrlHistory.Rd │ ├── is.NullOb.Rd │ ├── rmNullObs.Rd │ ├── url.get.Rd │ ├── url.insert.Rd │ ├── url.list.Rd │ └── urlshortener_googleAuthR.Rd ├── googlevisionv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── vision_functions.R │ └── vision_objects.R ├── README.md ├── googlevisionv1.auto.Rproj └── man │ ├── AnnotateImageRequest.Rd │ ├── AnnotateImageResponse.Rd │ ├── BatchAnnotateImagesRequest.Rd │ ├── BatchAnnotateImagesResponse.Rd │ ├── Block.Rd │ ├── BoundingPoly.Rd │ ├── Color.Rd │ ├── ColorInfo.Rd │ ├── CropHint.Rd │ ├── CropHintsAnnotation.Rd │ ├── CropHintsParams.Rd │ ├── DetectedBreak.Rd │ ├── DetectedLanguage.Rd │ ├── DominantColorsAnnotation.Rd │ ├── EntityAnnotation.Rd │ ├── FaceAnnotation.Rd │ ├── Feature.Rd │ ├── Image.Rd │ ├── ImageContext.Rd │ ├── ImageProperties.Rd │ ├── ImageSource.Rd │ ├── Landmark.Rd │ ├── LatLng.Rd │ ├── LatLongRect.Rd │ ├── LocationInfo.Rd │ ├── Page.Rd │ ├── Paragraph.Rd │ ├── Position.Rd │ ├── Property.Rd │ ├── SafeSearchAnnotation.Rd │ ├── Status.Rd │ ├── Symbol.Rd │ ├── TextAnnotation.Rd │ ├── TextProperty.Rd │ ├── Vertex.Rd │ ├── WebDetection.Rd │ ├── WebEntity.Rd │ ├── WebImage.Rd │ ├── WebPage.Rd │ ├── Word.Rd │ ├── images.annotate.Rd │ ├── is.NullOb.Rd │ ├── rmNullObs.Rd │ └── vision_googleAuthR.Rd ├── googlewebfontsv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── webfonts_functions.R │ └── webfonts_objects.R ├── README.md ├── googlewebfontsv1.auto.Rproj └── man │ ├── Webfont.Rd │ ├── Webfont.files.Rd │ ├── WebfontList.Rd │ ├── is.NullOb.Rd │ ├── list.Rd │ ├── rmNullObs.Rd │ └── webfonts_googleAuthR.Rd ├── googlewebmastersv3.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── webmasters_functions.R │ └── webmasters_objects.R ├── README.md ├── googlewebmastersv3.auto.Rproj └── man │ ├── ApiDataRow.Rd │ ├── ApiDimensionFilter.Rd │ ├── ApiDimensionFilterGroup.Rd │ ├── SearchAnalyticsQueryRequest.Rd │ ├── SearchAnalyticsQueryResponse.Rd │ ├── SitemapsListResponse.Rd │ ├── SitesListResponse.Rd │ ├── UrlCrawlErrorCount.Rd │ ├── UrlCrawlErrorCountsPerType.Rd │ ├── UrlCrawlErrorsCountsQueryResponse.Rd │ ├── UrlCrawlErrorsSample.Rd │ ├── UrlCrawlErrorsSamplesListResponse.Rd │ ├── UrlSampleDetails.Rd │ ├── WmxSite.Rd │ ├── WmxSitemap.Rd │ ├── WmxSitemapContent.Rd │ ├── is.NullOb.Rd │ ├── rmNullObs.Rd │ ├── searchanalytics.query.Rd │ ├── sitemaps.delete.Rd │ ├── sitemaps.get.Rd │ ├── sitemaps.list.Rd │ ├── sitemaps.submit.Rd │ ├── sites.add.Rd │ ├── sites.delete.Rd │ ├── sites.get.Rd │ ├── sites.list.Rd │ ├── urlcrawlerrorscounts.query.Rd │ ├── urlcrawlerrorssamples.get.Rd │ ├── urlcrawlerrorssamples.list.Rd │ ├── urlcrawlerrorssamples.markAsFixed.Rd │ └── webmasters_googleAuthR.Rd ├── googleyoutubeAnalyticsv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── youtubeAnalytics_functions.R │ └── youtubeAnalytics_objects.R ├── README.md ├── googleyoutubeAnalyticsv1.auto.Rproj └── man │ ├── Group.Rd │ ├── Group.contentDetails.Rd │ ├── Group.snippet.Rd │ ├── GroupItem.Rd │ ├── GroupItem.resource.Rd │ ├── GroupItemListResponse.Rd │ ├── GroupListResponse.Rd │ ├── ResultTable.Rd │ ├── ResultTable.columnHeaders.Rd │ ├── groupItems.delete.Rd │ ├── groupItems.insert.Rd │ ├── groupItems.list.Rd │ ├── groups.delete.Rd │ ├── groups.insert.Rd │ ├── groups.list.Rd │ ├── groups.update.Rd │ ├── is.NullOb.Rd │ ├── reports.query.Rd │ ├── rmNullObs.Rd │ └── youtubeAnalytics_googleAuthR.Rd ├── googleyoutubeAnalyticsv1beta1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── youtubeAnalytics_functions.R │ └── youtubeAnalytics_objects.R ├── README.md ├── googleyoutubeAnalyticsv1beta1.auto.Rproj └── man │ ├── Group.Rd │ ├── Group.contentDetails.Rd │ ├── Group.snippet.Rd │ ├── GroupItem.Rd │ ├── GroupItem.resource.Rd │ ├── GroupItemListResponse.Rd │ ├── GroupListResponse.Rd │ ├── ResultTable.Rd │ ├── ResultTable.columnHeaders.Rd │ ├── groupItems.delete.Rd │ ├── groupItems.insert.Rd │ ├── groupItems.list.Rd │ ├── groups.delete.Rd │ ├── groups.insert.Rd │ ├── groups.list.Rd │ ├── groups.update.Rd │ ├── is.NullOb.Rd │ ├── reports.query.Rd │ ├── rmNullObs.Rd │ └── youtubeAnalytics_googleAuthR.Rd ├── googleyoutubereportingv1.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R │ ├── youtubereporting_functions.R │ └── youtubereporting_objects.R ├── README.md ├── googleyoutubereportingv1.auto.Rproj └── man │ ├── Empty.Rd │ ├── Job.Rd │ ├── ListJobsResponse.Rd │ ├── ListReportTypesResponse.Rd │ ├── ListReportsResponse.Rd │ ├── Media.Rd │ ├── Report.Rd │ ├── ReportType.Rd │ ├── is.NullOb.Rd │ ├── jobs.create.Rd │ ├── jobs.delete.Rd │ ├── jobs.get.Rd │ ├── jobs.list.Rd │ ├── media.download.Rd │ ├── reportTypes.list.Rd │ ├── rmNullObs.Rd │ └── youtubereporting_googleAuthR.Rd └── googleyoutubev3.auto ├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── youtube_functions.R └── youtube_objects.R ├── README.md ├── googleyoutubev3.auto.Rproj └── man ├── AccessPolicy.Rd ├── Activity.Rd ├── ActivityContentDetails.Rd ├── ActivityContentDetailsBulletin.Rd ├── ActivityContentDetailsChannelItem.Rd ├── ActivityContentDetailsComment.Rd ├── ActivityContentDetailsFavorite.Rd ├── ActivityContentDetailsLike.Rd ├── ActivityContentDetailsPlaylistItem.Rd ├── ActivityContentDetailsPromotedItem.Rd ├── ActivityContentDetailsRecommendation.Rd ├── ActivityContentDetailsSocial.Rd ├── ActivityContentDetailsSubscription.Rd ├── ActivityContentDetailsUpload.Rd ├── ActivityListResponse.Rd ├── ActivitySnippet.Rd ├── Caption.Rd ├── CaptionListResponse.Rd ├── CaptionSnippet.Rd ├── CdnSettings.Rd ├── Channel.Rd ├── Channel.localizations.Rd ├── ChannelAuditDetails.Rd ├── ChannelBannerResource.Rd ├── ChannelBrandingSettings.Rd ├── ChannelContentDetails.Rd ├── ChannelContentDetails.relatedPlaylists.Rd ├── ChannelContentOwnerDetails.Rd ├── ChannelConversionPing.Rd ├── ChannelConversionPings.Rd ├── ChannelListResponse.Rd ├── ChannelLocalization.Rd ├── ChannelProfileDetails.Rd ├── ChannelSection.Rd ├── ChannelSection.localizations.Rd ├── ChannelSectionContentDetails.Rd ├── ChannelSectionListResponse.Rd ├── ChannelSectionLocalization.Rd ├── ChannelSectionSnippet.Rd ├── ChannelSectionTargeting.Rd ├── ChannelSettings.Rd ├── ChannelSnippet.Rd ├── ChannelStatistics.Rd ├── ChannelStatus.Rd ├── ChannelTopicDetails.Rd ├── Comment.Rd ├── CommentListResponse.Rd ├── CommentSnippet.Rd ├── CommentThread.Rd ├── CommentThreadListResponse.Rd ├── CommentThreadReplies.Rd ├── CommentThreadSnippet.Rd ├── ContentRating.Rd ├── FanFundingEvent.Rd ├── FanFundingEventListResponse.Rd ├── FanFundingEventSnippet.Rd ├── GeoPoint.Rd ├── GuideCategory.Rd ├── GuideCategoryListResponse.Rd ├── GuideCategorySnippet.Rd ├── I18nLanguage.Rd ├── I18nLanguageListResponse.Rd ├── I18nLanguageSnippet.Rd ├── I18nRegion.Rd ├── I18nRegionListResponse.Rd ├── I18nRegionSnippet.Rd ├── ImageSettings.Rd ├── IngestionInfo.Rd ├── InvideoBranding.Rd ├── InvideoPosition.Rd ├── InvideoPromotion.Rd ├── InvideoTiming.Rd ├── LanguageTag.Rd ├── LiveBroadcast.Rd ├── LiveBroadcastContentDetails.Rd ├── LiveBroadcastListResponse.Rd ├── LiveBroadcastSnippet.Rd ├── LiveBroadcastStatistics.Rd ├── LiveBroadcastStatus.Rd ├── LiveBroadcastTopic.Rd ├── LiveBroadcastTopicDetails.Rd ├── LiveBroadcastTopicSnippet.Rd ├── LiveChatBan.Rd ├── LiveChatBanSnippet.Rd ├── LiveChatFanFundingEventDetails.Rd ├── LiveChatMessage.Rd ├── LiveChatMessageAuthorDetails.Rd ├── LiveChatMessageDeletedDetails.Rd ├── LiveChatMessageListResponse.Rd ├── LiveChatMessageRetractedDetails.Rd ├── LiveChatMessageSnippet.Rd ├── LiveChatModerator.Rd ├── LiveChatModeratorListResponse.Rd ├── LiveChatModeratorSnippet.Rd ├── LiveChatPollClosedDetails.Rd ├── LiveChatPollEditedDetails.Rd ├── LiveChatPollItem.Rd ├── LiveChatPollOpenedDetails.Rd ├── LiveChatPollVotedDetails.Rd ├── LiveChatSuperChatDetails.Rd ├── LiveChatTextMessageDetails.Rd ├── LiveChatUserBannedMessageDetails.Rd ├── LiveStream.Rd ├── LiveStreamConfigurationIssue.Rd ├── LiveStreamContentDetails.Rd ├── LiveStreamHealthStatus.Rd ├── LiveStreamListResponse.Rd ├── LiveStreamSnippet.Rd ├── LiveStreamStatus.Rd ├── LocalizedProperty.Rd ├── LocalizedString.Rd ├── MonitorStreamInfo.Rd ├── PageInfo.Rd ├── Playlist.Rd ├── Playlist.localizations.Rd ├── PlaylistContentDetails.Rd ├── PlaylistItem.Rd ├── PlaylistItemContentDetails.Rd ├── PlaylistItemListResponse.Rd ├── PlaylistItemSnippet.Rd ├── PlaylistItemStatus.Rd ├── PlaylistListResponse.Rd ├── PlaylistLocalization.Rd ├── PlaylistPlayer.Rd ├── PlaylistSnippet.Rd ├── PlaylistStatus.Rd ├── PromotedItem.Rd ├── PromotedItemId.Rd ├── PropertyValue.Rd ├── ResourceId.Rd ├── SearchListResponse.Rd ├── SearchResult.Rd ├── SearchResultSnippet.Rd ├── Sponsor.Rd ├── SponsorListResponse.Rd ├── SponsorSnippet.Rd ├── Subscription.Rd ├── SubscriptionContentDetails.Rd ├── SubscriptionListResponse.Rd ├── SubscriptionSnippet.Rd ├── SubscriptionSubscriberSnippet.Rd ├── SuperChatEvent.Rd ├── SuperChatEventListResponse.Rd ├── SuperChatEventSnippet.Rd ├── Thumbnail.Rd ├── ThumbnailDetails.Rd ├── ThumbnailSetResponse.Rd ├── TokenPagination.Rd ├── Video.Rd ├── Video.localizations.Rd ├── VideoAbuseReport.Rd ├── VideoAbuseReportReason.Rd ├── VideoAbuseReportReasonListResponse.Rd ├── VideoAbuseReportReasonSnippet.Rd ├── VideoAbuseReportSecondaryReason.Rd ├── VideoAgeGating.Rd ├── VideoCategory.Rd ├── VideoCategoryListResponse.Rd ├── VideoCategorySnippet.Rd ├── VideoContentDetails.Rd ├── VideoContentDetailsRegionRestriction.Rd ├── VideoFileDetails.Rd ├── VideoFileDetailsAudioStream.Rd ├── VideoFileDetailsVideoStream.Rd ├── VideoGetRatingResponse.Rd ├── VideoListResponse.Rd ├── VideoLiveStreamingDetails.Rd ├── VideoLocalization.Rd ├── VideoMonetizationDetails.Rd ├── VideoPlayer.Rd ├── VideoProcessingDetails.Rd ├── VideoProcessingDetailsProcessingProgress.Rd ├── VideoProjectDetails.Rd ├── VideoRating.Rd ├── VideoRecordingDetails.Rd ├── VideoSnippet.Rd ├── VideoStatistics.Rd ├── VideoStatus.Rd ├── VideoSuggestions.Rd ├── VideoSuggestionsTagSuggestion.Rd ├── VideoTopicDetails.Rd ├── WatchSettings.Rd ├── activities.insert.Rd ├── activities.list.Rd ├── captions.delete.Rd ├── captions.download.Rd ├── captions.insert.Rd ├── captions.list.Rd ├── captions.update.Rd ├── channelBanners.insert.Rd ├── channelSections.delete.Rd ├── channelSections.insert.Rd ├── channelSections.list.Rd ├── channelSections.update.Rd ├── channels.list.Rd ├── channels.update.Rd ├── commentThreads.insert.Rd ├── commentThreads.list.Rd ├── commentThreads.update.Rd ├── comments.delete.Rd ├── comments.insert.Rd ├── comments.list.Rd ├── comments.markAsSpam.Rd ├── comments.setModerationStatus.Rd ├── comments.update.Rd ├── fanFundingEvents.list.Rd ├── guideCategories.list.Rd ├── i18nLanguages.list.Rd ├── i18nRegions.list.Rd ├── is.NullOb.Rd ├── liveBroadcasts.bind.Rd ├── liveBroadcasts.control.Rd ├── liveBroadcasts.delete.Rd ├── liveBroadcasts.insert.Rd ├── liveBroadcasts.list.Rd ├── liveBroadcasts.transition.Rd ├── liveBroadcasts.update.Rd ├── liveChatBans.delete.Rd ├── liveChatBans.insert.Rd ├── liveChatMessages.delete.Rd ├── liveChatMessages.insert.Rd ├── liveChatMessages.list.Rd ├── liveChatModerators.delete.Rd ├── liveChatModerators.insert.Rd ├── liveChatModerators.list.Rd ├── liveStreams.delete.Rd ├── liveStreams.insert.Rd ├── liveStreams.list.Rd ├── liveStreams.update.Rd ├── playlistItems.delete.Rd ├── playlistItems.insert.Rd ├── playlistItems.list.Rd ├── playlistItems.update.Rd ├── playlists.delete.Rd ├── playlists.insert.Rd ├── playlists.list.Rd ├── playlists.update.Rd ├── rmNullObs.Rd ├── search.list.Rd ├── sponsors.list.Rd ├── subscriptions.delete.Rd ├── subscriptions.insert.Rd ├── subscriptions.list.Rd ├── superChatEvents.list.Rd ├── thumbnails.set.Rd ├── videoAbuseReportReasons.list.Rd ├── videoCategories.list.Rd ├── videos.delete.Rd ├── videos.getRating.Rd ├── videos.insert.Rd ├── videos.list.Rd ├── videos.rate.Rd ├── videos.reportAbuse.Rd ├── videos.update.Rd ├── watermarks.set.Rd ├── watermarks.unset.Rd └── youtube_googleAuthR.Rd /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/README.md -------------------------------------------------------------------------------- /googleacceleratedmobilepageurlv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleacceleratedmobilepageurlv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleadexchangebuyer2v2beta1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleadexchangebuyer2v2beta1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleadexchangebuyerv12.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleadexchangebuyerv12.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleadexchangebuyerv13.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleadexchangebuyerv13.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleadexchangebuyerv14.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleadexchangebuyerv14.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleadexchangesellerv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleadexchangesellerv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleadexchangesellerv11.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleadexchangesellerv11.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleadexchangesellerv20.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleadexchangesellerv20.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleadmindatatransferv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleadmindatatransferv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleadmindirectoryv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleadmindirectoryv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleadminreportsv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleadminreportsv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleadminreportsv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleadminreportsv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googleadminreportsv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleadminreportsv1.auto/README.md -------------------------------------------------------------------------------- /googleadsensehostv41.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleadsensehostv41.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleadsensehostv41.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleadsensehostv41.auto/NAMESPACE -------------------------------------------------------------------------------- /googleadsensehostv41.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleadsensehostv41.auto/README.md -------------------------------------------------------------------------------- /googleadsensev13.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleadsensev13.auto/.Rbuildignore -------------------------------------------------------------------------------- /googleadsensev13.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleadsensev13.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleadsensev13.auto/DESCRIPTION -------------------------------------------------------------------------------- /googleadsensev13.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleadsensev13.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleadsensev13.auto/NAMESPACE -------------------------------------------------------------------------------- /googleadsensev13.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleadsensev13.auto/README.md -------------------------------------------------------------------------------- /googleadsensev13.auto/man/AdCode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleadsensev13.auto/man/AdCode.Rd -------------------------------------------------------------------------------- /googleadsensev13.auto/man/AdUnit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleadsensev13.auto/man/AdUnit.Rd -------------------------------------------------------------------------------- /googleadsensev13.auto/man/Alert.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleadsensev13.auto/man/Alert.Rd -------------------------------------------------------------------------------- /googleadsensev13.auto/man/Alerts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleadsensev13.auto/man/Alerts.Rd -------------------------------------------------------------------------------- /googleadsensev14.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleadsensev14.auto/.Rbuildignore -------------------------------------------------------------------------------- /googleadsensev14.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleadsensev14.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleadsensev14.auto/DESCRIPTION -------------------------------------------------------------------------------- /googleadsensev14.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleadsensev14.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleadsensev14.auto/NAMESPACE -------------------------------------------------------------------------------- /googleadsensev14.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleadsensev14.auto/README.md -------------------------------------------------------------------------------- /googleadsensev14.auto/man/AdCode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleadsensev14.auto/man/AdCode.Rd -------------------------------------------------------------------------------- /googleadsensev14.auto/man/AdUnit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleadsensev14.auto/man/AdUnit.Rd -------------------------------------------------------------------------------- /googleadsensev14.auto/man/Alert.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleadsensev14.auto/man/Alert.Rd -------------------------------------------------------------------------------- /googleadsensev14.auto/man/Alerts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleadsensev14.auto/man/Alerts.Rd -------------------------------------------------------------------------------- /googleanalyticsreportingv4.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleanalyticsreportingv4.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleanalyticsv24.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleanalyticsv24.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleanalyticsv24.auto/DESCRIPTION -------------------------------------------------------------------------------- /googleanalyticsv24.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleanalyticsv24.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleanalyticsv24.auto/NAMESPACE -------------------------------------------------------------------------------- /googleanalyticsv24.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleanalyticsv24.auto/README.md -------------------------------------------------------------------------------- /googleanalyticsv3.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleanalyticsv3.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleanalyticsv3.auto/DESCRIPTION -------------------------------------------------------------------------------- /googleanalyticsv3.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleanalyticsv3.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleanalyticsv3.auto/NAMESPACE -------------------------------------------------------------------------------- /googleanalyticsv3.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleanalyticsv3.auto/README.md -------------------------------------------------------------------------------- /googleanalyticsv3.auto/man/Goal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleanalyticsv3.auto/man/Goal.Rd -------------------------------------------------------------------------------- /googleanalyticsv3.auto/man/Goals.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleanalyticsv3.auto/man/Goals.Rd -------------------------------------------------------------------------------- /googleandroidenterprisev1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleandroidenterprisev1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleandroidpublisherv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleandroidpublisherv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleandroidpublisherv11.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleandroidpublisherv11.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleandroidpublisherv2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleandroidpublisherv2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleappenginev1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleappenginev1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleappenginev1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googleappenginev1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleappenginev1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleappenginev1.auto/NAMESPACE -------------------------------------------------------------------------------- /googleappenginev1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleappenginev1.auto/README.md -------------------------------------------------------------------------------- /googleappenginev1alpha.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleappenginev1alpha.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleappenginev1beta.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleappenginev1beta.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleappenginev1beta4.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleappenginev1beta4.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleappenginev1beta5.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleappenginev1beta5.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleappsactivityv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleappsactivityv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleappsactivityv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleappsactivityv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googleappsactivityv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleappsactivityv1.auto/README.md -------------------------------------------------------------------------------- /googleappstatev1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleappstatev1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googleappstatev1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleappstatev1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleappstatev1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googleappstatev1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleappstatev1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleappstatev1.auto/NAMESPACE -------------------------------------------------------------------------------- /googleappstatev1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleappstatev1.auto/README.md -------------------------------------------------------------------------------- /googlebigqueryv2.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebigqueryv2.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlebigqueryv2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlebigqueryv2.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebigqueryv2.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlebigqueryv2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlebigqueryv2.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebigqueryv2.auto/NAMESPACE -------------------------------------------------------------------------------- /googlebigqueryv2.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebigqueryv2.auto/README.md -------------------------------------------------------------------------------- /googlebigqueryv2.auto/man/Job.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebigqueryv2.auto/man/Job.Rd -------------------------------------------------------------------------------- /googlebigqueryv2.auto/man/Table.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebigqueryv2.auto/man/Table.Rd -------------------------------------------------------------------------------- /googlebloggerv2.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebloggerv2.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlebloggerv2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlebloggerv2.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebloggerv2.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlebloggerv2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlebloggerv2.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebloggerv2.auto/NAMESPACE -------------------------------------------------------------------------------- /googlebloggerv2.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebloggerv2.auto/README.md -------------------------------------------------------------------------------- /googlebloggerv2.auto/man/Blog.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebloggerv2.auto/man/Blog.Rd -------------------------------------------------------------------------------- /googlebloggerv2.auto/man/Comment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebloggerv2.auto/man/Comment.Rd -------------------------------------------------------------------------------- /googlebloggerv2.auto/man/Page.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebloggerv2.auto/man/Page.Rd -------------------------------------------------------------------------------- /googlebloggerv2.auto/man/Post.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebloggerv2.auto/man/Post.Rd -------------------------------------------------------------------------------- /googlebloggerv2.auto/man/User.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebloggerv2.auto/man/User.Rd -------------------------------------------------------------------------------- /googlebloggerv3.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebloggerv3.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlebloggerv3.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlebloggerv3.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebloggerv3.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlebloggerv3.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlebloggerv3.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebloggerv3.auto/NAMESPACE -------------------------------------------------------------------------------- /googlebloggerv3.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebloggerv3.auto/README.md -------------------------------------------------------------------------------- /googlebloggerv3.auto/man/Blog.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebloggerv3.auto/man/Blog.Rd -------------------------------------------------------------------------------- /googlebloggerv3.auto/man/Comment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebloggerv3.auto/man/Comment.Rd -------------------------------------------------------------------------------- /googlebloggerv3.auto/man/Page.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebloggerv3.auto/man/Page.Rd -------------------------------------------------------------------------------- /googlebloggerv3.auto/man/Post.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebloggerv3.auto/man/Post.Rd -------------------------------------------------------------------------------- /googlebloggerv3.auto/man/User.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebloggerv3.auto/man/User.Rd -------------------------------------------------------------------------------- /googlebooksv1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebooksv1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlebooksv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlebooksv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebooksv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlebooksv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlebooksv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebooksv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlebooksv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebooksv1.auto/README.md -------------------------------------------------------------------------------- /googlebooksv1.auto/man/Bookshelf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebooksv1.auto/man/Bookshelf.Rd -------------------------------------------------------------------------------- /googlebooksv1.auto/man/Category.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebooksv1.auto/man/Category.Rd -------------------------------------------------------------------------------- /googlebooksv1.auto/man/Metadata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebooksv1.auto/man/Metadata.Rd -------------------------------------------------------------------------------- /googlebooksv1.auto/man/Offers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebooksv1.auto/man/Offers.Rd -------------------------------------------------------------------------------- /googlebooksv1.auto/man/Review.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebooksv1.auto/man/Review.Rd -------------------------------------------------------------------------------- /googlebooksv1.auto/man/Series.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebooksv1.auto/man/Series.Rd -------------------------------------------------------------------------------- /googlebooksv1.auto/man/Volume.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebooksv1.auto/man/Volume.Rd -------------------------------------------------------------------------------- /googlebooksv1.auto/man/Volume2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebooksv1.auto/man/Volume2.Rd -------------------------------------------------------------------------------- /googlebooksv1.auto/man/Volumes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebooksv1.auto/man/Volumes.Rd -------------------------------------------------------------------------------- /googlebooksv1.auto/man/elves.get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebooksv1.auto/man/elves.get.Rd -------------------------------------------------------------------------------- /googlebooksv1.auto/man/is.NullOb.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebooksv1.auto/man/is.NullOb.Rd -------------------------------------------------------------------------------- /googlebooksv1.auto/man/rmNullObs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlebooksv1.auto/man/rmNullObs.Rd -------------------------------------------------------------------------------- /googlecalendarv3.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecalendarv3.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlecalendarv3.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlecalendarv3.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecalendarv3.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlecalendarv3.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlecalendarv3.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecalendarv3.auto/NAMESPACE -------------------------------------------------------------------------------- /googlecalendarv3.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecalendarv3.auto/README.md -------------------------------------------------------------------------------- /googlecalendarv3.auto/man/Acl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecalendarv3.auto/man/Acl.Rd -------------------------------------------------------------------------------- /googlecalendarv3.auto/man/Colors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecalendarv3.auto/man/Colors.Rd -------------------------------------------------------------------------------- /googlecalendarv3.auto/man/Error.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecalendarv3.auto/man/Error.Rd -------------------------------------------------------------------------------- /googlecalendarv3.auto/man/Event.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecalendarv3.auto/man/Event.Rd -------------------------------------------------------------------------------- /googlecalendarv3.auto/man/Events.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecalendarv3.auto/man/Events.Rd -------------------------------------------------------------------------------- /googlecivicinfov2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlecivicinfov2.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecivicinfov2.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlecivicinfov2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlecivicinfov2.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecivicinfov2.auto/NAMESPACE -------------------------------------------------------------------------------- /googlecivicinfov2.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecivicinfov2.auto/README.md -------------------------------------------------------------------------------- /googleclassroomv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleclassroomv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleclassroomv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googleclassroomv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleclassroomv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleclassroomv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googleclassroomv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleclassroomv1.auto/README.md -------------------------------------------------------------------------------- /googleclassroomv1.auto/man/Date.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleclassroomv1.auto/man/Date.Rd -------------------------------------------------------------------------------- /googleclassroomv1.auto/man/Empty.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleclassroomv1.auto/man/Empty.Rd -------------------------------------------------------------------------------- /googleclassroomv1.auto/man/Form.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleclassroomv1.auto/man/Form.Rd -------------------------------------------------------------------------------- /googleclassroomv1.auto/man/Link.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleclassroomv1.auto/man/Link.Rd -------------------------------------------------------------------------------- /googleclassroomv1.auto/man/Name.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleclassroomv1.auto/man/Name.Rd -------------------------------------------------------------------------------- /googlecloudbillingv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlecloudbillingv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlecloudbillingv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecloudbillingv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlecloudbillingv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecloudbillingv1.auto/README.md -------------------------------------------------------------------------------- /googlecloudbuildv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlecloudbuildv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecloudbuildv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlecloudbuildv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlecloudbuildv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecloudbuildv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlecloudbuildv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecloudbuildv1.auto/README.md -------------------------------------------------------------------------------- /googlecloudbuildv1.auto/man/Hash.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecloudbuildv1.auto/man/Hash.Rd -------------------------------------------------------------------------------- /googleclouddebuggerv2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleclouddebuggerv2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleclouderrorreportingv1beta1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleclouderrorreportingv1beta1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlecloudkmsv1beta1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlecloudkmsv1beta1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlecloudmonitoringv2beta2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlecloudmonitoringv2beta2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlecloudresourcemanagerv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlecloudresourcemanagerv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlecloudresourcemanagerv1beta1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlecloudresourcemanagerv1beta1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlecloudtracev1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlecloudtracev1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecloudtracev1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlecloudtracev1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlecloudtracev1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecloudtracev1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlecloudtracev1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecloudtracev1.auto/README.md -------------------------------------------------------------------------------- /googleclouduseraccountsalpha.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleclouduseraccountsalpha.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleclouduseraccountsbeta.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleclouduseraccountsbeta.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleclouduseraccountsvmalpha.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleclouduseraccountsvmalpha.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleclouduseraccountsvmbeta.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleclouduseraccountsvmbeta.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlecomputealpha.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlecomputealpha.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputealpha.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlecomputealpha.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlecomputealpha.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputealpha.auto/NAMESPACE -------------------------------------------------------------------------------- /googlecomputealpha.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputealpha.auto/README.md -------------------------------------------------------------------------------- /googlecomputealpha.auto/man/Disk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputealpha.auto/man/Disk.Rd -------------------------------------------------------------------------------- /googlecomputealpha.auto/man/Host.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputealpha.auto/man/Host.Rd -------------------------------------------------------------------------------- /googlecomputealpha.auto/man/Rule.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputealpha.auto/man/Rule.Rd -------------------------------------------------------------------------------- /googlecomputealpha.auto/man/Tags.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputealpha.auto/man/Tags.Rd -------------------------------------------------------------------------------- /googlecomputealpha.auto/man/Zone.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputealpha.auto/man/Zone.Rd -------------------------------------------------------------------------------- /googlecomputebeta.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlecomputebeta.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputebeta.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlecomputebeta.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlecomputebeta.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputebeta.auto/NAMESPACE -------------------------------------------------------------------------------- /googlecomputebeta.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputebeta.auto/README.md -------------------------------------------------------------------------------- /googlecomputebeta.auto/man/Disk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputebeta.auto/man/Disk.Rd -------------------------------------------------------------------------------- /googlecomputebeta.auto/man/Image.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputebeta.auto/man/Image.Rd -------------------------------------------------------------------------------- /googlecomputebeta.auto/man/Quota.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputebeta.auto/man/Quota.Rd -------------------------------------------------------------------------------- /googlecomputebeta.auto/man/Route.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputebeta.auto/man/Route.Rd -------------------------------------------------------------------------------- /googlecomputebeta.auto/man/Rule.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputebeta.auto/man/Rule.Rd -------------------------------------------------------------------------------- /googlecomputebeta.auto/man/Tags.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputebeta.auto/man/Tags.Rd -------------------------------------------------------------------------------- /googlecomputebeta.auto/man/Zone.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputebeta.auto/man/Zone.Rd -------------------------------------------------------------------------------- /googlecomputev1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputev1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlecomputev1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlecomputev1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputev1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlecomputev1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlecomputev1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputev1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlecomputev1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputev1.auto/README.md -------------------------------------------------------------------------------- /googlecomputev1.auto/man/Address.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputev1.auto/man/Address.Rd -------------------------------------------------------------------------------- /googlecomputev1.auto/man/Backend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputev1.auto/man/Backend.Rd -------------------------------------------------------------------------------- /googlecomputev1.auto/man/Disk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputev1.auto/man/Disk.Rd -------------------------------------------------------------------------------- /googlecomputev1.auto/man/Image.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputev1.auto/man/Image.Rd -------------------------------------------------------------------------------- /googlecomputev1.auto/man/License.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputev1.auto/man/License.Rd -------------------------------------------------------------------------------- /googlecomputev1.auto/man/Network.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputev1.auto/man/Network.Rd -------------------------------------------------------------------------------- /googlecomputev1.auto/man/Project.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputev1.auto/man/Project.Rd -------------------------------------------------------------------------------- /googlecomputev1.auto/man/Quota.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputev1.auto/man/Quota.Rd -------------------------------------------------------------------------------- /googlecomputev1.auto/man/Region.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputev1.auto/man/Region.Rd -------------------------------------------------------------------------------- /googlecomputev1.auto/man/Route.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputev1.auto/man/Route.Rd -------------------------------------------------------------------------------- /googlecomputev1.auto/man/Router.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputev1.auto/man/Router.Rd -------------------------------------------------------------------------------- /googlecomputev1.auto/man/Tags.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputev1.auto/man/Tags.Rd -------------------------------------------------------------------------------- /googlecomputev1.auto/man/UrlMap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputev1.auto/man/UrlMap.Rd -------------------------------------------------------------------------------- /googlecomputev1.auto/man/Zone.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecomputev1.auto/man/Zone.Rd -------------------------------------------------------------------------------- /googleconsumersurveysv2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleconsumersurveysv2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlecontainerv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlecontainerv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecontainerv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlecontainerv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlecontainerv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecontainerv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlecontainerv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecontainerv1.auto/README.md -------------------------------------------------------------------------------- /googlecontainerv1.auto/man/Empty.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecontainerv1.auto/man/Empty.Rd -------------------------------------------------------------------------------- /googlecontentv2.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecontentv2.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlecontentv2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlecontentv2.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecontentv2.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlecontentv2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlecontentv2.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecontentv2.auto/NAMESPACE -------------------------------------------------------------------------------- /googlecontentv2.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecontentv2.auto/README.md -------------------------------------------------------------------------------- /googlecontentv2.auto/man/Account.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecontentv2.auto/man/Account.Rd -------------------------------------------------------------------------------- /googlecontentv2.auto/man/Error.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecontentv2.auto/man/Error.Rd -------------------------------------------------------------------------------- /googlecontentv2.auto/man/Errors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecontentv2.auto/man/Errors.Rd -------------------------------------------------------------------------------- /googlecontentv2.auto/man/Headers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecontentv2.auto/man/Headers.Rd -------------------------------------------------------------------------------- /googlecontentv2.auto/man/Order.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecontentv2.auto/man/Order.Rd -------------------------------------------------------------------------------- /googlecontentv2.auto/man/Price.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecontentv2.auto/man/Price.Rd -------------------------------------------------------------------------------- /googlecontentv2.auto/man/Product.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecontentv2.auto/man/Product.Rd -------------------------------------------------------------------------------- /googlecontentv2.auto/man/Row.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecontentv2.auto/man/Row.Rd -------------------------------------------------------------------------------- /googlecontentv2.auto/man/Service.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecontentv2.auto/man/Service.Rd -------------------------------------------------------------------------------- /googlecontentv2.auto/man/Table.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecontentv2.auto/man/Table.Rd -------------------------------------------------------------------------------- /googlecontentv2.auto/man/Value.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecontentv2.auto/man/Value.Rd -------------------------------------------------------------------------------- /googlecontentv2.auto/man/Weight.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecontentv2.auto/man/Weight.Rd -------------------------------------------------------------------------------- /googlecontentv2sandbox.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlecontentv2sandbox.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlecustomsearchv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlecustomsearchv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlecustomsearchv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecustomsearchv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlecustomsearchv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlecustomsearchv1.auto/README.md -------------------------------------------------------------------------------- /googledataflowv1b3.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googledataflowv1b3.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledataflowv1b3.auto/DESCRIPTION -------------------------------------------------------------------------------- /googledataflowv1b3.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googledataflowv1b3.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledataflowv1b3.auto/NAMESPACE -------------------------------------------------------------------------------- /googledataflowv1b3.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledataflowv1b3.auto/README.md -------------------------------------------------------------------------------- /googledataflowv1b3.auto/man/Disk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledataflowv1b3.auto/man/Disk.Rd -------------------------------------------------------------------------------- /googledataflowv1b3.auto/man/Job.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledataflowv1b3.auto/man/Job.Rd -------------------------------------------------------------------------------- /googledataflowv1b3.auto/man/Sink.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledataflowv1b3.auto/man/Sink.Rd -------------------------------------------------------------------------------- /googledataflowv1b3.auto/man/Step.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledataflowv1b3.auto/man/Step.Rd -------------------------------------------------------------------------------- /googledataprocv1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledataprocv1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googledataprocv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googledataprocv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledataprocv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googledataprocv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googledataprocv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledataprocv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googledataprocv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledataprocv1.auto/README.md -------------------------------------------------------------------------------- /googledataprocv1.auto/man/Empty.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledataprocv1.auto/man/Empty.Rd -------------------------------------------------------------------------------- /googledataprocv1.auto/man/Job.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledataprocv1.auto/man/Job.Rd -------------------------------------------------------------------------------- /googledataprocv1.auto/man/PigJob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledataprocv1.auto/man/PigJob.Rd -------------------------------------------------------------------------------- /googledataprocv1.auto/man/Status.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledataprocv1.auto/man/Status.Rd -------------------------------------------------------------------------------- /googledataprocv1alpha1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googledataprocv1alpha1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googledataprocv1beta1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googledataprocv1beta1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googledatastorev1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googledatastorev1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledatastorev1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googledatastorev1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googledatastorev1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledatastorev1.auto/NAMESPACE -------------------------------------------------------------------------------- /googledatastorev1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledatastorev1.auto/README.md -------------------------------------------------------------------------------- /googledatastorev1.auto/man/Key.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledatastorev1.auto/man/Key.Rd -------------------------------------------------------------------------------- /googledatastorev1.auto/man/Query.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledatastorev1.auto/man/Query.Rd -------------------------------------------------------------------------------- /googledatastorev1.auto/man/Value.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledatastorev1.auto/man/Value.Rd -------------------------------------------------------------------------------- /googledatastorev1beta1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googledatastorev1beta1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googledatastorev1beta2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googledatastorev1beta2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googledatastorev1beta3.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googledatastorev1beta3.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googledeploymentmanageralpha.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googledeploymentmanageralpha.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googledeploymentmanagerv2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googledeploymentmanagerv2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googledfareportingv26.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googledfareportingv26.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googledfareportingv27.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googledfareportingv27.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlediscoveryv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlediscoveryv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlediscoveryv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlediscoveryv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlediscoveryv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlediscoveryv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlediscoveryv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlediscoveryv1.auto/README.md -------------------------------------------------------------------------------- /googlednsv1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlednsv1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlednsv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlednsv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlednsv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlednsv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlednsv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlednsv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlednsv1.auto/R/dns_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlednsv1.auto/R/dns_functions.R -------------------------------------------------------------------------------- /googlednsv1.auto/R/dns_objects.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlednsv1.auto/R/dns_objects.R -------------------------------------------------------------------------------- /googlednsv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlednsv1.auto/README.md -------------------------------------------------------------------------------- /googlednsv1.auto/man/Change.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlednsv1.auto/man/Change.Rd -------------------------------------------------------------------------------- /googlednsv1.auto/man/ManagedZone.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlednsv1.auto/man/ManagedZone.Rd -------------------------------------------------------------------------------- /googlednsv1.auto/man/Project.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlednsv1.auto/man/Project.Rd -------------------------------------------------------------------------------- /googlednsv1.auto/man/Quota.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlednsv1.auto/man/Quota.Rd -------------------------------------------------------------------------------- /googlednsv1.auto/man/changes.get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlednsv1.auto/man/changes.get.Rd -------------------------------------------------------------------------------- /googlednsv1.auto/man/is.NullOb.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlednsv1.auto/man/is.NullOb.Rd -------------------------------------------------------------------------------- /googlednsv1.auto/man/rmNullObs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlednsv1.auto/man/rmNullObs.Rd -------------------------------------------------------------------------------- /googlednsv2beta1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlednsv2beta1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlednsv2beta1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlednsv2beta1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlednsv2beta1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlednsv2beta1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlednsv2beta1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlednsv2beta1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlednsv2beta1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlednsv2beta1.auto/README.md -------------------------------------------------------------------------------- /googlednsv2beta1.auto/man/Change.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlednsv2beta1.auto/man/Change.Rd -------------------------------------------------------------------------------- /googlednsv2beta1.auto/man/DnsKey.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlednsv2beta1.auto/man/DnsKey.Rd -------------------------------------------------------------------------------- /googlednsv2beta1.auto/man/Quota.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlednsv2beta1.auto/man/Quota.Rd -------------------------------------------------------------------------------- /googledoubleclickbidmanagerv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googledoubleclickbidmanagerv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googledoubleclicksearchv2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googledoubleclicksearchv2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googledrivev2.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/.Rbuildignore -------------------------------------------------------------------------------- /googledrivev2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googledrivev2.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/DESCRIPTION -------------------------------------------------------------------------------- /googledrivev2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googledrivev2.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/NAMESPACE -------------------------------------------------------------------------------- /googledrivev2.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/README.md -------------------------------------------------------------------------------- /googledrivev2.auto/man/About.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/man/About.Rd -------------------------------------------------------------------------------- /googledrivev2.auto/man/App.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/man/App.Rd -------------------------------------------------------------------------------- /googledrivev2.auto/man/App.icons.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/man/App.icons.Rd -------------------------------------------------------------------------------- /googledrivev2.auto/man/AppList.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/man/AppList.Rd -------------------------------------------------------------------------------- /googledrivev2.auto/man/Change.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/man/Change.Rd -------------------------------------------------------------------------------- /googledrivev2.auto/man/Channel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/man/Channel.Rd -------------------------------------------------------------------------------- /googledrivev2.auto/man/ChildList.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/man/ChildList.Rd -------------------------------------------------------------------------------- /googledrivev2.auto/man/Comment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/man/Comment.Rd -------------------------------------------------------------------------------- /googledrivev2.auto/man/File.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/man/File.Rd -------------------------------------------------------------------------------- /googledrivev2.auto/man/FileList.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/man/FileList.Rd -------------------------------------------------------------------------------- /googledrivev2.auto/man/Property.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/man/Property.Rd -------------------------------------------------------------------------------- /googledrivev2.auto/man/Revision.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/man/Revision.Rd -------------------------------------------------------------------------------- /googledrivev2.auto/man/TeamDrive.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/man/TeamDrive.Rd -------------------------------------------------------------------------------- /googledrivev2.auto/man/User.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/man/User.Rd -------------------------------------------------------------------------------- /googledrivev2.auto/man/about.get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/man/about.get.Rd -------------------------------------------------------------------------------- /googledrivev2.auto/man/apps.get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/man/apps.get.Rd -------------------------------------------------------------------------------- /googledrivev2.auto/man/apps.list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/man/apps.list.Rd -------------------------------------------------------------------------------- /googledrivev2.auto/man/files.get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/man/files.get.Rd -------------------------------------------------------------------------------- /googledrivev2.auto/man/is.NullOb.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/man/is.NullOb.Rd -------------------------------------------------------------------------------- /googledrivev2.auto/man/rmNullObs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/man/rmNullObs.Rd -------------------------------------------------------------------------------- /googledrivev2.auto/man/team.get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/man/team.get.Rd -------------------------------------------------------------------------------- /googledrivev2.auto/man/team.list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev2.auto/man/team.list.Rd -------------------------------------------------------------------------------- /googledrivev3.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev3.auto/.Rbuildignore -------------------------------------------------------------------------------- /googledrivev3.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googledrivev3.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev3.auto/DESCRIPTION -------------------------------------------------------------------------------- /googledrivev3.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googledrivev3.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev3.auto/NAMESPACE -------------------------------------------------------------------------------- /googledrivev3.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev3.auto/README.md -------------------------------------------------------------------------------- /googledrivev3.auto/man/About.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev3.auto/man/About.Rd -------------------------------------------------------------------------------- /googledrivev3.auto/man/Change.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev3.auto/man/Change.Rd -------------------------------------------------------------------------------- /googledrivev3.auto/man/Channel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev3.auto/man/Channel.Rd -------------------------------------------------------------------------------- /googledrivev3.auto/man/Comment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev3.auto/man/Comment.Rd -------------------------------------------------------------------------------- /googledrivev3.auto/man/File.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev3.auto/man/File.Rd -------------------------------------------------------------------------------- /googledrivev3.auto/man/FileList.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev3.auto/man/FileList.Rd -------------------------------------------------------------------------------- /googledrivev3.auto/man/Reply.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev3.auto/man/Reply.Rd -------------------------------------------------------------------------------- /googledrivev3.auto/man/ReplyList.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev3.auto/man/ReplyList.Rd -------------------------------------------------------------------------------- /googledrivev3.auto/man/Revision.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev3.auto/man/Revision.Rd -------------------------------------------------------------------------------- /googledrivev3.auto/man/TeamDrive.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev3.auto/man/TeamDrive.Rd -------------------------------------------------------------------------------- /googledrivev3.auto/man/User.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev3.auto/man/User.Rd -------------------------------------------------------------------------------- /googledrivev3.auto/man/about.get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev3.auto/man/about.get.Rd -------------------------------------------------------------------------------- /googledrivev3.auto/man/files.get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev3.auto/man/files.get.Rd -------------------------------------------------------------------------------- /googledrivev3.auto/man/is.NullOb.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev3.auto/man/is.NullOb.Rd -------------------------------------------------------------------------------- /googledrivev3.auto/man/rmNullObs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev3.auto/man/rmNullObs.Rd -------------------------------------------------------------------------------- /googledrivev3.auto/man/team.get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev3.auto/man/team.get.Rd -------------------------------------------------------------------------------- /googledrivev3.auto/man/team.list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googledrivev3.auto/man/team.list.Rd -------------------------------------------------------------------------------- /googlefirebasedynamiclinksv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlefirebasedynamiclinksv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlefirebaserulesv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlefirebaserulesv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlefitnessv1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlefitnessv1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlefitnessv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlefitnessv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlefitnessv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlefitnessv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlefitnessv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlefitnessv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlefitnessv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlefitnessv1.auto/README.md -------------------------------------------------------------------------------- /googlefitnessv1.auto/man/Dataset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlefitnessv1.auto/man/Dataset.Rd -------------------------------------------------------------------------------- /googlefitnessv1.auto/man/Device.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlefitnessv1.auto/man/Device.Rd -------------------------------------------------------------------------------- /googlefitnessv1.auto/man/Session.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlefitnessv1.auto/man/Session.Rd -------------------------------------------------------------------------------- /googlefitnessv1.auto/man/Value.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlefitnessv1.auto/man/Value.Rd -------------------------------------------------------------------------------- /googlefusiontablesv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlefusiontablesv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlefusiontablesv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlefusiontablesv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlefusiontablesv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlefusiontablesv1.auto/README.md -------------------------------------------------------------------------------- /googlefusiontablesv2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlefusiontablesv2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlefusiontablesv2.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlefusiontablesv2.auto/NAMESPACE -------------------------------------------------------------------------------- /googlefusiontablesv2.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlefusiontablesv2.auto/README.md -------------------------------------------------------------------------------- /googlegamesConfigurationv1configuration.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlegamesConfigurationv1configuration.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlegamesManagementv1management.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlegamesManagementv1management.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlegamesv1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegamesv1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlegamesv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlegamesv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegamesv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlegamesv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlegamesv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegamesv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlegamesv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegamesv1.auto/README.md -------------------------------------------------------------------------------- /googlegamesv1.auto/man/Category.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegamesv1.auto/man/Category.Rd -------------------------------------------------------------------------------- /googlegamesv1.auto/man/Instance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegamesv1.auto/man/Instance.Rd -------------------------------------------------------------------------------- /googlegamesv1.auto/man/Played.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegamesv1.auto/man/Played.Rd -------------------------------------------------------------------------------- /googlegamesv1.auto/man/Player.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegamesv1.auto/man/Player.Rd -------------------------------------------------------------------------------- /googlegamesv1.auto/man/PushToken.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegamesv1.auto/man/PushToken.Rd -------------------------------------------------------------------------------- /googlegamesv1.auto/man/Quest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegamesv1.auto/man/Quest.Rd -------------------------------------------------------------------------------- /googlegamesv1.auto/man/Room.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegamesv1.auto/man/Room.Rd -------------------------------------------------------------------------------- /googlegamesv1.auto/man/RoomList.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegamesv1.auto/man/RoomList.Rd -------------------------------------------------------------------------------- /googlegamesv1.auto/man/Snapshot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegamesv1.auto/man/Snapshot.Rd -------------------------------------------------------------------------------- /googlegamesv1.auto/man/is.NullOb.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegamesv1.auto/man/is.NullOb.Rd -------------------------------------------------------------------------------- /googlegamesv1.auto/man/rmNullObs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegamesv1.auto/man/rmNullObs.Rd -------------------------------------------------------------------------------- /googlegamesv1.auto/man/rooms.get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegamesv1.auto/man/rooms.get.Rd -------------------------------------------------------------------------------- /googlegenomicsv1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegenomicsv1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlegenomicsv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlegenomicsv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegenomicsv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlegenomicsv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlegenomicsv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegenomicsv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlegenomicsv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegenomicsv1.auto/README.md -------------------------------------------------------------------------------- /googlegenomicsv1.auto/man/Empty.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegenomicsv1.auto/man/Empty.Rd -------------------------------------------------------------------------------- /googlegenomicsv1.auto/man/Entry.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegenomicsv1.auto/man/Entry.Rd -------------------------------------------------------------------------------- /googlegenomicsv1.auto/man/Exon.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegenomicsv1.auto/man/Exon.Rd -------------------------------------------------------------------------------- /googlegenomicsv1.auto/man/Policy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegenomicsv1.auto/man/Policy.Rd -------------------------------------------------------------------------------- /googlegenomicsv1.auto/man/Range.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegenomicsv1.auto/man/Range.Rd -------------------------------------------------------------------------------- /googlegenomicsv1.auto/man/Read.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegenomicsv1.auto/man/Read.Rd -------------------------------------------------------------------------------- /googlegenomicsv1.auto/man/Status.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegenomicsv1.auto/man/Status.Rd -------------------------------------------------------------------------------- /googlegenomicsv1alpha2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlegenomicsv1alpha2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlegmailv1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegmailv1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlegmailv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlegmailv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegmailv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlegmailv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlegmailv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegmailv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlegmailv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegmailv1.auto/README.md -------------------------------------------------------------------------------- /googlegmailv1.auto/man/Draft.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegmailv1.auto/man/Draft.Rd -------------------------------------------------------------------------------- /googlegmailv1.auto/man/Filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegmailv1.auto/man/Filter.Rd -------------------------------------------------------------------------------- /googlegmailv1.auto/man/History.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegmailv1.auto/man/History.Rd -------------------------------------------------------------------------------- /googlegmailv1.auto/man/Label.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegmailv1.auto/man/Label.Rd -------------------------------------------------------------------------------- /googlegmailv1.auto/man/Message.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegmailv1.auto/man/Message.Rd -------------------------------------------------------------------------------- /googlegmailv1.auto/man/Profile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegmailv1.auto/man/Profile.Rd -------------------------------------------------------------------------------- /googlegmailv1.auto/man/SendAs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegmailv1.auto/man/SendAs.Rd -------------------------------------------------------------------------------- /googlegmailv1.auto/man/SmimeInfo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegmailv1.auto/man/SmimeInfo.Rd -------------------------------------------------------------------------------- /googlegmailv1.auto/man/SmtpMsa.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegmailv1.auto/man/SmtpMsa.Rd -------------------------------------------------------------------------------- /googlegmailv1.auto/man/Thread.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegmailv1.auto/man/Thread.Rd -------------------------------------------------------------------------------- /googlegmailv1.auto/man/is.NullOb.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegmailv1.auto/man/is.NullOb.Rd -------------------------------------------------------------------------------- /googlegmailv1.auto/man/rmNullObs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlegmailv1.auto/man/rmNullObs.Rd -------------------------------------------------------------------------------- /googlegroupsmigrationv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlegroupsmigrationv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlegroupssettingsv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlegroupssettingsv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleiamv1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleiamv1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googleiamv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleiamv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleiamv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googleiamv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleiamv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleiamv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googleiamv1.auto/R/iam_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleiamv1.auto/R/iam_functions.R -------------------------------------------------------------------------------- /googleiamv1.auto/R/iam_objects.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleiamv1.auto/R/iam_objects.R -------------------------------------------------------------------------------- /googleiamv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleiamv1.auto/README.md -------------------------------------------------------------------------------- /googleiamv1.auto/man/AuditData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleiamv1.auto/man/AuditData.Rd -------------------------------------------------------------------------------- /googleiamv1.auto/man/Binding.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleiamv1.auto/man/Binding.Rd -------------------------------------------------------------------------------- /googleiamv1.auto/man/Empty.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleiamv1.auto/man/Empty.Rd -------------------------------------------------------------------------------- /googleiamv1.auto/man/Policy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleiamv1.auto/man/Policy.Rd -------------------------------------------------------------------------------- /googleiamv1.auto/man/PolicyDelta.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleiamv1.auto/man/PolicyDelta.Rd -------------------------------------------------------------------------------- /googleiamv1.auto/man/Role.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleiamv1.auto/man/Role.Rd -------------------------------------------------------------------------------- /googleiamv1.auto/man/is.NullOb.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleiamv1.auto/man/is.NullOb.Rd -------------------------------------------------------------------------------- /googleiamv1.auto/man/rmNullObs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleiamv1.auto/man/rmNullObs.Rd -------------------------------------------------------------------------------- /googleidentitytoolkitv3.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleidentitytoolkitv3.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlekgsearchv1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlekgsearchv1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlekgsearchv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlekgsearchv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlekgsearchv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlekgsearchv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlekgsearchv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlekgsearchv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlekgsearchv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlekgsearchv1.auto/README.md -------------------------------------------------------------------------------- /googlelanguagev1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlelanguagev1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlelanguagev1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlelanguagev1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlelanguagev1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlelanguagev1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlelanguagev1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlelanguagev1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlelanguagev1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlelanguagev1.auto/README.md -------------------------------------------------------------------------------- /googlelanguagev1.auto/man/Entity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlelanguagev1.auto/man/Entity.Rd -------------------------------------------------------------------------------- /googlelanguagev1.auto/man/Status.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlelanguagev1.auto/man/Status.Rd -------------------------------------------------------------------------------- /googlelanguagev1.auto/man/Token.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlelanguagev1.auto/man/Token.Rd -------------------------------------------------------------------------------- /googlelanguagev1beta1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlelanguagev1beta1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlelicensingv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlelicensingv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlelicensingv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlelicensingv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlelicensingv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlelicensingv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlelicensingv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlelicensingv1.auto/README.md -------------------------------------------------------------------------------- /googleloggingv2.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleloggingv2.auto/.Rbuildignore -------------------------------------------------------------------------------- /googleloggingv2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleloggingv2.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleloggingv2.auto/DESCRIPTION -------------------------------------------------------------------------------- /googleloggingv2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleloggingv2.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleloggingv2.auto/NAMESPACE -------------------------------------------------------------------------------- /googleloggingv2.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleloggingv2.auto/README.md -------------------------------------------------------------------------------- /googleloggingv2.auto/man/Empty.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleloggingv2.auto/man/Empty.Rd -------------------------------------------------------------------------------- /googleloggingv2.auto/man/LogLine.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleloggingv2.auto/man/LogLine.Rd -------------------------------------------------------------------------------- /googleloggingv2.auto/man/LogSink.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleloggingv2.auto/man/LogSink.Rd -------------------------------------------------------------------------------- /googleloggingv2beta1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleloggingv2beta1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleloggingv2beta1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleloggingv2beta1.auto/NAMESPACE -------------------------------------------------------------------------------- /googleloggingv2beta1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleloggingv2beta1.auto/README.md -------------------------------------------------------------------------------- /googlemanufacturersv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlemanufacturersv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlemirrorv1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlemirrorv1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlemirrorv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlemirrorv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlemirrorv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlemirrorv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlemirrorv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlemirrorv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlemirrorv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlemirrorv1.auto/README.md -------------------------------------------------------------------------------- /googlemirrorv1.auto/man/Account.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlemirrorv1.auto/man/Account.Rd -------------------------------------------------------------------------------- /googlemirrorv1.auto/man/Command.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlemirrorv1.auto/man/Command.Rd -------------------------------------------------------------------------------- /googlemirrorv1.auto/man/Contact.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlemirrorv1.auto/man/Contact.Rd -------------------------------------------------------------------------------- /googlemirrorv1.auto/man/Location.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlemirrorv1.auto/man/Location.Rd -------------------------------------------------------------------------------- /googlemirrorv1.auto/man/MenuItem.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlemirrorv1.auto/man/MenuItem.Rd -------------------------------------------------------------------------------- /googlemirrorv1.auto/man/Setting.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlemirrorv1.auto/man/Setting.Rd -------------------------------------------------------------------------------- /googlemirrorv1.auto/man/UserData.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlemirrorv1.auto/man/UserData.Rd -------------------------------------------------------------------------------- /googlemlv1beta1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlemlv1beta1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlemlv1beta1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlemlv1beta1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlemlv1beta1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlemlv1beta1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlemlv1beta1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlemlv1beta1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlemlv1beta1.auto/R/ml_objects.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlemlv1beta1.auto/R/ml_objects.R -------------------------------------------------------------------------------- /googlemlv1beta1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlemlv1beta1.auto/README.md -------------------------------------------------------------------------------- /googlemonitoringv3.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlemonitoringv3.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlemonitoringv3.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlemonitoringv3.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlemonitoringv3.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlemonitoringv3.auto/NAMESPACE -------------------------------------------------------------------------------- /googlemonitoringv3.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlemonitoringv3.auto/README.md -------------------------------------------------------------------------------- /googlemonitoringv3.auto/man/Type.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlemonitoringv3.auto/man/Type.Rd -------------------------------------------------------------------------------- /googleoauth2v1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleoauth2v1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googleoauth2v1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleoauth2v1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleoauth2v1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googleoauth2v1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleoauth2v1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleoauth2v1.auto/NAMESPACE -------------------------------------------------------------------------------- /googleoauth2v1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleoauth2v1.auto/README.md -------------------------------------------------------------------------------- /googleoauth2v1.auto/man/Jwk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleoauth2v1.auto/man/Jwk.Rd -------------------------------------------------------------------------------- /googleoauth2v1.auto/man/Jwk.keys.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleoauth2v1.auto/man/Jwk.keys.Rd -------------------------------------------------------------------------------- /googleoauth2v1.auto/man/Raw.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleoauth2v1.auto/man/Raw.Rd -------------------------------------------------------------------------------- /googleoauth2v1.auto/man/X509.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleoauth2v1.auto/man/X509.Rd -------------------------------------------------------------------------------- /googleoauth2v2.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleoauth2v2.auto/.Rbuildignore -------------------------------------------------------------------------------- /googleoauth2v2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleoauth2v2.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleoauth2v2.auto/DESCRIPTION -------------------------------------------------------------------------------- /googleoauth2v2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleoauth2v2.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleoauth2v2.auto/NAMESPACE -------------------------------------------------------------------------------- /googleoauth2v2.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleoauth2v2.auto/README.md -------------------------------------------------------------------------------- /googleoauth2v2.auto/man/Jwk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleoauth2v2.auto/man/Jwk.Rd -------------------------------------------------------------------------------- /googleoauth2v2.auto/man/Jwk.keys.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleoauth2v2.auto/man/Jwk.keys.Rd -------------------------------------------------------------------------------- /googlepagespeedonlinev1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlepagespeedonlinev1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlepagespeedonlinev2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlepagespeedonlinev2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlepartnersv2.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepartnersv2.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlepartnersv2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlepartnersv2.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepartnersv2.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlepartnersv2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlepartnersv2.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepartnersv2.auto/NAMESPACE -------------------------------------------------------------------------------- /googlepartnersv2.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepartnersv2.auto/README.md -------------------------------------------------------------------------------- /googlepartnersv2.auto/man/LatLng.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepartnersv2.auto/man/LatLng.Rd -------------------------------------------------------------------------------- /googlepartnersv2.auto/man/Lead.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepartnersv2.auto/man/Lead.Rd -------------------------------------------------------------------------------- /googlepartnersv2.auto/man/Money.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepartnersv2.auto/man/Money.Rd -------------------------------------------------------------------------------- /googlepartnersv2.auto/man/Rank.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepartnersv2.auto/man/Rank.Rd -------------------------------------------------------------------------------- /googlepeoplev1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepeoplev1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlepeoplev1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlepeoplev1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepeoplev1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlepeoplev1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlepeoplev1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepeoplev1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlepeoplev1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepeoplev1.auto/README.md -------------------------------------------------------------------------------- /googlepeoplev1.auto/man/Address.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepeoplev1.auto/man/Address.Rd -------------------------------------------------------------------------------- /googlepeoplev1.auto/man/Birthday.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepeoplev1.auto/man/Birthday.Rd -------------------------------------------------------------------------------- /googlepeoplev1.auto/man/Date.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepeoplev1.auto/man/Date.Rd -------------------------------------------------------------------------------- /googlepeoplev1.auto/man/Event.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepeoplev1.auto/man/Event.Rd -------------------------------------------------------------------------------- /googlepeoplev1.auto/man/Gender.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepeoplev1.auto/man/Gender.Rd -------------------------------------------------------------------------------- /googlepeoplev1.auto/man/ImClient.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepeoplev1.auto/man/ImClient.Rd -------------------------------------------------------------------------------- /googlepeoplev1.auto/man/Interest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepeoplev1.auto/man/Interest.Rd -------------------------------------------------------------------------------- /googlepeoplev1.auto/man/Locale.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepeoplev1.auto/man/Locale.Rd -------------------------------------------------------------------------------- /googlepeoplev1.auto/man/Name.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepeoplev1.auto/man/Name.Rd -------------------------------------------------------------------------------- /googlepeoplev1.auto/man/Nickname.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepeoplev1.auto/man/Nickname.Rd -------------------------------------------------------------------------------- /googlepeoplev1.auto/man/Person.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepeoplev1.auto/man/Person.Rd -------------------------------------------------------------------------------- /googlepeoplev1.auto/man/Photo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepeoplev1.auto/man/Photo.Rd -------------------------------------------------------------------------------- /googlepeoplev1.auto/man/Relation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepeoplev1.auto/man/Relation.Rd -------------------------------------------------------------------------------- /googlepeoplev1.auto/man/Skill.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepeoplev1.auto/man/Skill.Rd -------------------------------------------------------------------------------- /googlepeoplev1.auto/man/Source.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepeoplev1.auto/man/Source.Rd -------------------------------------------------------------------------------- /googlepeoplev1.auto/man/Tagline.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepeoplev1.auto/man/Tagline.Rd -------------------------------------------------------------------------------- /googlepeoplev1.auto/man/Url.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepeoplev1.auto/man/Url.Rd -------------------------------------------------------------------------------- /googlepeoplev1.auto/man/get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepeoplev1.auto/man/get.Rd -------------------------------------------------------------------------------- /googleplaymoviespartnerv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleplaymoviespartnerv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleplusDomainsv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleplusDomainsv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleplusDomainsv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleplusDomainsv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googleplusDomainsv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleplusDomainsv1.auto/README.md -------------------------------------------------------------------------------- /googleplusDomainsv1.auto/man/Acl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleplusDomainsv1.auto/man/Acl.Rd -------------------------------------------------------------------------------- /googleplusv1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleplusv1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googleplusv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleplusv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleplusv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googleplusv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleplusv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleplusv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googleplusv1.auto/R/plus_objects.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleplusv1.auto/R/plus_objects.R -------------------------------------------------------------------------------- /googleplusv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleplusv1.auto/README.md -------------------------------------------------------------------------------- /googleplusv1.auto/man/Acl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleplusv1.auto/man/Acl.Rd -------------------------------------------------------------------------------- /googleplusv1.auto/man/Activity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleplusv1.auto/man/Activity.Rd -------------------------------------------------------------------------------- /googleplusv1.auto/man/Comment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleplusv1.auto/man/Comment.Rd -------------------------------------------------------------------------------- /googleplusv1.auto/man/PeopleFeed.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleplusv1.auto/man/PeopleFeed.Rd -------------------------------------------------------------------------------- /googleplusv1.auto/man/Person.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleplusv1.auto/man/Person.Rd -------------------------------------------------------------------------------- /googleplusv1.auto/man/Place.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleplusv1.auto/man/Place.Rd -------------------------------------------------------------------------------- /googleplusv1.auto/man/is.NullOb.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleplusv1.auto/man/is.NullOb.Rd -------------------------------------------------------------------------------- /googleplusv1.auto/man/people.get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleplusv1.auto/man/people.get.Rd -------------------------------------------------------------------------------- /googleplusv1.auto/man/rmNullObs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleplusv1.auto/man/rmNullObs.Rd -------------------------------------------------------------------------------- /googlepredictionv12.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlepredictionv12.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlepredictionv12.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepredictionv12.auto/NAMESPACE -------------------------------------------------------------------------------- /googlepredictionv12.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepredictionv12.auto/README.md -------------------------------------------------------------------------------- /googlepredictionv13.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlepredictionv13.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlepredictionv13.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepredictionv13.auto/NAMESPACE -------------------------------------------------------------------------------- /googlepredictionv13.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepredictionv13.auto/README.md -------------------------------------------------------------------------------- /googlepredictionv14.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlepredictionv14.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlepredictionv15.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlepredictionv15.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlepredictionv16.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlepredictionv16.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleproximitybeaconv1beta1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleproximitybeaconv1beta1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlepubsubv1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepubsubv1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlepubsubv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlepubsubv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepubsubv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlepubsubv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlepubsubv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepubsubv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlepubsubv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepubsubv1.auto/README.md -------------------------------------------------------------------------------- /googlepubsubv1.auto/man/Empty.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepubsubv1.auto/man/Empty.Rd -------------------------------------------------------------------------------- /googlepubsubv1.auto/man/Policy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepubsubv1.auto/man/Policy.Rd -------------------------------------------------------------------------------- /googlepubsubv1.auto/man/Topic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlepubsubv1.auto/man/Topic.Rd -------------------------------------------------------------------------------- /googlepubsubv1beta1a.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlepubsubv1beta1a.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlepubsubv1beta2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlepubsubv1beta2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleqpxExpressv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleqpxExpressv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleqpxExpressv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleqpxExpressv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googleqpxExpressv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleqpxExpressv1.auto/README.md -------------------------------------------------------------------------------- /googlereplicapoolupdaterv1beta1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlereplicapoolupdaterv1beta1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlereplicapoolv1beta1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlereplicapoolv1beta1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlereplicapoolv1beta2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlereplicapoolv1beta2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleresellerv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleresellerv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleresellerv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googleresellerv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleresellerv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleresellerv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googleresellerv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleresellerv1.auto/README.md -------------------------------------------------------------------------------- /googleresourceviewsv1beta1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleresourceviewsv1beta1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleresourceviewsv1beta2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleresourceviewsv1beta2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleruntimeconfigv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleruntimeconfigv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleruntimeconfigv1beta1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleruntimeconfigv1beta1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlesafebrowsingv4.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlesafebrowsingv4.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlescriptv1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlescriptv1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlescriptv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlescriptv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlescriptv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlescriptv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlescriptv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlescriptv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlescriptv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlescriptv1.auto/README.md -------------------------------------------------------------------------------- /googlescriptv1.auto/man/Status.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlescriptv1.auto/man/Status.Rd -------------------------------------------------------------------------------- /googlesearchconsolev1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlesearchconsolev1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleservicecontrolv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleservicecontrolv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleservicemanagementv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleservicemanagementv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleserviceuserv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleserviceuserv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlesheetsv4.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlesheetsv4.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlesheetsv4.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlesheetsv4.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlesheetsv4.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlesheetsv4.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlesheetsv4.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlesheetsv4.auto/NAMESPACE -------------------------------------------------------------------------------- /googlesheetsv4.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlesheetsv4.auto/README.md -------------------------------------------------------------------------------- /googlesheetsv4.auto/man/Border.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlesheetsv4.auto/man/Border.Rd -------------------------------------------------------------------------------- /googlesheetsv4.auto/man/Color.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlesheetsv4.auto/man/Color.Rd -------------------------------------------------------------------------------- /googlesheetsv4.auto/man/Sheet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlesheetsv4.auto/man/Sheet.Rd -------------------------------------------------------------------------------- /googlesiteVerificationv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlesiteVerificationv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleslidesv1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleslidesv1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googleslidesv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleslidesv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleslidesv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googleslidesv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleslidesv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleslidesv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googleslidesv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleslidesv1.auto/README.md -------------------------------------------------------------------------------- /googleslidesv1.auto/man/Bullet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleslidesv1.auto/man/Bullet.Rd -------------------------------------------------------------------------------- /googleslidesv1.auto/man/Group.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleslidesv1.auto/man/Group.Rd -------------------------------------------------------------------------------- /googleslidesv1.auto/man/Image.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleslidesv1.auto/man/Image.Rd -------------------------------------------------------------------------------- /googleslidesv1.auto/man/Line.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleslidesv1.auto/man/Line.Rd -------------------------------------------------------------------------------- /googleslidesv1.auto/man/Link.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleslidesv1.auto/man/Link.Rd -------------------------------------------------------------------------------- /googleslidesv1.auto/man/List.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleslidesv1.auto/man/List.Rd -------------------------------------------------------------------------------- /googleslidesv1.auto/man/Page.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleslidesv1.auto/man/Page.Rd -------------------------------------------------------------------------------- /googleslidesv1.auto/man/Range.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleslidesv1.auto/man/Range.Rd -------------------------------------------------------------------------------- /googleslidesv1.auto/man/Shadow.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleslidesv1.auto/man/Shadow.Rd -------------------------------------------------------------------------------- /googleslidesv1.auto/man/Shape.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleslidesv1.auto/man/Shape.Rd -------------------------------------------------------------------------------- /googleslidesv1.auto/man/Size.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleslidesv1.auto/man/Size.Rd -------------------------------------------------------------------------------- /googleslidesv1.auto/man/Table.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleslidesv1.auto/man/Table.Rd -------------------------------------------------------------------------------- /googleslidesv1.auto/man/Video.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleslidesv1.auto/man/Video.Rd -------------------------------------------------------------------------------- /googlesourcerepov1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlesourcerepov1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlesourcerepov1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlesourcerepov1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlesourcerepov1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlesourcerepov1.auto/README.md -------------------------------------------------------------------------------- /googlespannerv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlespannerv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlespannerv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlespannerv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlespannerv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlespannerv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlespannerv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlespannerv1.auto/README.md -------------------------------------------------------------------------------- /googlespannerv1.auto/man/Empty.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlespannerv1.auto/man/Empty.Rd -------------------------------------------------------------------------------- /googlespannerv1.auto/man/Field.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlespannerv1.auto/man/Field.Rd -------------------------------------------------------------------------------- /googlespannerv1.auto/man/Rule.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlespannerv1.auto/man/Rule.Rd -------------------------------------------------------------------------------- /googlespannerv1.auto/man/Type.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlespannerv1.auto/man/Type.Rd -------------------------------------------------------------------------------- /googlespannerv1.auto/man/Write.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlespannerv1.auto/man/Write.Rd -------------------------------------------------------------------------------- /googlespectrumv1explorer.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlespectrumv1explorer.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlespeechv1beta1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlespeechv1beta1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlesqladminv1beta3.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlesqladminv1beta3.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlesqladminv1beta4.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlesqladminv1beta4.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlestoragetransferv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlestoragetransferv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlestoragev1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlestoragev1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlestoragev1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlestoragev1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlestoragev1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlestoragev1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlestoragev1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlestoragev1.auto/README.md -------------------------------------------------------------------------------- /googlestoragev1beta1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlestoragev1beta1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlestoragev1beta2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlestoragev1beta2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlesurveysv2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlesurveysv2.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlesurveysv2.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlesurveysv2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlesurveysv2.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlesurveysv2.auto/NAMESPACE -------------------------------------------------------------------------------- /googlesurveysv2.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlesurveysv2.auto/README.md -------------------------------------------------------------------------------- /googlesurveysv2.auto/man/get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlesurveysv2.auto/man/get.Rd -------------------------------------------------------------------------------- /googlesurveysv2.auto/man/list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlesurveysv2.auto/man/list.Rd -------------------------------------------------------------------------------- /googlesurveysv2.auto/man/start.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlesurveysv2.auto/man/start.Rd -------------------------------------------------------------------------------- /googlesurveysv2.auto/man/stop.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlesurveysv2.auto/man/stop.Rd -------------------------------------------------------------------------------- /googletagmanagerv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googletagmanagerv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googletagmanagerv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletagmanagerv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googletagmanagerv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletagmanagerv1.auto/README.md -------------------------------------------------------------------------------- /googletaskqueuev1beta1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googletaskqueuev1beta1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googletaskqueuev1beta2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googletaskqueuev1beta2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googletasksv1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletasksv1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googletasksv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googletasksv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletasksv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googletasksv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googletasksv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletasksv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googletasksv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletasksv1.auto/README.md -------------------------------------------------------------------------------- /googletasksv1.auto/man/Task.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletasksv1.auto/man/Task.Rd -------------------------------------------------------------------------------- /googletasksv1.auto/man/Tasks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletasksv1.auto/man/Tasks.Rd -------------------------------------------------------------------------------- /googletasksv1.auto/man/clear.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletasksv1.auto/man/clear.Rd -------------------------------------------------------------------------------- /googletasksv1.auto/man/delete.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletasksv1.auto/man/delete.Rd -------------------------------------------------------------------------------- /googletasksv1.auto/man/get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletasksv1.auto/man/get.Rd -------------------------------------------------------------------------------- /googletasksv1.auto/man/insert.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletasksv1.auto/man/insert.Rd -------------------------------------------------------------------------------- /googletasksv1.auto/man/list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletasksv1.auto/man/list.Rd -------------------------------------------------------------------------------- /googletasksv1.auto/man/move.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletasksv1.auto/man/move.Rd -------------------------------------------------------------------------------- /googletasksv1.auto/man/patch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletasksv1.auto/man/patch.Rd -------------------------------------------------------------------------------- /googletasksv1.auto/man/update.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletasksv1.auto/man/update.Rd -------------------------------------------------------------------------------- /googletoolresultsv1beta3.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googletoolresultsv1beta3.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googletoolresultsv1beta3firstparty.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googletoolresultsv1beta3firstparty.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googletracingv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googletracingv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletracingv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googletracingv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googletracingv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletracingv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googletracingv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletracingv1.auto/README.md -------------------------------------------------------------------------------- /googletracingv1.auto/man/Empty.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletracingv1.auto/man/Empty.Rd -------------------------------------------------------------------------------- /googletracingv1.auto/man/Link.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletracingv1.auto/man/Link.Rd -------------------------------------------------------------------------------- /googletracingv1.auto/man/Span.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletracingv1.auto/man/Span.Rd -------------------------------------------------------------------------------- /googletracingv1.auto/man/Trace.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletracingv1.auto/man/Trace.Rd -------------------------------------------------------------------------------- /googletranslatev2.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googletranslatev2.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googletranslatev2.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletranslatev2.auto/NAMESPACE -------------------------------------------------------------------------------- /googletranslatev2.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googletranslatev2.auto/README.md -------------------------------------------------------------------------------- /googleurlshortenerv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleurlshortenerv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlevisionv1.auto/.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlevisionv1.auto/.Rbuildignore -------------------------------------------------------------------------------- /googlevisionv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlevisionv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlevisionv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlevisionv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlevisionv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlevisionv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlevisionv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlevisionv1.auto/README.md -------------------------------------------------------------------------------- /googlevisionv1.auto/man/Block.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlevisionv1.auto/man/Block.Rd -------------------------------------------------------------------------------- /googlevisionv1.auto/man/Color.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlevisionv1.auto/man/Color.Rd -------------------------------------------------------------------------------- /googlevisionv1.auto/man/Image.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlevisionv1.auto/man/Image.Rd -------------------------------------------------------------------------------- /googlevisionv1.auto/man/LatLng.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlevisionv1.auto/man/LatLng.Rd -------------------------------------------------------------------------------- /googlevisionv1.auto/man/Page.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlevisionv1.auto/man/Page.Rd -------------------------------------------------------------------------------- /googlevisionv1.auto/man/Status.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlevisionv1.auto/man/Status.Rd -------------------------------------------------------------------------------- /googlevisionv1.auto/man/Symbol.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlevisionv1.auto/man/Symbol.Rd -------------------------------------------------------------------------------- /googlevisionv1.auto/man/Vertex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlevisionv1.auto/man/Vertex.Rd -------------------------------------------------------------------------------- /googlevisionv1.auto/man/Word.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlevisionv1.auto/man/Word.Rd -------------------------------------------------------------------------------- /googlewebfontsv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlewebfontsv1.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlewebfontsv1.auto/DESCRIPTION -------------------------------------------------------------------------------- /googlewebfontsv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlewebfontsv1.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlewebfontsv1.auto/NAMESPACE -------------------------------------------------------------------------------- /googlewebfontsv1.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlewebfontsv1.auto/README.md -------------------------------------------------------------------------------- /googlewebfontsv1.auto/man/list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlewebfontsv1.auto/man/list.Rd -------------------------------------------------------------------------------- /googlewebmastersv3.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googlewebmastersv3.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googlewebmastersv3.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlewebmastersv3.auto/NAMESPACE -------------------------------------------------------------------------------- /googlewebmastersv3.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googlewebmastersv3.auto/README.md -------------------------------------------------------------------------------- /googleyoutubeAnalyticsv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleyoutubeAnalyticsv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleyoutubeAnalyticsv1beta1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleyoutubeAnalyticsv1beta1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleyoutubereportingv1.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleyoutubereportingv1.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleyoutubev3.auto/.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /googleyoutubev3.auto/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleyoutubev3.auto/DESCRIPTION -------------------------------------------------------------------------------- /googleyoutubev3.auto/LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /googleyoutubev3.auto/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleyoutubev3.auto/NAMESPACE -------------------------------------------------------------------------------- /googleyoutubev3.auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleyoutubev3.auto/README.md -------------------------------------------------------------------------------- /googleyoutubev3.auto/man/Video.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/autoGoogleAPI/HEAD/googleyoutubev3.auto/man/Video.Rd --------------------------------------------------------------------------------