├── .gitattributes ├── .gitignore ├── .gitmodules ├── Assets └── LOGO.png ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Docs └── BigQuery │ ├── BigQueryDemo.md │ ├── screenshot101.png │ ├── screenshot102.png │ ├── screenshot104.png │ ├── screenshot105.png │ ├── screenshot106.png │ ├── screenshot107.png │ ├── screenshot108.png │ ├── screenshot109.png │ ├── screenshot110.png │ └── screenshot111.png ├── Google.PowerShell.DotnetCore ├── Google.PowerShell.DotnetCore.csproj ├── Nuget.config └── README.md ├── Google.PowerShell.IntegrationTests ├── AdditionalServiceAccountCredentials.json.enc ├── BigQuery │ ├── BigQuery.BqDataset.Tests.ps1 │ ├── BigQuery.BqJob.Tests.ps1 │ ├── BigQuery.BqTable.Tests.ps1 │ ├── BigQuery.BqTableRow.Tests.ps1 │ ├── BqCmdlets.ps1 │ ├── classics.avro │ ├── classics.csv │ ├── classics.json │ ├── classics_broken.avro │ ├── classics_broken.csv │ ├── classics_broken.json │ ├── classics_jagged.csv │ ├── classics_large.csv │ ├── otherschema.csv │ ├── schema.json │ └── schema_mini.json ├── CloudResourceManager │ ├── CloudResourceManager.GcpProject.Tests.ps1 │ └── CloudResourceManager.IamPolicy.Tests.ps1 ├── Compute │ ├── Compute.GceAddress.Tests.ps1 │ ├── Compute.GceAttachedDiskConfig.Tests.ps1 │ ├── Compute.GceBackendService.Tests.ps1 │ ├── Compute.GceDisk.Tests.ps1 │ ├── Compute.GceFirewall.Tests.ps1 │ ├── Compute.GceForwardingRule.Tests.ps1 │ ├── Compute.GceHealthCheck.Tests.ps1 │ ├── Compute.GceImage.Tests.ps1 │ ├── Compute.GceInstance.Tests.ps1 │ └── Compute.GceInstanceTemplate.Tests.ps1 ├── Compute2 │ ├── Compute.GceMachineType.Tests.ps1 │ ├── Compute.GceManagedInstanceGroup.Tests.ps1 │ ├── Compute.GceNetwork.Tests.ps1 │ ├── Compute.GceRoute.Tests.ps1 │ ├── Compute.GceServiceAccount.Tests.ps1 │ ├── Compute.GceSnapshot.Tests.ps1 │ ├── Compute.GceTargetPool.Tests.ps1 │ ├── Compute.GceTargetProxy.Tests.ps1 │ └── Compute.GceUrlMap.Tests.ps1 ├── Container │ └── Container.GkeCluster.Tests.ps1 ├── Container2 │ └── Container.GkeNodePool.Tests.ps1 ├── Dns │ ├── Dns.GcdChange.Tests.ps1 │ ├── Dns.GcdManagedZone.Tests.ps1 │ ├── Dns.GcdQuota.Tests.ps1 │ ├── Dns.GcdResourceRecordSet.Tests.ps1 │ └── GcdCmdlets.ps1 ├── GcloudCmdlets.ps1 ├── Google.PowerShell.IntegrationTests.csproj ├── Logging │ ├── Logging.GcLog.Tests.ps1 │ ├── Logging.GcLogMetric.Tests.ps1 │ └── Logging.GcLogSink.Tests.ps1 ├── Properties │ └── AssemblyInfo.cs ├── Provider │ └── Storage.Provider.Tests.ps1 ├── PubSub │ ├── PubSub.Message.Tests.ps1 │ ├── PubSub.Subscription.Tests.ps1 │ └── PubSub.Topic.Tests.ps1 ├── README.md ├── SQL │ ├── SQL.GcSqlBackupRuns.Tests.ps1 │ ├── SQL.GcSqlConfiguration.Tests.ps1 │ ├── SQL.GcSqlFlags.Tests.ps1 │ ├── SQL.GcSqlOperations.Tests.ps1 │ ├── SQL.GcSqlReplicas.Tests.ps1 │ ├── SQL.GcSqlSslCerts.Tests.ps1 │ ├── SQL.GcSqlTiers.Tests.ps1 │ ├── public.pem │ └── sample-table.csv ├── SQL2 │ ├── SQL.GcSqlInstances.Tests.ps1 │ ├── public.pem │ └── sample-table.csv ├── SQL3 │ └── SQL.GcSqlInstances.Two.Tests.ps1 ├── ServiceAccountCredentials.json.enc └── Storage │ ├── Storage.GcsAcl.Tests.ps1 │ ├── Storage.GcsBucket.Tests.ps1 │ ├── Storage.GcsBucketLogging.Tests.ps1 │ ├── Storage.GcsBucketWebsite.Tests.ps1 │ └── Storage.GcsObject.Tests.ps1 ├── Google.PowerShell.Tests ├── BigQuery │ ├── BqCmdletTestBase.cs │ └── StartBqJobTests.cs ├── CloudResourceManager │ ├── CloudResourceManagerCmdletTestBase.cs │ └── GetGcpProjectTests.cs ├── Common │ ├── CloudSdkSettingsTests.cs │ ├── ConfigDefaultAttributeTest.cs │ ├── GCloudCmdletTests.cs │ ├── GoogleApiMockExtensions.cs │ ├── MeasurementServiceProtocolTests.cs │ ├── PowerShellTestBase.cs │ ├── PropertyByTypeTransformationAttributeTest.cs │ ├── TestActiveUserConfig.cs │ ├── TestAuthenticateWithSdkCredentialsExecutor.cs │ ├── TestGCloudWrapper.cs │ ├── TestProcessUtils.cs │ └── TestTokenResponse.cs ├── Compute │ ├── AddGceInstanceCmdletTests.cs │ ├── AddSnapshotTests.cs │ ├── GceCmdletTestBase.cs │ ├── GceMetadataTests.cs │ ├── InstanceMetadataConverterTest.cs │ ├── ManagedGceInstanceCmdletTests.cs │ └── NewGceInstanceConfigCmdletTests.cs ├── Google.PowerShell.Tests.csproj ├── Properties │ └── AssemblyInfo.cs ├── Provider │ ├── CacheItemTest.cs │ └── GoogleCloudStorageProviderTests.cs ├── README.md ├── Storage │ ├── GcsCmdletTestBase.cs │ └── GetGcsObjectCmdletTests.cs ├── app.config └── packages.config ├── Google.PowerShell ├── BigQuery │ ├── BqCmdlet.cs │ ├── BqDataset.cs │ ├── BqJob.cs │ ├── BqTable.cs │ └── BqTableRow.cs ├── CloudResourceManager │ ├── CloudResourceManagerCmdlets.cs │ ├── GoogleCloudProjectCmdlets.cs │ └── IamPolicyCmdlets.cs ├── Common │ ├── ActiveUserConfig.cs │ ├── AnalyticsReporter.cs │ ├── AuthenticateWithSdkCredentialsExecutor.cs │ ├── CloudSdkSettings.cs │ ├── GcloudAttributes.cs │ ├── GcloudCmdlet.cs │ ├── GcloudWrapper.cs │ ├── JsonExtensions.cs │ ├── Preconditions.cs │ ├── ProcessUtils.cs │ ├── ReportCmdletResults.cs │ └── TokenResponse.cs ├── Compute │ ├── GceAddressCmdlets.cs │ ├── GceAttachedDiskConfigCmdlets.cs │ ├── GceBackendServiceCmdlets.cs │ ├── GceCmdlet.cs │ ├── GceDisk.cs │ ├── GceFirewallCmdlets.cs │ ├── GceFirewallProtocolCmdlet.cs │ ├── GceForwardingRuleCmdlets.cs │ ├── GceHealthCheckCmdlets.cs │ ├── GceImageCmdlets.cs │ ├── GceInstanceCmdlets.cs │ ├── GceInstanceConfigCmdlets.cs │ ├── GceInstanceDescriptionCmdlet.cs │ ├── GceInstanceTemplateCmdlets.cs │ ├── GceMachineType.cs │ ├── GceManagedInstanceGroupCmdlets.cs │ ├── GceMetadataCmdlet.cs │ ├── GceNetworkCmdlets.cs │ ├── GceRouteCmdlets.cs │ ├── GceServiceAccountConfigCmdlets.cs │ ├── GceSnapshotCmdlets.cs │ ├── GceTargetPoolCmdlets.cs │ ├── GceTargetProxyCmdlets.cs │ ├── GceUrlMapCmdlets.cs │ ├── GoogleComputeOperationException.cs │ └── InstanceMetadataConverter.cs ├── Container │ ├── GkeClusterCmdlets.cs │ ├── GkeCmdlet.cs │ └── GkeNodePoolCmdlets.cs ├── Dns │ ├── GcdChange.cs │ ├── GcdCmdlet.cs │ ├── GcdManagedZone.cs │ ├── GcdQuota.cs │ └── GcdResourceRecordSet.cs ├── Google.PowerShell.csproj ├── Logging │ ├── GcLogCmdlets.cs │ ├── GcLogMetricCmdlets.cs │ └── GcLogSinkCmdlets.cs ├── Properties │ └── AssemblyInfo.cs ├── Provider │ ├── BucketModel.cs │ ├── CacheItem.cs │ ├── GcsContentWriter.cs │ ├── GcsStringReader.cs │ └── GoogleCloudStorageProvider.cs ├── PubSub │ ├── GcpsCmdlet.cs │ ├── GcpsMessage.cs │ ├── GcpsSubscription.cs │ └── GcpsTopic.cs ├── README.md ├── ReleaseFiles │ ├── AppendPsModulePath.ps1 │ ├── BootstrapCloudToolsForPowerShell.ps1 │ ├── GoogleCloud.psd1 │ ├── GoogleCloud.psm1 │ ├── GoogleCloudPlatform.Format.ps1xml │ ├── GoogleCloudPowerShell.psd1 │ └── PatchFromGcs.ps1 ├── Sql │ ├── GcSqlBackupRunCmdlets.cs │ ├── GcSqlCmdlet.cs │ ├── GcSqlFlagsCmdlet.cs │ ├── GcSqlInstanceCmdlets.cs │ ├── GcSqlInstanceConfigCmdlets.cs │ ├── GcSqlInstanceReplicaConfigCmdlet.cs │ ├── GcSqlOperationCmdlet.cs │ ├── GcSqlSettingConfigCmdlet.cs │ ├── GcSqlSslCmdlets.cs │ └── GcSqlTiersCmdlet.cs ├── Storage │ ├── GcsAcl.cs │ ├── GcsBucket.cs │ ├── GcsBucketLogging.cs │ ├── GcsBucketWebsite.cs │ ├── GcsCmdlet.cs │ └── GcsObject.cs ├── app.config └── packages.config ├── LICENSE ├── Nuget.config ├── README.md ├── Tools ├── BetaCmdlets.ps1 ├── BuildAndPackage.ps1 ├── CheckCmdletXmlDocs.psm1 ├── GenerateWebsiteData.ps1 ├── OutputTypeWhitelist.txt └── RunCodeFormatter.ps1 ├── appveyor.yml ├── cmdlet-style-guide.md ├── gcloud-powershell.sln └── third_party ├── ArchiveCmdlets ├── ArchiveResources.psd1 ├── LICENSE.txt ├── Microsoft.PowerShell.Archive.psd1 └── Microsoft.PowerShell.Archive.psm1 └── XmlDoc2CmdletDoc ├── Jolt.dll ├── LICENSE ├── README.md ├── System.Management.Automation.dll ├── XmlDoc2CmdletDoc.Core.dll └── XmlDoc2CmdletDoc.exe /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pem text eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/.gitmodules -------------------------------------------------------------------------------- /Assets/LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Assets/LOGO.png -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Docs/BigQuery/BigQueryDemo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Docs/BigQuery/BigQueryDemo.md -------------------------------------------------------------------------------- /Docs/BigQuery/screenshot101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Docs/BigQuery/screenshot101.png -------------------------------------------------------------------------------- /Docs/BigQuery/screenshot102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Docs/BigQuery/screenshot102.png -------------------------------------------------------------------------------- /Docs/BigQuery/screenshot104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Docs/BigQuery/screenshot104.png -------------------------------------------------------------------------------- /Docs/BigQuery/screenshot105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Docs/BigQuery/screenshot105.png -------------------------------------------------------------------------------- /Docs/BigQuery/screenshot106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Docs/BigQuery/screenshot106.png -------------------------------------------------------------------------------- /Docs/BigQuery/screenshot107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Docs/BigQuery/screenshot107.png -------------------------------------------------------------------------------- /Docs/BigQuery/screenshot108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Docs/BigQuery/screenshot108.png -------------------------------------------------------------------------------- /Docs/BigQuery/screenshot109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Docs/BigQuery/screenshot109.png -------------------------------------------------------------------------------- /Docs/BigQuery/screenshot110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Docs/BigQuery/screenshot110.png -------------------------------------------------------------------------------- /Docs/BigQuery/screenshot111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Docs/BigQuery/screenshot111.png -------------------------------------------------------------------------------- /Google.PowerShell.DotnetCore/Google.PowerShell.DotnetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.DotnetCore/Google.PowerShell.DotnetCore.csproj -------------------------------------------------------------------------------- /Google.PowerShell.DotnetCore/Nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.DotnetCore/Nuget.config -------------------------------------------------------------------------------- /Google.PowerShell.DotnetCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.DotnetCore/README.md -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/AdditionalServiceAccountCredentials.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/AdditionalServiceAccountCredentials.json.enc -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/BigQuery/BigQuery.BqDataset.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/BigQuery/BigQuery.BqDataset.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/BigQuery/BigQuery.BqJob.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/BigQuery/BigQuery.BqJob.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/BigQuery/BigQuery.BqTable.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/BigQuery/BigQuery.BqTable.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/BigQuery/BigQuery.BqTableRow.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/BigQuery/BigQuery.BqTableRow.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/BigQuery/BqCmdlets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/BigQuery/BqCmdlets.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/BigQuery/classics.avro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/BigQuery/classics.avro -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/BigQuery/classics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/BigQuery/classics.csv -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/BigQuery/classics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/BigQuery/classics.json -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/BigQuery/classics_broken.avro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/BigQuery/classics_broken.avro -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/BigQuery/classics_broken.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/BigQuery/classics_broken.csv -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/BigQuery/classics_broken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/BigQuery/classics_broken.json -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/BigQuery/classics_jagged.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/BigQuery/classics_jagged.csv -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/BigQuery/classics_large.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/BigQuery/classics_large.csv -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/BigQuery/otherschema.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/BigQuery/otherschema.csv -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/BigQuery/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/BigQuery/schema.json -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/BigQuery/schema_mini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/BigQuery/schema_mini.json -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/CloudResourceManager/CloudResourceManager.GcpProject.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/CloudResourceManager/CloudResourceManager.GcpProject.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/CloudResourceManager/CloudResourceManager.IamPolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/CloudResourceManager/CloudResourceManager.IamPolicy.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Compute/Compute.GceAddress.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Compute/Compute.GceAddress.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Compute/Compute.GceAttachedDiskConfig.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Compute/Compute.GceAttachedDiskConfig.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Compute/Compute.GceBackendService.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Compute/Compute.GceBackendService.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Compute/Compute.GceDisk.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Compute/Compute.GceDisk.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Compute/Compute.GceFirewall.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Compute/Compute.GceFirewall.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Compute/Compute.GceForwardingRule.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Compute/Compute.GceForwardingRule.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Compute/Compute.GceHealthCheck.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Compute/Compute.GceHealthCheck.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Compute/Compute.GceImage.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Compute/Compute.GceImage.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Compute/Compute.GceInstance.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Compute/Compute.GceInstance.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Compute/Compute.GceInstanceTemplate.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Compute/Compute.GceInstanceTemplate.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Compute2/Compute.GceMachineType.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Compute2/Compute.GceMachineType.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Compute2/Compute.GceManagedInstanceGroup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Compute2/Compute.GceManagedInstanceGroup.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Compute2/Compute.GceNetwork.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Compute2/Compute.GceNetwork.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Compute2/Compute.GceRoute.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Compute2/Compute.GceRoute.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Compute2/Compute.GceServiceAccount.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Compute2/Compute.GceServiceAccount.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Compute2/Compute.GceSnapshot.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Compute2/Compute.GceSnapshot.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Compute2/Compute.GceTargetPool.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Compute2/Compute.GceTargetPool.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Compute2/Compute.GceTargetProxy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Compute2/Compute.GceTargetProxy.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Compute2/Compute.GceUrlMap.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Compute2/Compute.GceUrlMap.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Container/Container.GkeCluster.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Container/Container.GkeCluster.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Container2/Container.GkeNodePool.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Container2/Container.GkeNodePool.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Dns/Dns.GcdChange.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Dns/Dns.GcdChange.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Dns/Dns.GcdManagedZone.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Dns/Dns.GcdManagedZone.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Dns/Dns.GcdQuota.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Dns/Dns.GcdQuota.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Dns/Dns.GcdResourceRecordSet.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Dns/Dns.GcdResourceRecordSet.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Dns/GcdCmdlets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Dns/GcdCmdlets.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/GcloudCmdlets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/GcloudCmdlets.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Google.PowerShell.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Google.PowerShell.IntegrationTests.csproj -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Logging/Logging.GcLog.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Logging/Logging.GcLog.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Logging/Logging.GcLogMetric.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Logging/Logging.GcLogMetric.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Logging/Logging.GcLogSink.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Logging/Logging.GcLogSink.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Provider/Storage.Provider.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Provider/Storage.Provider.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/PubSub/PubSub.Message.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/PubSub/PubSub.Message.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/PubSub/PubSub.Subscription.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/PubSub/PubSub.Subscription.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/PubSub/PubSub.Topic.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/PubSub/PubSub.Topic.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/README.md -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/SQL/SQL.GcSqlBackupRuns.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/SQL/SQL.GcSqlBackupRuns.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/SQL/SQL.GcSqlConfiguration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/SQL/SQL.GcSqlConfiguration.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/SQL/SQL.GcSqlFlags.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/SQL/SQL.GcSqlFlags.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/SQL/SQL.GcSqlOperations.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/SQL/SQL.GcSqlOperations.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/SQL/SQL.GcSqlReplicas.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/SQL/SQL.GcSqlReplicas.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/SQL/SQL.GcSqlSslCerts.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/SQL/SQL.GcSqlSslCerts.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/SQL/SQL.GcSqlTiers.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/SQL/SQL.GcSqlTiers.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/SQL/public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/SQL/public.pem -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/SQL/sample-table.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/SQL/sample-table.csv -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/SQL2/SQL.GcSqlInstances.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/SQL2/SQL.GcSqlInstances.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/SQL2/public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/SQL2/public.pem -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/SQL2/sample-table.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/SQL2/sample-table.csv -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/SQL3/SQL.GcSqlInstances.Two.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/SQL3/SQL.GcSqlInstances.Two.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/ServiceAccountCredentials.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/ServiceAccountCredentials.json.enc -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Storage/Storage.GcsAcl.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Storage/Storage.GcsAcl.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Storage/Storage.GcsBucket.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Storage/Storage.GcsBucket.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Storage/Storage.GcsBucketLogging.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Storage/Storage.GcsBucketLogging.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Storage/Storage.GcsBucketWebsite.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Storage/Storage.GcsBucketWebsite.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.IntegrationTests/Storage/Storage.GcsObject.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.IntegrationTests/Storage/Storage.GcsObject.Tests.ps1 -------------------------------------------------------------------------------- /Google.PowerShell.Tests/BigQuery/BqCmdletTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/BigQuery/BqCmdletTestBase.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/BigQuery/StartBqJobTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/BigQuery/StartBqJobTests.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/CloudResourceManager/CloudResourceManagerCmdletTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/CloudResourceManager/CloudResourceManagerCmdletTestBase.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/CloudResourceManager/GetGcpProjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/CloudResourceManager/GetGcpProjectTests.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Common/CloudSdkSettingsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Common/CloudSdkSettingsTests.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Common/ConfigDefaultAttributeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Common/ConfigDefaultAttributeTest.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Common/GCloudCmdletTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Common/GCloudCmdletTests.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Common/GoogleApiMockExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Common/GoogleApiMockExtensions.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Common/MeasurementServiceProtocolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Common/MeasurementServiceProtocolTests.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Common/PowerShellTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Common/PowerShellTestBase.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Common/PropertyByTypeTransformationAttributeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Common/PropertyByTypeTransformationAttributeTest.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Common/TestActiveUserConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Common/TestActiveUserConfig.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Common/TestAuthenticateWithSdkCredentialsExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Common/TestAuthenticateWithSdkCredentialsExecutor.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Common/TestGCloudWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Common/TestGCloudWrapper.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Common/TestProcessUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Common/TestProcessUtils.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Common/TestTokenResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Common/TestTokenResponse.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Compute/AddGceInstanceCmdletTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Compute/AddGceInstanceCmdletTests.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Compute/AddSnapshotTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Compute/AddSnapshotTests.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Compute/GceCmdletTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Compute/GceCmdletTestBase.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Compute/GceMetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Compute/GceMetadataTests.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Compute/InstanceMetadataConverterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Compute/InstanceMetadataConverterTest.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Compute/ManagedGceInstanceCmdletTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Compute/ManagedGceInstanceCmdletTests.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Compute/NewGceInstanceConfigCmdletTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Compute/NewGceInstanceConfigCmdletTests.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Google.PowerShell.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Google.PowerShell.Tests.csproj -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Provider/CacheItemTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Provider/CacheItemTest.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Provider/GoogleCloudStorageProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Provider/GoogleCloudStorageProviderTests.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/README.md -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Storage/GcsCmdletTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Storage/GcsCmdletTestBase.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/Storage/GetGcsObjectCmdletTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/Storage/GetGcsObjectCmdletTests.cs -------------------------------------------------------------------------------- /Google.PowerShell.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/app.config -------------------------------------------------------------------------------- /Google.PowerShell.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell.Tests/packages.config -------------------------------------------------------------------------------- /Google.PowerShell/BigQuery/BqCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/BigQuery/BqCmdlet.cs -------------------------------------------------------------------------------- /Google.PowerShell/BigQuery/BqDataset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/BigQuery/BqDataset.cs -------------------------------------------------------------------------------- /Google.PowerShell/BigQuery/BqJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/BigQuery/BqJob.cs -------------------------------------------------------------------------------- /Google.PowerShell/BigQuery/BqTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/BigQuery/BqTable.cs -------------------------------------------------------------------------------- /Google.PowerShell/BigQuery/BqTableRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/BigQuery/BqTableRow.cs -------------------------------------------------------------------------------- /Google.PowerShell/CloudResourceManager/CloudResourceManagerCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/CloudResourceManager/CloudResourceManagerCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/CloudResourceManager/GoogleCloudProjectCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/CloudResourceManager/GoogleCloudProjectCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/CloudResourceManager/IamPolicyCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/CloudResourceManager/IamPolicyCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Common/ActiveUserConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Common/ActiveUserConfig.cs -------------------------------------------------------------------------------- /Google.PowerShell/Common/AnalyticsReporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Common/AnalyticsReporter.cs -------------------------------------------------------------------------------- /Google.PowerShell/Common/AuthenticateWithSdkCredentialsExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Common/AuthenticateWithSdkCredentialsExecutor.cs -------------------------------------------------------------------------------- /Google.PowerShell/Common/CloudSdkSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Common/CloudSdkSettings.cs -------------------------------------------------------------------------------- /Google.PowerShell/Common/GcloudAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Common/GcloudAttributes.cs -------------------------------------------------------------------------------- /Google.PowerShell/Common/GcloudCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Common/GcloudCmdlet.cs -------------------------------------------------------------------------------- /Google.PowerShell/Common/GcloudWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Common/GcloudWrapper.cs -------------------------------------------------------------------------------- /Google.PowerShell/Common/JsonExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Common/JsonExtensions.cs -------------------------------------------------------------------------------- /Google.PowerShell/Common/Preconditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Common/Preconditions.cs -------------------------------------------------------------------------------- /Google.PowerShell/Common/ProcessUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Common/ProcessUtils.cs -------------------------------------------------------------------------------- /Google.PowerShell/Common/ReportCmdletResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Common/ReportCmdletResults.cs -------------------------------------------------------------------------------- /Google.PowerShell/Common/TokenResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Common/TokenResponse.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceAddressCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceAddressCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceAttachedDiskConfigCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceAttachedDiskConfigCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceBackendServiceCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceBackendServiceCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceCmdlet.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceDisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceDisk.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceFirewallCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceFirewallCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceFirewallProtocolCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceFirewallProtocolCmdlet.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceForwardingRuleCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceForwardingRuleCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceHealthCheckCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceHealthCheckCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceImageCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceImageCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceInstanceCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceInstanceCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceInstanceConfigCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceInstanceConfigCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceInstanceDescriptionCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceInstanceDescriptionCmdlet.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceInstanceTemplateCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceInstanceTemplateCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceMachineType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceMachineType.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceManagedInstanceGroupCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceManagedInstanceGroupCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceMetadataCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceMetadataCmdlet.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceNetworkCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceNetworkCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceRouteCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceRouteCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceServiceAccountConfigCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceServiceAccountConfigCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceSnapshotCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceSnapshotCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceTargetPoolCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceTargetPoolCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceTargetProxyCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceTargetProxyCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GceUrlMapCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GceUrlMapCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/GoogleComputeOperationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/GoogleComputeOperationException.cs -------------------------------------------------------------------------------- /Google.PowerShell/Compute/InstanceMetadataConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Compute/InstanceMetadataConverter.cs -------------------------------------------------------------------------------- /Google.PowerShell/Container/GkeClusterCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Container/GkeClusterCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Container/GkeCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Container/GkeCmdlet.cs -------------------------------------------------------------------------------- /Google.PowerShell/Container/GkeNodePoolCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Container/GkeNodePoolCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Dns/GcdChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Dns/GcdChange.cs -------------------------------------------------------------------------------- /Google.PowerShell/Dns/GcdCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Dns/GcdCmdlet.cs -------------------------------------------------------------------------------- /Google.PowerShell/Dns/GcdManagedZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Dns/GcdManagedZone.cs -------------------------------------------------------------------------------- /Google.PowerShell/Dns/GcdQuota.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Dns/GcdQuota.cs -------------------------------------------------------------------------------- /Google.PowerShell/Dns/GcdResourceRecordSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Dns/GcdResourceRecordSet.cs -------------------------------------------------------------------------------- /Google.PowerShell/Google.PowerShell.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Google.PowerShell.csproj -------------------------------------------------------------------------------- /Google.PowerShell/Logging/GcLogCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Logging/GcLogCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Logging/GcLogMetricCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Logging/GcLogMetricCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Logging/GcLogSinkCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Logging/GcLogSinkCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Google.PowerShell/Provider/BucketModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Provider/BucketModel.cs -------------------------------------------------------------------------------- /Google.PowerShell/Provider/CacheItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Provider/CacheItem.cs -------------------------------------------------------------------------------- /Google.PowerShell/Provider/GcsContentWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Provider/GcsContentWriter.cs -------------------------------------------------------------------------------- /Google.PowerShell/Provider/GcsStringReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Provider/GcsStringReader.cs -------------------------------------------------------------------------------- /Google.PowerShell/Provider/GoogleCloudStorageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Provider/GoogleCloudStorageProvider.cs -------------------------------------------------------------------------------- /Google.PowerShell/PubSub/GcpsCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/PubSub/GcpsCmdlet.cs -------------------------------------------------------------------------------- /Google.PowerShell/PubSub/GcpsMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/PubSub/GcpsMessage.cs -------------------------------------------------------------------------------- /Google.PowerShell/PubSub/GcpsSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/PubSub/GcpsSubscription.cs -------------------------------------------------------------------------------- /Google.PowerShell/PubSub/GcpsTopic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/PubSub/GcpsTopic.cs -------------------------------------------------------------------------------- /Google.PowerShell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/README.md -------------------------------------------------------------------------------- /Google.PowerShell/ReleaseFiles/AppendPsModulePath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/ReleaseFiles/AppendPsModulePath.ps1 -------------------------------------------------------------------------------- /Google.PowerShell/ReleaseFiles/BootstrapCloudToolsForPowerShell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/ReleaseFiles/BootstrapCloudToolsForPowerShell.ps1 -------------------------------------------------------------------------------- /Google.PowerShell/ReleaseFiles/GoogleCloud.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/ReleaseFiles/GoogleCloud.psd1 -------------------------------------------------------------------------------- /Google.PowerShell/ReleaseFiles/GoogleCloud.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/ReleaseFiles/GoogleCloud.psm1 -------------------------------------------------------------------------------- /Google.PowerShell/ReleaseFiles/GoogleCloudPlatform.Format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/ReleaseFiles/GoogleCloudPlatform.Format.ps1xml -------------------------------------------------------------------------------- /Google.PowerShell/ReleaseFiles/GoogleCloudPowerShell.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/ReleaseFiles/GoogleCloudPowerShell.psd1 -------------------------------------------------------------------------------- /Google.PowerShell/ReleaseFiles/PatchFromGcs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/ReleaseFiles/PatchFromGcs.ps1 -------------------------------------------------------------------------------- /Google.PowerShell/Sql/GcSqlBackupRunCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Sql/GcSqlBackupRunCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Sql/GcSqlCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Sql/GcSqlCmdlet.cs -------------------------------------------------------------------------------- /Google.PowerShell/Sql/GcSqlFlagsCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Sql/GcSqlFlagsCmdlet.cs -------------------------------------------------------------------------------- /Google.PowerShell/Sql/GcSqlInstanceCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Sql/GcSqlInstanceCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Sql/GcSqlInstanceConfigCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Sql/GcSqlInstanceConfigCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Sql/GcSqlInstanceReplicaConfigCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Sql/GcSqlInstanceReplicaConfigCmdlet.cs -------------------------------------------------------------------------------- /Google.PowerShell/Sql/GcSqlOperationCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Sql/GcSqlOperationCmdlet.cs -------------------------------------------------------------------------------- /Google.PowerShell/Sql/GcSqlSettingConfigCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Sql/GcSqlSettingConfigCmdlet.cs -------------------------------------------------------------------------------- /Google.PowerShell/Sql/GcSqlSslCmdlets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Sql/GcSqlSslCmdlets.cs -------------------------------------------------------------------------------- /Google.PowerShell/Sql/GcSqlTiersCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Sql/GcSqlTiersCmdlet.cs -------------------------------------------------------------------------------- /Google.PowerShell/Storage/GcsAcl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Storage/GcsAcl.cs -------------------------------------------------------------------------------- /Google.PowerShell/Storage/GcsBucket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Storage/GcsBucket.cs -------------------------------------------------------------------------------- /Google.PowerShell/Storage/GcsBucketLogging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Storage/GcsBucketLogging.cs -------------------------------------------------------------------------------- /Google.PowerShell/Storage/GcsBucketWebsite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Storage/GcsBucketWebsite.cs -------------------------------------------------------------------------------- /Google.PowerShell/Storage/GcsCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Storage/GcsCmdlet.cs -------------------------------------------------------------------------------- /Google.PowerShell/Storage/GcsObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/Storage/GcsObject.cs -------------------------------------------------------------------------------- /Google.PowerShell/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/app.config -------------------------------------------------------------------------------- /Google.PowerShell/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Google.PowerShell/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/LICENSE -------------------------------------------------------------------------------- /Nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Nuget.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/README.md -------------------------------------------------------------------------------- /Tools/BetaCmdlets.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Tools/BetaCmdlets.ps1 -------------------------------------------------------------------------------- /Tools/BuildAndPackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Tools/BuildAndPackage.ps1 -------------------------------------------------------------------------------- /Tools/CheckCmdletXmlDocs.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Tools/CheckCmdletXmlDocs.psm1 -------------------------------------------------------------------------------- /Tools/GenerateWebsiteData.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Tools/GenerateWebsiteData.ps1 -------------------------------------------------------------------------------- /Tools/OutputTypeWhitelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Tools/OutputTypeWhitelist.txt -------------------------------------------------------------------------------- /Tools/RunCodeFormatter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/Tools/RunCodeFormatter.ps1 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cmdlet-style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/cmdlet-style-guide.md -------------------------------------------------------------------------------- /gcloud-powershell.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/gcloud-powershell.sln -------------------------------------------------------------------------------- /third_party/ArchiveCmdlets/ArchiveResources.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/third_party/ArchiveCmdlets/ArchiveResources.psd1 -------------------------------------------------------------------------------- /third_party/ArchiveCmdlets/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/third_party/ArchiveCmdlets/LICENSE.txt -------------------------------------------------------------------------------- /third_party/ArchiveCmdlets/Microsoft.PowerShell.Archive.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/third_party/ArchiveCmdlets/Microsoft.PowerShell.Archive.psd1 -------------------------------------------------------------------------------- /third_party/ArchiveCmdlets/Microsoft.PowerShell.Archive.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/third_party/ArchiveCmdlets/Microsoft.PowerShell.Archive.psm1 -------------------------------------------------------------------------------- /third_party/XmlDoc2CmdletDoc/Jolt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/third_party/XmlDoc2CmdletDoc/Jolt.dll -------------------------------------------------------------------------------- /third_party/XmlDoc2CmdletDoc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/third_party/XmlDoc2CmdletDoc/LICENSE -------------------------------------------------------------------------------- /third_party/XmlDoc2CmdletDoc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/third_party/XmlDoc2CmdletDoc/README.md -------------------------------------------------------------------------------- /third_party/XmlDoc2CmdletDoc/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/third_party/XmlDoc2CmdletDoc/System.Management.Automation.dll -------------------------------------------------------------------------------- /third_party/XmlDoc2CmdletDoc/XmlDoc2CmdletDoc.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/third_party/XmlDoc2CmdletDoc/XmlDoc2CmdletDoc.Core.dll -------------------------------------------------------------------------------- /third_party/XmlDoc2CmdletDoc/XmlDoc2CmdletDoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/google-cloud-powershell/HEAD/third_party/XmlDoc2CmdletDoc/XmlDoc2CmdletDoc.exe --------------------------------------------------------------------------------