Documentation ¶
Index ¶
- type Database
- func (r *Database) Charset() *pulumi.StringOutput
- func (r *Database) Collation() *pulumi.StringOutput
- func (r *Database) ID() *pulumi.IDOutput
- func (r *Database) Name() *pulumi.StringOutput
- func (r *Database) ResourceGroupName() *pulumi.StringOutput
- func (r *Database) ServerName() *pulumi.StringOutput
- func (r *Database) URN() *pulumi.URNOutput
- type DatabaseArgs
- type DatabaseState
- type Server
- func (r *Server) AdministratorLogin() *pulumi.StringOutput
- func (r *Server) AdministratorLoginPassword() *pulumi.StringOutput
- func (r *Server) Fqdn() *pulumi.StringOutput
- func (r *Server) ID() *pulumi.IDOutput
- func (r *Server) Location() *pulumi.StringOutput
- func (r *Server) Name() *pulumi.StringOutput
- func (r *Server) ResourceGroupName() *pulumi.StringOutput
- func (r *Server) Sku() *pulumi.Output
- func (r *Server) SslEnforcement() *pulumi.StringOutput
- func (r *Server) StorageProfile() *pulumi.Output
- func (r *Server) Tags() *pulumi.MapOutput
- func (r *Server) URN() *pulumi.URNOutput
- func (r *Server) Version() *pulumi.StringOutput
- type ServerArgs
- type ServerState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Database ¶
type Database struct {
// contains filtered or unexported fields
}
Manages a MariaDB Database within a MariaDB Server
func GetDatabase ¶
func GetDatabase(ctx *pulumi.Context, name string, id pulumi.ID, state *DatabaseState, opts ...pulumi.ResourceOpt) (*Database, error)
GetDatabase gets an existing Database resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
func NewDatabase ¶
func NewDatabase(ctx *pulumi.Context, name string, args *DatabaseArgs, opts ...pulumi.ResourceOpt) (*Database, error)
NewDatabase registers a new resource with the given unique name, arguments, and options.
func (*Database) Charset ¶
func (r *Database) Charset() *pulumi.StringOutput
Specifies the Charset for the MariaDB Database, which needs [to be a valid MariaDB Charset](https://mariadb.com/kb/en/library/setting-character-sets-and-collations). Changing this forces a new resource to be created.
func (*Database) Collation ¶
func (r *Database) Collation() *pulumi.StringOutput
Specifies the Collation for the MariaDB Database, which needs [to be a valid MariaDB Collation](https://mariadb.com/kb/en/library/setting-character-sets-and-collations). Changing this forces a new resource to be created.
func (*Database) Name ¶
func (r *Database) Name() *pulumi.StringOutput
Specifies the name of the MariaDB Database, which needs [to be a valid MariaDB identifier](https://mariadb.com/kb/en/library/identifier-names/). Changing this forces a new resource to be created.
func (*Database) ResourceGroupName ¶
func (r *Database) ResourceGroupName() *pulumi.StringOutput
The name of the resource group in which the MariaDB Server exists. Changing this forces a new resource to be created.
func (*Database) ServerName ¶
func (r *Database) ServerName() *pulumi.StringOutput
Specifies the name of the MariaDB Server. Changing this forces a new resource to be created.
type DatabaseArgs ¶
type DatabaseArgs struct { // Specifies the Charset for the MariaDB Database, which needs [to be a valid MariaDB Charset](https://mariadb.com/kb/en/library/setting-character-sets-and-collations). Changing this forces a new resource to be created. Charset interface{} // Specifies the Collation for the MariaDB Database, which needs [to be a valid MariaDB Collation](https://mariadb.com/kb/en/library/setting-character-sets-and-collations). Changing this forces a new resource to be created. Collation interface{} // Specifies the name of the MariaDB Database, which needs [to be a valid MariaDB identifier](https://mariadb.com/kb/en/library/identifier-names/). Changing this forces a // new resource to be created. Name interface{} // The name of the resource group in which the MariaDB Server exists. Changing this forces a new resource to be created. ResourceGroupName interface{} // Specifies the name of the MariaDB Server. Changing this forces a new resource to be created. ServerName interface{} }
The set of arguments for constructing a Database resource.
type DatabaseState ¶
type DatabaseState struct { // Specifies the Charset for the MariaDB Database, which needs [to be a valid MariaDB Charset](https://mariadb.com/kb/en/library/setting-character-sets-and-collations). Changing this forces a new resource to be created. Charset interface{} // Specifies the Collation for the MariaDB Database, which needs [to be a valid MariaDB Collation](https://mariadb.com/kb/en/library/setting-character-sets-and-collations). Changing this forces a new resource to be created. Collation interface{} // Specifies the name of the MariaDB Database, which needs [to be a valid MariaDB identifier](https://mariadb.com/kb/en/library/identifier-names/). Changing this forces a // new resource to be created. Name interface{} // The name of the resource group in which the MariaDB Server exists. Changing this forces a new resource to be created. ResourceGroupName interface{} // Specifies the name of the MariaDB Server. Changing this forces a new resource to be created. ServerName interface{} }
Input properties used for looking up and filtering Database resources.
type Server ¶
type Server struct {
// contains filtered or unexported fields
}
Manages a MariaDB Server.
> **NOTE** MariaDB Server is currently in Public Preview. You can find more information, including [how to register for the Public Preview here](https://azure.microsoft.com/en-us/updates/mariadb-public-preview/).
func GetServer ¶
func GetServer(ctx *pulumi.Context, name string, id pulumi.ID, state *ServerState, opts ...pulumi.ResourceOpt) (*Server, error)
GetServer gets an existing Server resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
func NewServer ¶
func NewServer(ctx *pulumi.Context, name string, args *ServerArgs, opts ...pulumi.ResourceOpt) (*Server, error)
NewServer registers a new resource with the given unique name, arguments, and options.
func (*Server) AdministratorLogin ¶
func (r *Server) AdministratorLogin() *pulumi.StringOutput
The Administrator Login for the MariaDB Server. Changing this forces a new resource to be created.
func (*Server) AdministratorLoginPassword ¶
func (r *Server) AdministratorLoginPassword() *pulumi.StringOutput
The Password associated with the `administrator_login` for the MariaDB Server.
func (*Server) Location ¶
func (r *Server) Location() *pulumi.StringOutput
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
func (*Server) Name ¶
func (r *Server) Name() *pulumi.StringOutput
Specifies the name of the MariaDB Server. Changing this forces a new resource to be created.
func (*Server) ResourceGroupName ¶
func (r *Server) ResourceGroupName() *pulumi.StringOutput
The name of the resource group in which to create the MariaDB Server. Changing this forces a new resource to be created.
func (*Server) SslEnforcement ¶
func (r *Server) SslEnforcement() *pulumi.StringOutput
Specifies if SSL should be enforced on connections. Possible values are `Enabled` and `Disabled`.
func (*Server) StorageProfile ¶
A `storage_profile` block as defined below.
func (*Server) Version ¶
func (r *Server) Version() *pulumi.StringOutput
Specifies the version of MariaDB to use. The valid value is `10.2`. Changing this forces a new resource to be created.
type ServerArgs ¶
type ServerArgs struct { // The Administrator Login for the MariaDB Server. Changing this forces a new resource to be created. AdministratorLogin interface{} // The Password associated with the `administrator_login` for the MariaDB Server. AdministratorLoginPassword interface{} // Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. Location interface{} // Specifies the name of the MariaDB Server. Changing this forces a new resource to be created. Name interface{} // The name of the resource group in which to create the MariaDB Server. Changing this forces a new resource to be created. ResourceGroupName interface{} // A `sku` block as defined below. Sku interface{} // Specifies if SSL should be enforced on connections. Possible values are `Enabled` and `Disabled`. SslEnforcement interface{} // A `storage_profile` block as defined below. StorageProfile interface{} // A mapping of tags to assign to the resource. Tags interface{} // Specifies the version of MariaDB to use. The valid value is `10.2`. Changing this forces a new resource to be created. Version interface{} }
The set of arguments for constructing a Server resource.
type ServerState ¶
type ServerState struct { // The Administrator Login for the MariaDB Server. Changing this forces a new resource to be created. AdministratorLogin interface{} // The Password associated with the `administrator_login` for the MariaDB Server. AdministratorLoginPassword interface{} // The FQDN of the MariaDB Server. Fqdn interface{} // Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. Location interface{} // Specifies the name of the MariaDB Server. Changing this forces a new resource to be created. Name interface{} // The name of the resource group in which to create the MariaDB Server. Changing this forces a new resource to be created. ResourceGroupName interface{} // A `sku` block as defined below. Sku interface{} // Specifies if SSL should be enforced on connections. Possible values are `Enabled` and `Disabled`. SslEnforcement interface{} // A `storage_profile` block as defined below. StorageProfile interface{} // A mapping of tags to assign to the resource. Tags interface{} // Specifies the version of MariaDB to use. The valid value is `10.2`. Changing this forces a new resource to be created. Version interface{} }
Input properties used for looking up and filtering Server resources.